114 lines
1.4 KiB
CSS
114 lines
1.4 KiB
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: Arial, sans-serif;
|
|
background: #f5f5f7;
|
|
color: #333;
|
|
}
|
|
|
|
.horizontal {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
#navbar {
|
|
width: 80%;
|
|
height: 40px;
|
|
margin: 12px auto 25px;
|
|
padding: 0 12px;
|
|
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
background-color: white;
|
|
}
|
|
|
|
#navbar > div {
|
|
color: #555;
|
|
font-size: 11px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
#navbar > div:hover {
|
|
color: black;
|
|
}
|
|
|
|
.logo {
|
|
color: black;
|
|
font-size: 18px;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#navbar img {
|
|
width: 16px;
|
|
height: 16px;
|
|
display: block;
|
|
}
|
|
|
|
#navbar .logo img {
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
.nav-icon {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
}
|
|
|
|
#navbar a:hover {
|
|
opacity: .65;
|
|
}
|
|
|
|
#navbar span {
|
|
color: #555;
|
|
font-size: 17px;
|
|
}
|
|
|
|
.menu {
|
|
width: 55%;
|
|
margin-left: 11%;
|
|
|
|
align-items: flex-start;
|
|
gap: 30px;
|
|
}
|
|
|
|
.column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
background-color: #f5f5f7;
|
|
}
|
|
|
|
.column small {
|
|
padding: 6px;
|
|
margin-bottom: 4px;
|
|
|
|
color: #777;
|
|
font-size: 10px;
|
|
background-color: white;
|
|
}
|
|
|
|
.column > div {
|
|
padding: 3px 6px;
|
|
|
|
color: #444;
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.column > div:hover {
|
|
color: black;
|
|
}
|
|
|
|
.first-column {
|
|
width: 160px;
|
|
}
|
|
|
|
.first-column > div {
|
|
font-size: 18px;
|
|
}
|