liebling/src/sass/common/_global.scss

61 lines
962 B
SCSS
Raw Normal View History

2019-05-21 19:50:29 +00:00
/** Global styles */
body {
display: flex;
flex-direction: column;
width: 100%;
min-height: 100vh;
2019-09-28 22:02:59 +00:00
color: var(--primary-foreground-color);
2019-05-21 19:50:29 +00:00
font-size: 1rem;
font-family: 'Source Sans Pro', Helvetica, Arial, sans-serif;
font-display: swap;
overflow-x: hidden;
2019-09-28 22:02:59 +00:00
background-color: var(--background-color);
2019-05-21 19:50:29 +00:00
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
&.share-menu-displayed {
padding-bottom: 45px;
@include respond-to('medium') {
padding-bottom: 0;
}
}
}
.main-wrap {
display: flex;
flex-direction: column;
flex-grow: 1;
}
p {
2021-01-04 14:52:09 +00:00
line-height: 1.5;
2019-05-21 19:50:29 +00:00
margin: 0;
}
a {
color: inherit;
text-decoration: none;
}
fieldset {
padding: 0;
margin: 0;
border: 0;
position: relative;
}
.tippy-popper * {
text-align: left !important;
}
2019-09-30 21:28:57 +00:00
.medium-zoom-overlay {
background-color: var(--background-color) !important;
}
2019-05-21 19:50:29 +00:00
.medium-zoom-overlay,
.medium-zoom-image {
z-index: 5;
}