rave/static/css/dashboard.css

45 lines
635 B
CSS
Raw Normal View History

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;
}