mirror of
https://github.com/FlyInTheBox/31TSAI.git
synced 2024-11-12 22:14:09 +01:00
40 lines
No EOL
634 B
CSS
40 lines
No EOL
634 B
CSS
body{
|
|
font-family: "Droid Sans";
|
|
}
|
|
nav {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
height: 100vh;
|
|
width: 15vw;
|
|
background-color: darkorange;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.container {
|
|
position: absolute;
|
|
width: 85vw;
|
|
height: 100vh;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
.content {
|
|
padding: 2vw;
|
|
position: absolute;
|
|
width: 81vw;
|
|
background-color: burlywood;
|
|
top: 0;
|
|
}
|
|
|
|
.linki {
|
|
width: 13.7vw;
|
|
text-decoration: none;
|
|
color: aliceblue;
|
|
padding-left: 1.3vw;
|
|
line-height: 6vh;
|
|
animation: ease 200ms;
|
|
}
|
|
.linki:hover{
|
|
background-color: chocolate;
|
|
|
|
} |