seigler.github.io/src/themes/eos/styles/basics.less
2017-02-11 14:56:56 -05:00

36 lines
613 B
Text

/* micro styles reset */
*, :before, :after {
box-sizing: inherit;
margin: 0;
padding: 0;
transform-style: preserve-3d;
font-family: inherit;
}
//@color-text: #DA0;
@color-text: white;
html {
box-sizing: border-box;
height: 100%;
overflow: hidden;
color: @color-text;
text-shadow: 0 0 0.1em fade(@color-text, 50%);
}
a {
color: inherit;
&:hover {
background-color: @color-text;
color: #20282a;
}
}
::selection {
background-color: @color-text;
color: #20282a;
}
h1, h2, h3, h4 {
font-size: inherit;
font-weight: bold;
border-bottom: 0.1em dotted;
margin-top: 1em;
}