70 lines
990 B
CSS
70 lines
990 B
CSS
@font-face {
|
|
font-family: JetBrainsMono;
|
|
src: url(assets/font/JetBrainsMono-Regular.woff2) format(woff2);
|
|
}
|
|
|
|
* {
|
|
font-family: JetBrainsMono;
|
|
}
|
|
|
|
body {
|
|
background-color: #282A36;
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
}
|
|
|
|
#title {
|
|
padding : 1rem;
|
|
}
|
|
|
|
#menubar {
|
|
background-color: #44475A;
|
|
border-radius: 20px;
|
|
padding: 10px;
|
|
display: flex;
|
|
gap: 50px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.title_button {
|
|
color: inherit;
|
|
padding : 10px;
|
|
border-radius: 10px;
|
|
background-color: #BD93F9;
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
|
|
.title_button:hover {
|
|
background-color: #BD93F966;
|
|
}
|
|
|
|
|
|
#content {
|
|
background-color : #44475A;
|
|
padding: 10px;
|
|
border-radius: 20px;
|
|
margin-left: 10rem;
|
|
margin-right: 10rem;
|
|
}
|
|
|
|
|
|
.project_box {
|
|
flex-direction: row;
|
|
display: flex;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.project_box_thumbnail {
|
|
width: 20rem;
|
|
height: 20rem;
|
|
}
|