mirror of
https://github.com/FlyInTheBox/31TSAI.git
synced 2024-11-09 20:44:11 +01:00
3d57b00d35
dqwdq
54 lines
847 B
CSS
54 lines
847 B
CSS
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500&display=swap");
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
transition: 0.2s all;
|
|
}
|
|
|
|
body {
|
|
font-family: "Montserrat", sans-serif;
|
|
height: 100vh;
|
|
}
|
|
|
|
.main {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: grid;
|
|
grid-template-columns: 0.15fr 0.85fr;
|
|
}
|
|
|
|
.sidebar {
|
|
background-color: #8eb8e5;
|
|
height: 100vh;
|
|
width: 100%;
|
|
}
|
|
|
|
.sidebar li {
|
|
width: 100%;
|
|
height: 50px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
margin-top: 15px;
|
|
}
|
|
|
|
.sidebar li a {
|
|
text-decoration: none;
|
|
color: black;
|
|
}
|
|
|
|
.sidebar li:hover {
|
|
font-size: 18px;
|
|
background-color: #7c99b4;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.main-content {
|
|
background-color: #6b7f82;
|
|
height: 100vh;
|
|
width: 100%;
|
|
}
|