shiftos-archive-website/style.css

47 lines
713 B
CSS
Raw Normal View History

2024-06-20 01:25:57 +00:00
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');
2020-09-03 15:16:35 +00:00
body {
2024-06-20 01:25:57 +00:00
font-family: "JetBrains Mono", monospace;
2020-09-03 15:16:35 +00:00
background: #333333;
color: white;
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
2020-09-03 15:16:35 +00:00
.center {
text-align: center;
}
a:link {
color: #00e600;
2020-09-03 15:16:35 +00:00
background-color: transparent;
text-decoration: none;
font-size: 20px;
}
a:visited {
color: gray;
background-color: transparent;
text-decoration: none;
}
p {
font-size: 20px;
}
footer {
position: fixed;
left: 0;
bottom: 0;
text-align: center;
width: 100%;
}
2020-09-03 21:59:38 +00:00
img.logo {
2020-09-03 15:16:35 +00:00
width: 50%;
height: auto;
2024-06-20 01:25:57 +00:00
}