All checks were successful
DEPLOY / deploy (push) Successful in 6s
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
54 lines
757 B
CSS
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;
|
|
}
|