hsmwebsite/static/style.css

55 lines
698 B
CSS
Raw Normal View History

2024-11-28 00:25:01 +01:00
* {
box-sizing: border-box;
}
2024-11-17 23:06:42 +01:00
body {
margin: 0;
padding: 0;
font-family: sans-serif;
2024-11-28 00:25:01 +01:00
overflow: clip;
2024-11-17 23:06:42 +01:00
}
.nav-name {
font-weight: 1000;
font-size: 1.25em;
}
.sidebar {
2024-11-28 08:49:39 +01:00
background-color: Purple;
color: #FFF;
2024-11-17 23:06:42 +01:00
height: 100%;
2024-11-28 00:25:01 +01:00
width: 15%;
float: left;
2024-11-17 23:06:42 +01:00
border-right: 1px solid #AAAAAA;
2024-11-28 08:49:39 +01:00
padding: 1%;
2024-11-17 23:06:42 +01:00
}
.sidemenu li {
list-style-type: "\02386";
list-style-position: outside;
padding-left: 0.5em;
}
.sidemenu li a {
display: block;
text-decoration: none;
font-weight: bold;
2024-11-28 08:49:39 +01:00
color: #FFF;
2024-11-17 23:06:42 +01:00
margin-bottom: 10px;
}
2024-11-28 00:25:01 +01:00
.clearfix::after {
content: "";
clear: both;
display: table;
}
2024-11-17 23:06:42 +01:00
.content {
padding: 20px;
2024-11-28 00:25:01 +01:00
float: left;
width: 85%;
height: 100%;
2024-11-17 23:06:42 +01:00
color: #000040;
2024-11-28 00:25:01 +01:00
overflow: auto;
2024-11-17 23:06:42 +01:00
}