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";
|
|
|
|
src: url("./fonts/JetBrainsMono Nerd Font.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;
|
|
|
|
gap: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
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";
|
|
|
|
}
|
|
|
|
|
|
|
|
.github-icon:before {
|
|
|
|
content: "\f09b";
|
|
|
|
font-size: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gitea-icon:before {
|
|
|
|
content: "\e702";
|
|
|
|
font-size: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.paste-icon:before {
|
|
|
|
content: "\f429";
|
|
|
|
font-size: 3em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mail-icon:before {
|
|
|
|
content: "\eb1c";
|
|
|
|
font-size: 3em;
|
|
|
|
}
|