daux.io/themes/daux_singlepage/less/main.less

59 lines
872 B
Plaintext
Raw Normal View History

// Core variables and mixins
2016-05-23 20:09:15 +02:00
@import "../../common/less/_fonts.less";
@import "vendor/highlight.less";
@import "_typography.less";
* {
-webkit-overflow-scrolling: touch;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-font-smoothing: antialiased;
}
html, body {
height: 100%;
}
body {
text-rendering: optimizeLegibility;
font-smoothing: antialiased;
2016-05-23 20:09:15 +02:00
font-family: @font-family-text;
}
a {
color: #337ab7;
text-decoration: none;
}
a:focus, a:hover {
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;
}
.page-break { display: none; }
@media screen {
body {
margin: 1em;
}
}
@media print {
@import "_print.less";
}