mirror of
https://github.com/seigler/dash-website
synced 2025-07-26 23:06:09 +00:00
80 lines
1.1 KiB
SCSS
80 lines
1.1 KiB
SCSS
---
|
|
# this ensures Jekyll reads the file to be transformed into CSS later
|
|
# only Main files contain this front matter, not partials.
|
|
---
|
|
|
|
@import "colors";
|
|
@import "typography";
|
|
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
color: $black;
|
|
background-color: $white;
|
|
font-family: 'Helvetica Neue', Helvetica, Arial, Sans-Serif;
|
|
font-size: 14px;
|
|
line-height: 22px;
|
|
}
|
|
|
|
.content {
|
|
width: 1280px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.col {
|
|
float: left
|
|
}
|
|
|
|
.clear {
|
|
clear: both;
|
|
display: block;
|
|
}
|
|
|
|
.right {
|
|
float: right;
|
|
display: inline-block;
|
|
}
|
|
|
|
.left {
|
|
float: left;
|
|
display: inline-block;
|
|
}
|
|
|
|
.button_container {
|
|
display: none;
|
|
}
|
|
|
|
img.staff {
|
|
max-width: 100px;
|
|
float: left;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
a.blog_link {
|
|
text-align:right;
|
|
}
|
|
|
|
.img-circle {
|
|
margin: 1px;
|
|
border:1px solid #dddddd;
|
|
border-radius: 50%;
|
|
-webkit-border-radius: 50%;
|
|
-moz-border-radius: 50%;
|
|
}
|
|
|
|
@import "nav";
|
|
@import "buttons";
|
|
@import "forms";
|
|
@import "footer";
|
|
@import "overlay-menu";
|
|
@import "video";
|
|
@import "home";
|
|
@import "interior";
|
|
@import "post";
|
|
@import "header";
|
|
|
|
@import "1024";
|
|
@import "768";
|
|
@import "640";
|
|
@import "480";
|