33 lines
326 B
SCSS
33 lines
326 B
SCSS
.logo {
|
|
float: left;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
header::after {
|
|
content: '';
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|
|
header {
|
|
box-shadow: 0 0 5px #888;
|
|
}
|
|
|
|
nav {
|
|
float: right;
|
|
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
li {
|
|
display: inline-block;
|
|
text-align: center;
|
|
margin-left: 70px;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
}
|