17 lines
360 B
CSS
17 lines
360 B
CSS
@font-face {
|
|
font-family: JetBrains_Mono;
|
|
src: url(../Fonts/JetBrainsMono-Regular.woff2) format('woff2');
|
|
}
|
|
|
|
body{
|
|
background-color: black;
|
|
color: #aaa6a6;
|
|
font-family: JetBrains_Mono;
|
|
}
|
|
|
|
header{
|
|
background-image: linear-gradient(to right, #2c3e50, #4CAF50);
|
|
}
|
|
footer{
|
|
background-image: linear-gradient(to left, #2c3e50, #4CAF50);
|
|
} |