1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00
Files
locomotive-boilerplate/www/modules/boilerplate/assets/styles/src/base/_base.scss

41 lines
542 B
SCSS
Raw Normal View History

/* ==========================================================================
Base
========================================================================== */
html {
font-family: $font-family;
font-size: $font-size;
line-height: $line-height;
2014-12-18 15:58:53 -05:00
color: $color;
}
::selection {
background: $selection;
text-shadow: none;
}
hr {
display: block;
height: 1px;
margin: 1em 0;
padding: 0;
border: 0;
border-top: 1px solid #cccccc;
}
img, svg {
max-width: 100%;
}
a {
color: $link;
&:hover {
color: $link-hover;
}
}
2015-01-07 15:20:33 -05:00