gctGenerator/style/style.css

180 lines
3 KiB
CSS
Raw Normal View History

2017-10-09 21:51:11 +09:00
body {
2017-12-05 14:58:00 +09:00
margin:50px;
width:980px;
min-height:450px;
display:inline-block;
text-align:left
2017-09-27 11:44:10 +09:00
}
html {
2017-12-05 14:58:00 +09:00
background-color:#0D0D0D;
color:#f1f1f1;
font-family:Calibri;
text-align:center
2017-09-27 11:44:10 +09:00
}
2017-09-28 01:14:25 +09:00
#gameID {
2017-12-05 14:58:00 +09:00
margin:10px 0 5px
2017-09-27 11:44:10 +09:00
}
2017-09-28 01:14:25 +09:00
body button {
2017-12-05 14:58:00 +09:00
padding:10px;
margin:auto;
font-size:18px;
color:#f1f1f1;
background-color:#f44336;
border-style:none;
border-radius:4px;
cursor:pointer;
margin-top:5px;
outline:none
}
#downloadButton {
width:390px;
display:block
}
#downloadButton:hover {
background-color:#ea7d75
}
#dolphinDownloadButton {
width:193px;
display:inline-block;
background-color:#5c90aa
}
#dolphinDownloadButton:hover {
background-color:#9cb6c3
}
#gcmDownloadButton {
width:193px;
display:inline-block;
background-color:#629045
}
#gcmDownloadButton:hover {
background-color:#8eb575
2017-09-28 01:14:25 +09:00
}
2017-09-28 22:21:01 +09:00
img {
2017-12-05 14:58:00 +09:00
border-radius:4px
2017-09-28 22:21:01 +09:00
}
2017-10-11 04:05:41 +09:00
ul {
2017-12-05 14:58:00 +09:00
margin:0;
padding:0;
width:390px;
list-style-type:none
2017-09-28 01:14:25 +09:00
}
2017-10-11 04:05:41 +09:00
ul li {
2017-12-05 14:58:00 +09:00
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:.2s;
-webkit-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
outline:none
2017-09-28 01:14:25 +09:00
}
2017-10-19 04:19:45 +09:00
ul li::before {
2017-12-05 14:58:00 +09:00
content:'';
position:absolute;
border-color:#a6a6a6;
border-style:solid;
border-width:1.5px;
border-radius:50%;
top:11px;
left:12px;
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-12-05 14:58:00 +09:00
background:#fdfdfd
2017-09-28 01:14:25 +09:00
}
2017-10-19 04:19:45 +09:00
ul li:hover {
2017-12-05 14:58:00 +09:00
background:#d84035;
color:#fff;
border-color:#000
2017-10-30 11:33:00 +09:00
}
ul li:hover::before {
2017-12-05 14:58:00 +09:00
border-color:#fff;
background-color:#ffc0cb
2017-10-30 11:33:00 +09:00
}
ul li.checked:hover {
2017-12-05 14:58:00 +09:00
background:#d84035;
color:#fff
2017-09-28 01:14:25 +09:00
}
ul li.checked {
2017-12-05 14:58:00 +09:00
background:#434343;
color:#fff;
border-color:#262626
2017-09-28 01:14:25 +09:00
}
ul li.checked::before {
2017-12-05 14:58:00 +09:00
content:'';
position:absolute;
border-color:#fff;
border-style:solid;
border-width:1.5px;
border-radius:50%;
top:11px;
left:12px;
height:14px;
width:14px;
background-color:#d85e55
2017-09-28 01:14:25 +09:00
}
th {
2017-12-05 14:58:00 +09:00
font-weight:400
}
2017-09-28 01:14:25 +09:00
.selectionHeader {
2017-12-05 14:58:00 +09:00
background-color:#f44336;
padding:10px;
color:#fff;
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
2017-09-28 22:21:01 +09:00
}
.framed {
2017-12-05 14:58:00 +09:00
position:relative;
margin:11px 0 10px;
padding:0 12px 12px;
background:#232323;
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;
overflow-y:auto;
overflow-x:hidden;
-ms-overflow-style:none
2017-11-09 03:35:31 +09:00
}
.framed::-webkit-scrollbar {
2017-12-05 14:58:00 +09:00
display:none
}
#warningMessage {
2017-12-05 14:58:00 +09:00
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
font-size:14px;
border-color:#fff;
border-style:solid;
border-width:1px;
border-radius:4px;
background:#232323;
width:526px;
padding:5px 12px;
margin:11px 0 0
2017-10-19 04:19:45 +09:00
}
.hidden {
2017-12-05 14:58:00 +09:00
opacity:0
2017-10-11 03:48:58 +09:00
}
a {
2017-12-05 14:58:00 +09:00
color:#ff8297
2017-09-27 11:44:10 +09:00
}