games/static/style.css

88 lines
1 KiB
CSS
Raw Normal View History

2023-08-23 13:11:43 +02:00
html {
margin: 0;
padding: 0;
border: 0;
font: inherit;
vertical-align: baseline;
}
body {
margin: 1em auto;
padding: 0;
border: 0;
font: inherit;
vertical-align: baseline;
font-size: 1.4em;
line-height: 1.4;
max-width: 40em;
2023-08-24 09:28:05 +02:00
background: #35155D;
color: whitesmoke;
2023-08-23 13:11:43 +02:00
font-family: 'Open Sans', sans-serif;
}
@font-face {
font-display: swap;
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
src: url('/static/open-sans-v35-latin-regular.woff2') format('woff2');
}
2023-08-24 09:28:05 +02:00
h1,
h2,
h3 {
2023-08-23 13:11:43 +02:00
margin-left: 15px;
2023-08-24 09:28:05 +02:00
color: #8CABFF;
}
h1 {
text-align: center;
border-bottom: 1px solid white;
margin: 0px 15%;
2023-08-23 13:11:43 +02:00
}
.status-image {
2023-08-24 09:28:05 +02:00
position: relative;
2023-08-23 13:11:43 +02:00
bottom: -3px;
}
body i {
text-decoration: none;
font-style: normal;
}
2023-08-24 09:28:05 +02:00
.info {
2023-08-23 13:11:43 +02:00
color: aqua;
}
.game-card p {
margin: 2px 0;
}
.game-card {
margin: 0 20px;
2023-08-23 16:17:31 +02:00
}
@media (max-width: 650px) {
body {
font-size: 1em;
}
.status-image {
display: block;
margin-left: 6px;
margin-top: 5px;
}
h2 {
margin-bottom: 7px;
}
2023-08-24 09:28:05 +02:00
}
.red {
color: red;
}
.green {
color: greenyellow;
2023-08-23 13:11:43 +02:00
}