website/static/style.css

177 lines
2.3 KiB
CSS
Raw Normal View History

2022-12-27 00:48:42 -07:00
@font-face {
font-family: Inter;
src: url(/fonts/Inter-Thin.ttf);
font-weight: 100;
}
@font-face {
font-family: Inter;
src: url(/fonts/Inter-ExtraLight.ttf);
font-weight: 200;
}
@font-face {
font-family: Inter;
src: url(/fonts/Inter-Light.ttf);
font-weight: 300;
}
@font-face {
font-family: Inter;
src: url(/fonts/Inter-Regular.ttf);
font-weight: 400;
}
@font-face {
font-family: Inter;
src: url(/fonts/Inter-Medium.ttf);
font-weight: 500;
}
@font-face {
font-family: Inter;
src: url(/fonts/Inter-SemiBold.ttf);
font-weight: 600;
}
@font-face {
font-family: Inter;
src: url(/fonts/Inter-Bold.ttf);
font-weight: 700;
}
@font-face {
font-family: Inter;
src: url(/fonts/Inter-ExtraBold.ttf);
font-weight: 800;
}
@font-face {
font-family: Inter;
src: url(/fonts/Inter-Black.ttf);
font-weight: 900;
}
@font-face {
font-family: JetBrainsMono;
src: url(/fonts/JetBrainsMono-Regular.ttf);
font-weight: normal;
}
2022-12-27 00:48:42 -07:00
body {
max-width: 1050px;
margin: 0 auto;
background-color: #282828;
color: #ebdbb2;
font-family: Inter;
}
code {
font-family: JetBrainsMono;
color: #79740e;
}
ul, li, p {
color: #a89984;
}
.project-icon {
float: right;
border-radius: 15px;
margin-left: 10px;
max-width: 13%;
}
.normal-span {
2022-12-27 00:48:42 -07:00
color: #a89984;
}
a {
color: #458588;
font-style: underline;
}
a:visited {
color: #b16286;
font-style: underline;
}
a:hover {
color: #83a598;
font-style: underline;
}
.navbar {
padding: 20px 0;
font-size: 20px;
display: block;
}
.navbar-title {
font-weight: 600;
padding-right: 10px;
padding-top: 2px;
}
.nav {
display: inline;
padding-left: 0;
padding-bottom: 1px;
}
.navbar-item {
font-size: 18px;
padding-right: 10px;
padding-bottom: 5px;
list-style-type: none;
display: inline;
}
.time {
float: right;
font-size: 17px;
padding-top: 2px;
}
img.pfp {
max-width: 40%;
border-radius: 15px;
}
.box {
background-color: #3c3836;
}
.list {
background-color: #3c3836;
margin-bottom: 8px;
color: #a89984;
2022-12-27 00:48:42 -07:00
}
.list a {
font-weight: bold;
font-size: 18px;
}
.list img {
float: right;
border-radius: 15px;
max-width: 12%;
}
2022-12-27 00:48:42 -07:00
.sidebar {
max-height: 13em;
min-height: 13em;
font-size: 15px;
}
.project img {
max-width: 100%;
}
footer {
text-align: center;
padding: 30px 0;
color: #7c6f64;
}