31TSAI/Biblioteka 17.05.2023/style/style.css
FlyInTheBox 6f6723d927 l
2023-05-17 14:39:43 +02:00

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;
}