46 lines
933 B
CSS
46 lines
933 B
CSS
body {
|
|
margin: 0; /* Remove body margins */
|
|
}
|
|
.navbar-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-start;
|
|
align-items: stretch;
|
|
background-color: #252631;
|
|
padding: 15px;
|
|
padding-right: 40px;
|
|
margin: 0px;
|
|
}
|
|
.navbar {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
flex-grow: 1;
|
|
}
|
|
.navbar-item {
|
|
color: white;
|
|
font-size: 14pt;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
font-family: Source Sans Pro;
|
|
}
|
|
.navbar-item:hover {
|
|
background-color: #ffffff14;
|
|
font-size: 15pt;
|
|
font-weight: bold;
|
|
border-radius: 3px;
|
|
transition-duration: 0.3s;
|
|
cursor: pointer;
|
|
}
|
|
.navbar-title {
|
|
color: white;
|
|
font-size: 14pt;
|
|
padding-left: 20px;
|
|
padding-right: 20px;
|
|
padding-top: 10px;
|
|
padding-bottom: 10px;
|
|
font-family: Source Sans Pro;
|
|
}
|
|
/*}*/ |