bellmaker
Version:
Responsive CSS media query library for LESS and SASS, with device-agnostic and device-specific breakpoints
59 lines (50 loc) • 995 B
text/less
// eventually Mossflower will be its own repo as a global reset.
html {
font-size: 62.5%;
height: 100%;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
overflow: -moz-scrollbars-vertical;
overflow-x: hidden;
overflow-y: scroll;
}
body {
padding: 0;
margin: 0;
font-size: 100%;
position: relative;
text-rendering: optimizelegibility;
font-size: 1em;
line-height: 1;
font-family: Helvetica, Arial, sans-serif;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
body, table, td,
ul, ol,
h1, h2, h3, h4, p, img,
figure {
margin: 0;
}
ul, ol {
padding-left: 0;
}
a:link, a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
// displaying code: if it's a block of code nest it as <pre><code> and each
// line will go full length with overflow-x scrolling.
pre {
overflow: auto;
}
code {
white-space: pre-wrap;
pre > & {
white-space: pre;
}
}