scratch-www/src/main.scss

91 lines
1.6 KiB
SCSS
Raw Normal View History

2015-09-04 11:26:18 -04:00
/* Tags */
html, body {
display: block;
margin: 0;
padding: 0;
color: #322f31;
background-color: #fdfdfd;
font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
/* Typography */
h1, h2, h3, h4 {
margin: 0;
padding: 0;
border: 0;
color: #554747;
font-weight: 700;
}
h1 {
font-size: 1.625rem;
line-height: 2.125rem;
}
2015-09-04 11:26:18 -04:00
h4 {
font-size: 1.0rem;
line-height: 1.1rem;
}
/* Links */
a:link, a:visited, a:active {
color: #1aa0d8;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Classes */
.inner {
width: 942px;
margin: 0 auto;
}
#view {
min-height: 768px;
padding: 10px 0;
2015-09-06 19:18:53 -04:00
/* NOTE: Margin should match height in navigation.scss */
2015-09-04 11:26:18 -04:00
margin-top: 35px;
}
2015-09-11 16:33:52 -04:00
/* Forms */
input {
height: 18px;
line-height: 18px;
display: inline-block;
padding: 4px;
margin-bottom: 9px;
font-size: 13px;
color: #555;
border: 1px solid #ccc;
border-radius: 3px;
box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
transition: border linear .2s,box-shadow linear .2s;
}
button {
cursor: pointer;
line-height: 30px;
border: 1px solid #eee;
border-radius: 5px;
box-shadow: inset 0 1px 0 rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.05);
transition: all .25s ease-in-out;
height: 32px;
text-shadow: 0 1px #fff;
font-weight: normal;
color: #666;
border-color: #999;
display: inline-block;
background: linear-gradient(to bottom, #fff, #ccc)
}
button:hover {
background-image: linear-gradient(#e6e6e6,#e6e6e6);
}