2020-06-25 22:43:26 +02:00
|
|
|
.SettingsSidebar {
|
|
|
|
padding-top: 20px;
|
|
|
|
float: left;
|
|
|
|
width: 10%;
|
|
|
|
background-color: #d3dcef;
|
2020-07-27 21:14:56 +02:00
|
|
|
min-height: calc(100vh - 62px);
|
2020-06-25 22:43:26 +02:00
|
|
|
min-width: 110px;
|
2020-07-27 21:14:56 +02:00
|
|
|
|
|
|
|
border-top-right-radius: 10px;
|
|
|
|
border-bottom-right-radius: 10px;
|
2020-06-25 22:43:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.SettingsSidebarTitle {
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-size: larger;
|
|
|
|
margin-bottom: 25px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SettingsContent {
|
|
|
|
float: left;
|
|
|
|
width: 80%;
|
|
|
|
padding-left: 30px;
|
|
|
|
padding-top: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.SettingSidebarElement {
|
|
|
|
margin: 10px 5px 5px;
|
|
|
|
padding: 5px;
|
|
|
|
background-color: #a8b2de;
|
|
|
|
text-align: center;
|
|
|
|
font-weight: bold;
|
2020-06-29 19:55:40 +02:00
|
|
|
border-radius: 7px;
|
2020-06-25 22:43:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.SettingSidebarElement:hover {
|
|
|
|
font-weight: bolder;
|
|
|
|
background-color: #7d8dd4;
|
|
|
|
box-shadow: #7d8dd4 0 0 0 5px;
|
|
|
|
transition: all 300ms;
|
|
|
|
cursor: pointer;
|
2020-07-27 21:14:56 +02:00
|
|
|
}
|