92 lines
No EOL
1.3 KiB
CSS
92 lines
No EOL
1.3 KiB
CSS
body {
|
|
background-color: #070707;
|
|
color: #f0f0f0;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 2px;
|
|
}
|
|
|
|
#main {
|
|
border: 2px solid #707070;
|
|
padding: 4px;
|
|
}
|
|
|
|
#admin {
|
|
border: 2px solid #700070;
|
|
padding: 4px;
|
|
}
|
|
|
|
a {
|
|
color: #005ae0;
|
|
text-decoration: none
|
|
}
|
|
|
|
a:hover {
|
|
color: #005ae0;
|
|
text-decoration: underline
|
|
}
|
|
|
|
a:visited {
|
|
color: #005ae0;
|
|
text-decoration: none;
|
|
}
|
|
|
|
ul {
|
|
padding-left: 0;
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
list-style: none;
|
|
}
|
|
|
|
li.list-item {
|
|
list-style: none;
|
|
display: inline-flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 5px;
|
|
border-bottom: 1px solid #707070;
|
|
}
|
|
|
|
li.list-item>p {
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
#admin-add-user {
|
|
padding: 5px;
|
|
border-bottom: 1px solid #707070;
|
|
}
|
|
|
|
input {
|
|
background-color: #0a0a0a;
|
|
color: #f0f0f0;
|
|
border: 2px solid #707070;
|
|
}
|
|
|
|
a.user-delete {
|
|
color: #c00000;
|
|
text-decoration: none;
|
|
}
|
|
|
|
span.user-disabled {
|
|
color: grey;
|
|
text-decoration: 1px underline grey;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
} |