This repository has been archived on 2021-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
squirrel-theme/css/header.css
2020-12-13 22:33:38 +01:00

41 lines
No EOL
659 B
CSS

.header {
margin: auto;
padding: 1.5rem;
padding-bottom: 0rem;
text-align: center;
display: flex;
font-size: large;
}
.logo {
display: flex;
width: 48pt;
}
.header-items {
padding-right: 1rem;
margin: auto;
margin-right: 0px;
display: flex;
float: right;
right: 0px;
align-items: right;
text-align: right;
}
.header-item {
margin-left: 2.5rem
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}