scratch-www/src/main.scss

69 lines
940 B
SCSS
Raw Normal View History

@import "colors";
2015-09-04 11:26:18 -04:00
/* Tags */
2015-09-24 19:27:50 -04:00
html,
body {
2015-09-04 11:26:18 -04:00
display: block;
margin: 0;
background-color: $background-color;
2015-09-04 11:26:18 -04:00
padding: 0;
color: $type-gray;
2015-09-04 11:26:18 -04:00
font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
/* Typography */
2015-09-24 19:27:50 -04:00
h1,
h2,
h3,
h4 {
2015-09-04 11:26:18 -04:00
margin: 0;
border: 0;
2015-09-24 19:27:50 -04:00
padding: 0;
2015-09-04 11:26:18 -04:00
color: $header-gray;
2015-09-04 11:26:18 -04:00
font-weight: 700;
}
h1 {
line-height: 2.125rem;
2015-09-24 19:27:50 -04:00
font-size: 1.625rem;
}
2015-09-04 11:26:18 -04:00
h4 {
line-height: 1.1rem;
2015-09-24 19:27:50 -04:00
font-size: 1.0rem;
2015-09-04 11:26:18 -04:00
}
/* Links */
2015-09-24 19:27:50 -04:00
a:link,
a:visited,
a:active {
2015-09-04 11:26:18 -04:00
text-decoration: none;
color: $link-blue;
2015-09-04 11:26:18 -04:00
}
a:hover {
text-decoration: underline;
}
/* Adds Red outline to Links with no href */
a[href=""] {
$fail-red: #ff0000;
outline: 1px solid $fail-red;
}
2015-09-04 11:26:18 -04:00
/* Classes */
.inner {
margin: 0 auto;
2015-09-24 19:27:50 -04:00
width: 942px;
2015-09-04 11:26:18 -04:00
}
#view {
2015-09-06 19:18:53 -04:00
/* NOTE: Margin should match height in navigation.scss */
2015-09-21 09:18:00 -04:00
margin-top: 50px;
2015-09-24 19:27:50 -04:00
padding: 20px 0;
min-height: 768px;
2015-09-11 16:33:52 -04:00
}