rimgo/static/css/base.css

49 lines
696 B
CSS
Raw Normal View History

2022-01-17 22:11:33 +00:00
a {
2022-01-18 00:07:07 +00:00
color: #1e88e5;
2022-01-17 22:11:33 +00:00
text-decoration: none;
}
2022-01-18 00:07:07 +00:00
p {
font-size: 18px;
}
2022-01-17 20:48:24 +00:00
body {
2022-01-17 22:11:33 +00:00
background-color: black;
color: white;
2022-01-17 20:48:24 +00:00
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
}
2022-01-17 22:11:33 +00:00
nav {
display: flex;
align-items: center;
}
2022-01-18 00:25:49 +00:00
.center {
display: flex;
justify-content: center;
}
2022-01-17 22:11:33 +00:00
.logo {
filter: invert(1) hue-rotate(180deg);
}
2022-01-17 20:48:24 +00:00
main {
2022-01-17 22:11:33 +00:00
margin: 0 24vw;
}
footer {
display: flex;
justify-content: center;
flex-direction: row;
gap: 10px;
2022-01-17 20:48:24 +00:00
}
2022-01-17 22:11:33 +00:00
@media only screen and (max-width: 812px) {
main {
margin: 0;
}
footer {
flex-direction: column;
text-align: center;
}
2022-01-17 20:48:24 +00:00
}