Lewy
63fd65e127
ADD collapsible dla widoku całej drabinki ADD podział style.css na collapsible.css dla zwijania drabinki, li.css dla tworzenia drabinki i round.css do przejść między poziomami drabinki
99 lines
1.4 KiB
CSS
99 lines
1.4 KiB
CSS
@import "li.css";
|
|
@import "collapsible.css";
|
|
@import "round.css";
|
|
|
|
|
|
/*
|
|
* Flex Layout Specifics
|
|
*/
|
|
|
|
body {
|
|
background-color: #C0C0C0;
|
|
font-family: sans-serif;
|
|
font-size: small;
|
|
padding: 10px;
|
|
line-height: 1.4em;
|
|
}
|
|
|
|
img {
|
|
width: 150px;
|
|
height: 30px;
|
|
}
|
|
|
|
.dot {
|
|
height: 30px;
|
|
width: 30px;
|
|
color: white;
|
|
background-color: skyblue;
|
|
border-radius: 50%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
a {
|
|
text-align: center;
|
|
line-height: 2;
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.loginn {
|
|
background-color: skyblue;
|
|
border-radius: 31px;
|
|
border: 1px solid skyblue;
|
|
cursor: pointer;
|
|
color: #ffffff;
|
|
font-family: Arial;
|
|
text-decoration: none;
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
background-color: #065FD4;
|
|
margin: auto;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
padding-right: 30px;
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
header>p {
|
|
text-align: center;
|
|
line-height: 0;
|
|
}
|
|
|
|
.myButton {
|
|
background-color: #4C8BF5;
|
|
border-radius: 28px;
|
|
border: 1px solid #4C8BF5;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
color: #ffffff;
|
|
font-family: Arial;
|
|
font-size: 9px;
|
|
padding: 8px 13px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
/*
|
|
* Flex Layout Specifics
|
|
*/
|
|
main {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|