39 lines
758 B
SCSS
39 lines
758 B
SCSS
@import '../sidebar/fonts.scss';
|
|
@import '../sidebar/colors.scss';
|
|
|
|
* {
|
|
margin: 0px;
|
|
box-sizing: border-box;
|
|
text-rendering: optimizelegibility;
|
|
font-smooth: auto;
|
|
-webkit-font-smoothing: auto;
|
|
user-select: none;
|
|
}
|
|
|
|
html {
|
|
font-size: 1rem;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
|
|
'Open Sans', 'Helvetica Neue', sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: #fff;
|
|
}
|
|
|
|
nav {
|
|
position: sticky;
|
|
top: 0;
|
|
background-color: #fff;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: left;
|
|
align-items: center;
|
|
padding: 1rem 1rem;
|
|
border-bottom: 2px solid $ultra-light-grey;
|
|
height: 5rem;
|
|
|
|
img {
|
|
margin-right: 0.5rem;
|
|
}
|
|
}
|