rentgen/components/report-window/report-window.scss

38 lines
616 B
SCSS
Raw Normal View History

@import './../../styles/colors.scss';
// @import './../../styles/fonts';
2022-02-02 10:33:09 +01:00
html {
2022-02-10 19:54:51 +01:00
font-size: 1rem;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
'Open Sans', 'Helvetica Neue', sans-serif;
2022-02-02 10:33:09 +01:00
}
body {
2022-02-10 19:54:51 +01:00
background-color: #fff;
2022-02-02 10:33:09 +01:00
}
nav {
2022-02-10 19:54:51 +01:00
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;
2022-02-02 10:33:09 +01:00
2022-02-10 19:54:51 +01:00
img {
margin-right: 0.5rem;
}
2022-02-02 10:33:09 +01:00
}
2022-02-10 21:52:40 +01:00
p,
li,
h1,
h2,
h3 {
max-width: 70ex;
}