gctGenerator/style/style.css
2017-11-06 07:42:46 +01:00

220 lines
No EOL
4.1 KiB
CSS

body {
margin: 50px 50px 0 50px;
width: 980px;
}
html {
background-color: #262626;
color: #f1f1f1;
font-family: Calibri;
}
#gameID {
margin: 10px 0 5px 0;
}
body button {
width: 390px;
padding: 10px 10px 10px 10px;
display: block;
margin: auto;
font-size: 18px;
color: #f1f1f1;
background-color: #f44336;
border-style: none;
border-radius: 4px;
cursor: pointer;
margin-top: 5px;
outline: none;
-webkit-transition: all 0s ease-out 0s;
-moz-transition: all 0s ease-out 0s;
-ms-transition: all 0s ease-out 0s;
-o-transition: all 0s ease-out 0s;
transition: all 0s ease-out 0s;
}
img {
border-radius: 4px;
}
ul {
margin: 0;
padding: 0;
width: 390px;
list-style-type: none;
}
ul li {
cursor: pointer;
position: relative;
padding: 8px 8px 8px 40px;
border-radius: 4px;
border-style: solid;
border-width: 1px;
background: #ffefef;
color: #262626;
font-size: 18px;
text-align: left;
transition: 0.2s;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
outline: none;
-webkit-animation: fadein .8s;
-moz-animation: fadein .8s;
-ms-animation: fadein .8s;
-o-animation: fadein .8s;
animation: fadein .8s;
}
ul li::before {
content: '';
position: absolute;
border-color: #a6a6a6;
border-style: solid;
border-width: 1.5px 1.5px 1.5px 1.5px;
border-radius: 50%;
top: 11px;
left: 12px;
height: 14px;
width: 14px;
}
ul li:nth-child(odd) {
background: #fdfdfd;
}
ul li:hover {
background: #d84035;
color: #ffffff;
border-color: #000000;
}
ul li:hover::before {
border-color: #fff;
background-color: pink;
}
ul li.checked:hover {
background: #d84035;
color: #ffffff;
}
ul li.checked {
background: #434343;
color: #fff;
border-color: #262626;
}
ul li.checked::before {
content: '';
position: absolute;
border-color: #fff;
border-style: solid;
border-width: 1.5px 1.5px 1.5px 1.5px;
border-radius: 50%;
top: 11px;
left: 12px;
height: 14px;
width: 14px;
background-color: #d85e55;
}
th {
font-weight: normal;
}
.selectionHeader {
background-color: #f44336;
padding: 10px 10px 10px 10px;
color: white;
width: 390px;
font-size: 16px;
border-style: none;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
outline: none;
}
.framed {
position: fixed;
margin: 11px 0px 10px 0;
padding: 0px 12px 12px 12px;
background-color: #111;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 18px;
border-color: #fff;
border-style: solid;
border-width: 1px;
border-radius: 4px;
width: 500px;
min-height: 150px;
}
#warningMessage {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
border-color: #fff;
border-style: solid;
border-width: 1px;
border-radius: 4px;
background-color: #111;
width: 526px;
padding: 5px 12px 5px 12px;
margin: 11px 0px 0px 0px;
}
#guide_content {
clear: both;
background-color: #111;
width: 100%;
max-width: 960px;
overflow: hidden;
border: 1px solid #333;
margin: 30px 0 10px 0;
padding: 0px 12px 12px 12px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 22px;
}
.hidden {
opacity: 0;
}
a {
color: #ff8297;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Firefox < 16 */
@-moz-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Internet Explorer */
@-ms-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Opera < 12.1 */
@-o-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}