site-perso-poly/static/style.css
Djalim Simaila 1ed07481f8
All checks were successful
DEPLOY / deploy (push) Successful in 6s
feat(deploy): add font files for JetBrains Mono to enhance typography
feat(style.css): include JetBrains Mono font in CSS for improved text rendering
chore(deploy): add additional steps in the deployment workflow for better visibility
2025-01-17 15:00:39 +01:00

54 lines
757 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 {
padding : 10px;
border-radius: 10px;
background-color: #BD93F9;
}
.title_button:hover {
background-color: #BD93F966;
}
#content {
background-color : #44475A;
padding: 10px;
border-radius: 20px;
}