roulette/static/style.css
2020-01-18 14:29:44 +01:00

152 lines
2.1 KiB
CSS
Executable file

@import url('https://fonts.googleapis.com/css?family=Ubuntu+Mono');
body {
background: #ecf0f1;
color: black;
text-align: center;
font-family: 'Ubuntu Mono', monospace;
margin: 0;
}
.center {
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
}
a {
text-decoration: none;
color: black;
}
#banner {
width: 75%;
max-width: 550px;
margin-top: 32px;
}
#card {
margin: 32px auto;
padding: 32px 0 16px 0;
max-width: 600px;
background: #ffffff;
border-radius: 4px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12),
0 1px 2px rgba(0, 0, 0, 0.24);
}
@media screen and (max-width: 640px) {
#card {
width: 80%;
}
#banner {
margin: 32px 32px 0 32px;
}
}
#chart {
margin-bottom: 16px;
}
.sep {
width: 100%;
height: 1px;
background-color: #DADADA;
margin: 16px;
box-sizing: border-box;
}
.desc {
font-size: 18px;
margin: 16px 0;
padding: 0 16px;
}
.button {
width: 132px;
height: 54px;
font-size: 20px;
margin: 16px auto;
border-radius: 3px;
font-weight: bold;
color: #ffffff;
transition: all cubic-bezier(0.4, 0.0, 0.2, 1) 0.2s;
}
.button:hover {
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16),
0 3px 6px rgba(0, 0, 0, 0.23);
}
#play {
background-color: #636e72;
}
#play:hover {
background-color: #2d3436;
}
#tchak {
background-color: #636e72;
}
#tchak:hover {
background-color: #2d3436;
}
.title {
font-size: 24px;
}
#history {
margin: 16px;
padding: 0 16px;
list-style-type: decimal-leading-zero;
list-style-position: inside;
}
li {
text-align: left;
}
li .normal {
color: black;
font-size: 80%;
}
li.ban {
color: red;
}
li.warn {
color: orange;
}
li.ok {
color: #1D1;
}
ul.flashes {
margin: -16px 16px 16px 16px;
list-style-type: none;
background-color: #1A2A3A;
padding: 8px;
border-radius: 3px;
color: #FAFAFA;
font-size: 18px;
}
ul.flashes li {
text-align: center;
}
table{
width:95%;
border-collapse : collapse
}
td,th {
border : thin solid black;
}