49 lines
765 B
CSS
49 lines
765 B
CSS
body {
|
|
margin: 0;
|
|
color: #172b4d;
|
|
background: #f2f2f2;
|
|
position: absolute;
|
|
left: 0px;
|
|
right: 0px;
|
|
}
|
|
|
|
#navbar {
|
|
padding-top: 15px;
|
|
background-color: #000;
|
|
}
|
|
|
|
.navigation-button {
|
|
background-color: #000;
|
|
color: #fff;
|
|
padding: 16px;
|
|
font-size: 16px;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
.navigation {
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 100px;
|
|
display: inline-block;
|
|
float: right;
|
|
}
|
|
.navigation-content {
|
|
display: none;
|
|
position: absolute;
|
|
background-color: #f9f9f9;
|
|
min-width: 160px;
|
|
box-shadow 0px 8px 16px 0px rgba(0,0,0,0,2);
|
|
padding: 12px 16px;
|
|
z-index: 1;
|
|
}
|
|
.navigation-content a {
|
|
display: block;
|
|
padding: 10px 10px;
|
|
}
|
|
.navigation:hover .navigation-content {
|
|
display: block;
|
|
}
|
|
|
|
.hide {
|
|
display: none;
|
|
}
|