File size: 3,537 Bytes
89610f7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 | body {
background: url('bg.png') no-repeat top center, -webkit-linear-gradient(#765490 560px, #6A4883 620px, #433061 900px);
background: url('bg.png') no-repeat top center, -moz-linear-gradient(#765490 560px, #6A4883 620px, #433061 900px, #433061);
text-align: center;
margin: 0 0 15px;
color: white;
font-family: 'Calibri', 'Verdana', sans-serif;
font-size: 15px;
text-shadow: 0 2px rgba(0, 0, 0, 0.6);
}
button {
font-family: 'Calibri', 'Verdana', sans-serif;
}
#screen {
margin-top: 85px;
margin-bottom: 150px;
}
#screen[width="240"] {
margin-top: 42.5px;
margin-bottom: -363px; /* Take up no height */
image-rendering: -webkit-optimize-contrast;
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
zoom: 2;
-o-transform: scale(2);
}
#controls::before {
content: "";
display: block;
height: 30px;
width: 647px;
border-radius: 5px / 15px;
border: 1px solid rgba(0, 0, 0, 0.4);
border-width: 0 1px;
margin: 0 -5px 20px;
background: -webkit-linear-gradient(top, #8769A0, #9578B9 15%, #6A4883 50%, #433061);
background: -moz-linear-gradient(top, #8769A0, #9578B9 15%, #6A4883 50%, #433061);
box-shadow: 0 5px 4px -3px rgba(0, 0, 0, 0.6);
position: absolute;
}
#controls {
border-radius: 20px;
border: 1px solid rgba(0, 0, 0, 0.4);
border-top: none;
box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.9), 0 -40px 2px -1px #433061 inset;
width: 640px;
margin: auto;
height: 200px;
overflow: hidden;
background-color: #765490;
}
#controls > div {
margin-top: 30px;
-moz-transform-origin: 50% 0;
-moz-transform: rotateX(0deg);
-moz-transition: -moz-transform linear 0.5s;
-webkit-transform-origin-y: 2px;
-webkit-transform: rotateX(0deg);
-webkit-transition: -webkit-transform linear 0.5s;
}
#crash {
margin-top: 100px;
margin-bottom: 199px;
}
button {
background-color: #6A4883;
font-weight: bold;
font-size: 18px;
color: white;
text-shadow: 0 3px #433061;
padding: 2px 10px 5px;
border-radius: 0 0 10px 10px;
border: 0 solid rgba(0, 0, 0, 0.4);
border-width: 3px 1px 0px;
display: inline;
box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.2) inset;
margin: 0 0 20px;
}
label, #sound, #controls > div > p {
display: block;
margin: 5px 30px;
height: 18px;
}
label, #sound {
float: left;
clear: left;
}
#sound + p {
margin-top: -23px !important;
}
#controls > div > p {
float: right;
clear: right;
}
input[type=checkbox] {
margin: -3px 5px 0 0;
}
input[type=checkbox]::after {
display: inline-block;
content: "";
background-color: #765490;
border: 0 solid rgba(0, 0, 0, 0.3);
border-width: 1px 1px 2px;
width: 12px;
height: 12px;
border-radius: 3px;
position: relative;
top: -3px;
visibility: visible;
}
input[type=checkbox]:checked::after {
background-color: #6A4883;
border-width: 2px 1px 1px;
box-shadow: 0 2px 6px -1px rgba(0, 0, 0, 0.2) inset;
}
p:first-child {
margin-top: 0;
}
a:link, a:visited {
color: #fcb3f0;
}
.hidden {
-moz-transform: rotateX(90deg) !important;
-webkit-transform: rotateX(90deg) !important;
}
.dead {
display: none;
}
input[type=file] {
opacity: 0 !important;
width: 0;
height: 0;
margin: 0;
padding: 0;
border: none;
}
input[type=range] {
width: 100px;
height: 14px;
margin: 2px;
}
footer {
font-size: 12px;
padding-top: 8px;
}
p {
margin: 0;
}
label p, #sound p {
display: inline;
}
ul#links {
display: block;
text-align: center;
padding: 0;
}
ul#links li {
display: inline;
list-style-type: none;
}
ul#links li:not(:first-child)::before {
content: "•";
margin: 0 0.5em;
}
|