2019-02-15 10:00:23 +01:00
|
|
|
/*
|
|
|
|
* Discovery css global
|
|
|
|
*/
|
2019-02-15 14:02:32 +01:00
|
|
|
|
2019-02-15 18:05:59 +01:00
|
|
|
li.discovery {
|
|
|
|
display: inline-block;
|
|
|
|
float: left;
|
|
|
|
width: 250px;
|
|
|
|
height: 120px;
|
|
|
|
margin: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
li.discovery > a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li.discovery > a:hover {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
li.discovery img {
|
|
|
|
height: 90px;
|
|
|
|
}
|
|
|
|
|
|
|
|
li.discovery > a label {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.data_container {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
text-align: center;
|
|
|
|
padding-top: 30px;
|
|
|
|
padding-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.data_container:hover {
|
|
|
|
box-shadow: 2px 2px 10px #ddd;
|
|
|
|
}
|
|
|
|
|
2019-02-15 18:44:59 +01:00
|
|
|
/*
|
|
|
|
* TODO: This may be at hostdevices.css
|
|
|
|
*/
|
2019-02-15 14:02:32 +01:00
|
|
|
.texto {
|
|
|
|
height: auto;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
#text_wizard {
|
|
|
|
font-weight: bolder;
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
2019-02-19 08:58:30 +01:00
|
|
|
.text_color {
|
|
|
|
color: white;
|
|
|
|
margin-left: 25px;
|
|
|
|
}
|
|
|
|
.text_color:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
.arrow_box {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
2019-02-20 14:38:00 +01:00
|
|
|
background: #ccc;
|
2019-02-19 16:34:11 +01:00
|
|
|
padding: 14px;
|
2019-02-19 08:58:30 +01:00
|
|
|
margin-left: 20px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
.arrow_box:after,
|
|
|
|
.arrow_box:before {
|
|
|
|
top: 50%;
|
|
|
|
border: solid transparent;
|
|
|
|
content: " ";
|
|
|
|
height: 0;
|
|
|
|
width: 0;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2019-02-20 14:38:00 +01:00
|
|
|
.arrow_box.selected {
|
|
|
|
background: #82b92e;
|
|
|
|
}
|
2019-02-19 08:58:30 +01:00
|
|
|
|
|
|
|
.arrow_box:after {
|
|
|
|
left: 0%;
|
|
|
|
border-left-color: white;
|
|
|
|
border-width: 20px;
|
|
|
|
margin-top: -20px;
|
|
|
|
}
|
|
|
|
.arrow_box:before {
|
|
|
|
left: 100%;
|
2019-02-20 14:38:00 +01:00
|
|
|
border-left-color: #ccc;
|
2019-02-19 08:58:30 +01:00
|
|
|
border-width: 20px;
|
|
|
|
margin-top: -20px;
|
|
|
|
}
|
2019-02-20 14:38:00 +01:00
|
|
|
.arrow_box.selected:before {
|
|
|
|
border-left-color: #82b92e;
|
|
|
|
}
|
2019-02-21 11:19:38 +01:00
|
|
|
.arrow_box {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
padding: 14px;
|
|
|
|
margin-left: 20px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
padding-left: 3em;
|
|
|
|
}
|