gctGenerator/style/style.css

128 lines
2.4 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-09-28 22:21:01 +09:00
width: 1200px;
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-09-27 11:44:10 +09:00
margin: 10px 0 10px 0;
}
2017-09-28 01:14:25 +09:00
body button {
2017-09-27 11:44:10 +09:00
width: 500px;
2017-09-28 01:14:25 +09:00
padding: 12px 8px 12px 0px;
float: left;
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;
margin-top: 10px;
2017-10-09 21:51:11 +09:00
outline: none;
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-09-28 22:21:01 +09:00
width: 500px;
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;
padding: 12px 8px 12px 40px;
2017-09-28 22:21:01 +09:00
background: #ffefef;
color: #262626;
2017-09-28 01:14:25 +09:00
font-size: 18px;
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-09-28 01:14:25 +09:00
}
2017-10-11 04:05:41 +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;
border-radius: 4px;
top: 14.5px;
left: 12px;
height: 15px;
width: 15px;
}
2017-10-11 04:05:41 +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-11 04:05:41 +09:00
ul li:hover {
2017-09-28 22:21:01 +09:00
/*background: #ddd;*/
background: #565656;
color: #ffffff;
2017-09-28 01:14:25 +09:00
}
ul li.checked {
2017-09-28 22:21:01 +09:00
background: #565656;
2017-09-28 01:14:25 +09:00
color: #fff;
}
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;
border-radius: 4px;
top: 14.5px;
left: 12px;
2017-09-28 01:14:25 +09:00
height: 15px;
2017-09-28 22:21:01 +09:00
width: 15px;
background-color: #ffffff;
2017-09-28 01:14:25 +09:00
}
.selectionHeader {
background-color: #f44336;
2017-09-28 22:21:01 +09:00
padding: 12px 8px 12px 10px;
2017-09-28 01:14:25 +09:00
color: white;
2017-09-28 22:21:01 +09:00
width: 500px;
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 {
margin: 30px 0 10px 0;
padding: 0px 12px 12px 12px;
border-color: #fff;
border-style: solid;
border-width: 1px;
border-radius: 4px;
width: 500px;
/*min-height: 300px;*/
2017-10-11 03:48:58 +09:00
}
#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;
}
a {
color: pink;
2017-09-27 11:44:10 +09:00
}