8
0
Fork 0
daux.io/src/css/theme_daux_singlepage/main.scss

63 Zeilen
935 B
SCSS

// Core variables and mixins
@import "vendor/highlight.scss";
2018-02-26 22:46:36 +01:00
@import "_fonts.scss";
@import "_typography.scss";
* {
-webkit-overflow-scrolling: touch;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
}
2019-05-28 22:12:50 +02:00
html,
body {
height: 100%;
}
body {
2020-02-08 15:49:07 +01:00
text-rendering: optimizeLegibility; // stylelint-disable-line plugin/no-unsupported-browser-features
2017-01-09 17:50:45 +01:00
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
font-family: var(--font-family-text);
2016-05-23 20:09:15 +02:00
}
a {
color: #337ab7;
text-decoration: none;
}
2019-05-28 22:12:50 +02:00
a:focus,
a:hover {
2016-05-23 20:09:15 +02:00
color: #23527c;
text-decoration: underline;
}
p {
margin: 0 0 1em;
}
hr {
clear: both;
margin: 1em 0;
border: 0;
border-top: 1px solid #ddd;
}
img {
max-width: 100% !important;
}
2019-05-28 22:12:50 +02:00
.PageBreak {
display: none;
}
@media screen {
body {
margin: 1em;
}
}
@media print {
@import "_print.scss";
}