37 lines
434 B
CSS
37 lines
434 B
CSS
body {
|
|
text-align: center;
|
|
background-color: #222222;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, p {
|
|
color: #DDDDEE
|
|
}
|
|
|
|
a {
|
|
color: #DD7FB6;
|
|
text-decoration: none
|
|
}
|
|
|
|
#navbar {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
overflow: hidden;
|
|
flex-direction: column;
|
|
display: flex;
|
|
float: right;
|
|
}
|
|
|
|
#navbar a {
|
|
float: right;
|
|
display: block;
|
|
text-align: end;
|
|
padding: 5px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#navbar a:hover {
|
|
color: #D0A7DF
|
|
}
|
|
|