gctGenerator/style/style.css

227 lines
4.3 KiB
CSS
Raw Normal View History

2017-10-09 21:51:11 +09:00
body {
2017-09-27 11:44:10 +09:00
margin: 50px 50px 0 50px;
2017-10-30 11:33:00 +09:00
width: 980px;
2017-09-27 11:44:10 +09:00
}
html {
background-color: #262626;
color: #f1f1f1;
font-family: Calibri;
}
2017-09-28 01:14:25 +09:00
#gameID {
2017-10-30 11:33:00 +09:00
margin: 10px 0 5px 0;
2017-09-27 11:44:10 +09:00
}
2017-09-28 01:14:25 +09:00
body button {
2017-10-30 11:33:00 +09:00
width: 390px;
padding: 10px 10px 10px 10px;
2017-09-27 11:44:10 +09:00
display: block;
margin: auto;
2017-09-28 01:14:25 +09:00
font-size: 18px;
2017-09-27 11:44:10 +09:00
color: #f1f1f1;
2017-09-28 01:14:25 +09:00
background-color: #f44336;
border-style: none;
2017-09-28 22:21:01 +09:00
border-radius: 4px;
2017-09-27 11:44:10 +09:00
cursor: pointer;
2017-10-30 11:33:00 +09:00
margin-top: 5px;
2017-10-09 21:51:11 +09:00
outline: none;
2017-10-19 04:19:45 +09:00
-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;
2017-09-28 01:14:25 +09:00
}
2017-09-28 22:21:01 +09:00
img {
border-radius: 4px;
}
2017-10-11 04:05:41 +09:00
ul {
2017-09-28 01:14:25 +09:00
margin: 0;
padding: 0;
2017-10-30 11:33:00 +09:00
width: 390px;
2017-09-28 22:21:01 +09:00
list-style-type: none;
2017-09-28 01:14:25 +09:00
}
2017-10-11 04:05:41 +09:00
ul li {
2017-09-28 01:14:25 +09:00
cursor: pointer;
position: relative;
2017-10-30 11:33:00 +09:00
padding: 8px 8px 8px 40px;
border-radius: 4px;
border-style: solid;
border-width: 1px;
2017-09-28 22:21:01 +09:00
background: #ffefef;
color: #262626;
2017-09-28 01:14:25 +09:00
font-size: 18px;
text-align: left;
2017-09-28 01:14:25 +09:00
transition: 0.2s;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
2017-10-09 21:51:11 +09:00
outline: none;
2017-10-19 04:19:45 +09:00
-webkit-animation: fadein .8s;
-moz-animation: fadein .8s;
-ms-animation: fadein .8s;
-o-animation: fadein .8s;
animation: fadein .8s;
2017-09-28 01:14:25 +09:00
}
2017-10-19 04:19:45 +09:00
ul li::before {
2017-09-28 22:21:01 +09:00
content: '';
position: absolute;
border-color: #a6a6a6;
border-style: solid;
border-width: 1.5px 1.5px 1.5px 1.5px;
2017-10-30 11:33:00 +09:00
border-radius: 50%;
top: 11px;
2017-09-28 22:21:01 +09:00
left: 12px;
2017-10-30 11:33:00 +09:00
height: 14px;
width: 14px;
2017-09-28 22:21:01 +09:00
}
2017-10-19 04:19:45 +09:00
ul li:nth-child(odd) {
2017-09-28 22:21:01 +09:00
background: #fdfdfd;
2017-09-28 01:14:25 +09:00
}
2017-10-19 04:19:45 +09:00
ul li:hover {
2017-10-30 11:33:00 +09:00
background: #d84035;
color: #ffffff;
border-color: #000000;
}
ul li:hover::before {
border-color: #fff;
background-color: pink;
}
ul li.checked:hover {
background: #d84035;
2017-09-28 22:21:01 +09:00
color: #ffffff;
2017-09-28 01:14:25 +09:00
}
ul li.checked {
2017-10-30 11:33:00 +09:00
background: #434343;
2017-09-28 01:14:25 +09:00
color: #fff;
2017-10-30 11:33:00 +09:00
border-color: #262626;
2017-09-28 01:14:25 +09:00
}
ul li.checked::before {
content: '';
position: absolute;
border-color: #fff;
border-style: solid;
2017-09-28 22:21:01 +09:00
border-width: 1.5px 1.5px 1.5px 1.5px;
2017-10-30 11:33:00 +09:00
border-radius: 50%;
top: 11px;
2017-09-28 22:21:01 +09:00
left: 12px;
2017-10-30 11:33:00 +09:00
height: 14px;
width: 14px;
background-color: #d85e55;
2017-09-28 01:14:25 +09:00
}
th {
font-weight: normal;
}
2017-09-28 01:14:25 +09:00
.selectionHeader {
background-color: #f44336;
2017-10-30 11:33:00 +09:00
padding: 10px 10px 10px 10px;
2017-09-28 01:14:25 +09:00
color: white;
2017-10-30 11:33:00 +09:00
width: 390px;
2017-09-28 22:21:01 +09:00
font-size: 16px;
border-style: none;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
2017-10-09 21:51:11 +09:00
outline: none;
2017-09-28 22:21:01 +09:00
}
.framed {
2017-10-30 11:33:00 +09:00
position: fixed;
margin: 11px 0px 10px 0;
2017-09-28 22:21:01 +09:00
padding: 0px 12px 12px 12px;
2017-10-19 04:19:45 +09:00
background-color: #111;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 18px;
2017-09-28 22:21:01 +09:00
border-color: #fff;
border-style: solid;
border-width: 1px;
border-radius: 4px;
width: 500px;
2017-10-19 04:19:45 +09:00
min-height: 150px;
2017-11-09 03:35:31 +09:00
overflow-y: auto;
overflow-x: hidden;
2017-11-11 22:42:12 +09:00
max-height: 80vh;
2017-11-09 03:35:31 +09:00
-ms-overflow-style: none;
}
.framed::-webkit-scrollbar {
display:none;
}
#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;
2017-10-11 03:48:58 +09:00
}
#guide_content {
2017-10-19 04:19:45 +09:00
clear: both;
background-color: #111;
width: 100%;
max-width: 960px;
overflow: hidden;
border: 1px solid #333;
2017-10-11 03:48:58 +09:00
margin: 30px 0 10px 0;
2017-10-19 04:19:45 +09:00
padding: 0px 12px 12px 12px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 14px;
line-height: 22px;
}
.hidden {
opacity: 0;
2017-10-11 03:48:58 +09:00
}
a {
2017-11-06 15:42:46 +09:00
color: #ff8297;
2017-10-19 04:19:45 +09:00
}
@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;
}
2017-09-27 11:44:10 +09:00
}