40 lines
No EOL
732 B
SCSS
40 lines
No EOL
732 B
SCSS
@charset "utf-8";
|
|
|
|
@import "normalize";
|
|
@import "compass";
|
|
|
|
body {
|
|
background: #d4d4d4 image-url("background.png");
|
|
text-align: center;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
h1 {
|
|
color: rgba(black, .3);
|
|
font-weight: bold;
|
|
@include adjust-font-size-to(32px);
|
|
letter-spacing: -1px;
|
|
text-transform: uppercase;
|
|
text-shadow: 0 1px 0 rgba(white, .5);
|
|
background: image-url("middleman.png") no-repeat center 100px;
|
|
padding: 350px 0 10px;
|
|
margin: 0;
|
|
}
|
|
|
|
.doc {
|
|
@include adjust-font-size-to(14px);
|
|
margin: 0;
|
|
&:before,
|
|
&:after {
|
|
opacity: .2;
|
|
padding: 6px;
|
|
font-style: normal;
|
|
position: relative;
|
|
content: "•";
|
|
}
|
|
a {
|
|
@include link-colors( rgba( black, .3 ) , #666);
|
|
}
|
|
}
|
|
|
|
@import "animate"; |