website/dev/style.css

81 lines
1.2 KiB
CSS
Raw Normal View History

2024-09-16 23:55:27 -03:00
@font-face {
font-family: Lilex;
2024-09-17 00:34:11 -03:00
src: url(./fonts/Lilex-Regular.ttf) format("truetype");
}
@font-face {
font-family: "JetBrainsMono Nerd Font";
2024-09-17 00:52:17 -03:00
src: url("./fonts/JetBrains-Mono-Nerd-Font-Complete.ttf") format("truetype");
2024-09-16 23:55:27 -03:00
}
body {
font-family: Lilex;
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
2024-09-17 00:34:11 -03:00
background-color: #1e1e1e;
color: #d4d4d4;
2024-09-16 23:55:27 -03:00
}
.container {
display: flex;
flex-direction: column;
}
img {
width: 150px;
border-radius: 50px;
}
.top-level div {
display: flex;
align-items: center;
gap: 2em;
}
2024-09-17 00:34:11 -03:00
.link-item {
display: flex;
align-items: center;
gap: 10px;
}
.link-item a {
text-decoration: none;
color: #d4d4d4;
font-weight: bolder;
}
.icon {
font-family: "JetBrainsMono Nerd Font";
}
2024-09-17 00:52:17 -03:00
.mail-icon:before {
content: "\f42f";
font-size: 2em;
}
2024-09-17 00:34:11 -03:00
.github-icon:before {
content: "\f09b";
2024-09-17 00:52:17 -03:00
font-size: 2em;
2024-09-17 00:34:11 -03:00
}
.gitea-icon:before {
content: "\e702";
2024-09-17 00:52:17 -03:00
font-size: 2.8em;
2024-09-17 00:34:11 -03:00
}
.paste-icon:before {
content: "\f429";
2024-09-17 00:52:17 -03:00
font-size: 2.2em;
2024-09-17 00:34:11 -03:00
}
2024-09-18 10:48:52 -03:00
footer {
position: absolute;
bottom: 1rem;
font-size: 0.8rem;
color: #777;
}