2024-04-07 22:42:48 +02:00
|
|
|
body {
|
|
|
|
color: #4a4a4a;
|
|
|
|
margin: 0px;
|
|
|
|
padding:0px;
|
|
|
|
font-family: "Open Sans";
|
|
|
|
line-height: 1.5em;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #4a4a4a;
|
|
|
|
text-decoration: underline;
|
|
|
|
transition: all .3s ease
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover,
|
|
|
|
a.selected {
|
|
|
|
color: #13aff0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashmenu,
|
|
|
|
header {
|
2024-07-25 15:04:42 +02:00
|
|
|
padding-top: 1rem;
|
2024-04-07 22:42:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Menu */
|
|
|
|
|
2024-07-25 15:04:42 +02:00
|
|
|
#dashmenu {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
|
2024-04-07 22:42:48 +02:00
|
|
|
#dashmenu a {
|
|
|
|
text-decoration: none;
|
2024-07-25 15:04:42 +02:00
|
|
|
padding: 8px;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashmenu a:hover {
|
|
|
|
background-color: #4a4a4a;
|
|
|
|
color: #eee;
|
|
|
|
}
|
|
|
|
|
|
|
|
#dashmenu a > i {
|
|
|
|
margin-right: 8px;
|
2024-04-07 22:42:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Edit user */
|
|
|
|
|
|
|
|
#user-edit-form label {
|
|
|
|
height: 30px;
|
|
|
|
line-height: 30px;
|
|
|
|
display: block;
|
|
|
|
padding: .2rem 0;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
#profile-img {
|
|
|
|
width: 128px;
|
|
|
|
}
|