g1-stats/css/style.css

105 lines
1.3 KiB
CSS

body {
background-color: #c4a787;
margin: 30px;
font-family: "Gill Sans", sans-serif;
min-width: 1100px;
}
.footer img {
position: sticky;
bottom: 0;
width: 200px;
margin-top: 30px;
}
.header h1 {
}
pre {
font-family: "Gill Sans", sans-serif;
letter-spacing: 0.04em;
}
#mainbloc, #statsHistory {
margin-top: 60px;
margin-bottom: 10px;
margin-left: 300px;
margin-right: 300px;
padding: 20px;
min-width: 300px;
background-color: #DFCFBE;
border-radius: 30px;
}
.columnTitle {
display: inline-block;
}
a {
text-decoration: none;
display: inline-block;
padding: 8px 16px;
}
a:hover {
background-color: #ddd;
color: black;
}
.previous, .next {
background-color: #f1f1f1;
color: black;
opacity: 0.3;
width: 50px;
height: 60px;
font-size: 3em;
text-align: center;
position: absolute;
border-radius: 30%;
top: 45%;
}
.next {
right: 30px;
}
@media only screen and (max-width: 1100px) {
body {
margin: 15px;
margin-top: 30px;
min-width: 0px;
font-size: 1em;
}
#mainbloc {
margin: 5px;
margin-top: 50px;
}
a {
font-size: 1em;
}
pre {
font-size: 1.3em;
}
.previous, .next {
font-size: 2em;
top: 5%;
width: 15px;
height: 55px;
border-radius: 10%;
}
.previous {
left: 5px;
}
.next {
right: 5px;
}
}