rave/static/css/dashboard.css
Lyssieth 4a746a3371
feat: basic UI stuff I think
I gotta do a lot more, but just pushing to
ctrl+s my code.
2023-10-14 19:03:20 +03:00

45 lines
No EOL
635 B
CSS

body {
background-color: #0a0a0a;
color: #f0f0f0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h2 {
margin-top: 2px;
}
#main {
border: 2px solid #707070;
}
#admin {
border: 2px solid #700070;
}
a {
color: #002ae0;
text-decoration: none
}
a:hover {
color: #002ae0;
text-decoration: underline
}
a:visited {
color: #002ae0;
text-decoration: none;
}
li.user {
display: inline-flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 5px;
border-bottom: 1px solid #707070;
}