89 lines
1.4 KiB
CSS
89 lines
1.4 KiB
CSS
.promess {
|
|
padding: 0em 2em;
|
|
margin-bottom: 0.5em;
|
|
font-weight: normal;
|
|
font-size: 1.2em;
|
|
}
|
|
.price {
|
|
padding: 0em 2em 3em;
|
|
margin-top: 0em;
|
|
font-size: 0.9em;
|
|
}
|
|
.url {
|
|
width: 50%;
|
|
}
|
|
.launchBtn {
|
|
background: #e74c3c;
|
|
color: #fff;
|
|
}
|
|
.launchBtn:focus {
|
|
background: #ffa319;
|
|
}
|
|
.launchBtn.disabled {
|
|
background: #deaca6;
|
|
}
|
|
.launchBtn.disabled:focus {
|
|
color: #ddd;
|
|
}
|
|
.device {
|
|
margin-top: 3em;
|
|
}
|
|
.device .item {
|
|
display: inline-block;
|
|
margin: 1em 0.75em;
|
|
width: 5.5em;
|
|
height: 5.5em;
|
|
color: #FFF;
|
|
border: 1px solid #FFF;
|
|
padding: 1px;
|
|
border-radius: 0.5em;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
font-size: 0.8em;
|
|
}
|
|
.device .item.active {
|
|
color: #ffa319;
|
|
border: 2px solid #ffa319;
|
|
padding: 0;
|
|
}
|
|
.device .item:hover {
|
|
color: #ffa319;
|
|
}
|
|
.device .item > div {
|
|
margin: 0.2em 0 0.1em;
|
|
font-size: 3em;
|
|
}
|
|
.features {
|
|
display: table;
|
|
width: 50%;
|
|
margin: 8em auto 0;
|
|
font-size: 0.9em;
|
|
color: #413;
|
|
}
|
|
.features > div {
|
|
width: 33.3%;
|
|
display: table-cell;
|
|
padding: 0 1.5em;
|
|
}
|
|
input[type=submit],
|
|
input.url {
|
|
padding: 0 0.5em;
|
|
margin: 0.5em;
|
|
font-size: 1.2em;
|
|
height: 2em;
|
|
border: 0 solid;
|
|
border-radius: 0.5em;
|
|
box-shadow: 0.1em 0.2em 0 0 #5e2846;
|
|
outline: none;
|
|
}
|
|
input[type=submit]:hover {
|
|
color: #ddd;
|
|
}
|
|
input[type=submit].clicked {
|
|
color: #ddd;
|
|
position: relative;
|
|
left: 0.1em;
|
|
top: 0.2em;
|
|
box-shadow: none;
|
|
}
|