pages/assets/css/main.css

106 lines
1.5 KiB
CSS
Raw Normal View History

2024-11-11 22:40:16 -05:00
/* Fonts */
@font-face {
font-family: Super Pixel;
src: url('/assets/fonts/super_pixel.ttf');
}
@font-face {
font-family: FiraCode Bold;
src: url('/assets/fonts/fira_code_v6.2/woff2/FiraCode-Bold.woff2');
}
@font-face {
font-family: FiraCode;
src: url('/assets/fonts/fira_code_v6.2/woff2/FiraCode-Regular.woff2');
}
2024-11-15 12:32:30 -05:00
@font-face {
font-family: ATT PC6300;
src: url('/assets/fonts/oldschool_pc_font_pack_v2.2/Web437_ATT_PC6300.woff')
}
body {
margin-top: 2%;
margin-left: 5%;
background-color: #000000;
}
2024-11-11 22:40:16 -05:00
.navbar {
list-style-type: none;
display: inline;
margin: 0px;
padding: 0px;
2024-11-11 22:40:16 -05:00
}
.navbar li {
display: inline;
}
.navbar > li > a {
2024-11-11 22:40:16 -05:00
font-family: FiraCode Bold;
margin-left: 3px;
margin-right: 3px;
2024-11-11 22:40:16 -05:00
display: inline;
}
.navbar a {
2024-11-11 22:40:16 -05:00
text-decoration: none;
font-size: 20px;
display: inline;
2024-11-11 22:40:16 -05:00
color: #bb53f3;
}
2024-11-15 12:32:30 -05:00
.navbar a:hover {
color: white;
}
.navbar h1 {
margin-bottom: 0px;
2024-11-11 22:40:16 -05:00
}
.navbar h1 a {
2024-11-11 22:40:16 -05:00
color: #bb53f3;
font-size: 30px;
display: inline;
font-family: Super Pixel;
}
@media (min-width: 600px) {
.navbar li h1 {
display: inline;
}
2024-11-11 22:40:16 -05:00
}
/* Main content */
2024-11-11 22:40:16 -05:00
2024-11-15 12:32:30 -05:00
main {
2024-11-11 22:40:16 -05:00
color: white;
font-family: FiraCode;
width: 70%;
}
2024-11-15 12:32:30 -05:00
main h2 {
font-family: ATT PC6300;
font-size: 40px;
margin-top: 20px;
margin-bottom: 0px;
}
2024-11-15 12:32:30 -05:00
main p {
margin-top: 5px;
}
2024-11-15 12:32:30 -05:00
main a {
text-decoration: none;
color: #418cf6;
2024-11-11 22:40:16 -05:00
}
2024-11-15 12:32:30 -05:00
a:hover {
color: white;
}
footer {
color: white;
}