net/_sass/_style.scss

133 lines
3.2 KiB
SCSS
Raw Normal View History

2013-11-10 12:47:03 -05:00
body {
color: #343434;
background: #ffffff;
font-family: $serif;
a { text-decoration: none; }
2013-11-19 14:33:35 -05:00
h1 {
font-family: $typewriter;
}
img.left {
float: left;
margin: 0 1em 1em 0;
}
img.right {
float: right;
margin: 0 0 1em 1em;
}
2013-11-10 12:47:03 -05:00
.container {
2014-10-06 22:27:20 -04:00
@include outer-container;
2013-11-10 12:47:03 -05:00
#header {
header {
2014-10-06 22:27:20 -04:00
@include span-columns(2);
2013-11-10 12:47:03 -05:00
h1 {
a {
color: #343434;
}
}
2014-10-06 22:27:20 -04:00
@include media($mobile) {
@include span-columns(4);
}
2013-11-10 12:47:03 -05:00
}
nav {
text-transform: uppercase;
2014-10-06 22:27:20 -04:00
line-height: 3em;
@include span-columns(6);
2013-11-10 12:47:03 -05:00
ul.navigation {
2014-10-06 22:27:20 -04:00
border-left: 1px solid #dedede;
padding-left: 1em;
2013-11-10 12:47:03 -05:00
li {
display: inline;
list-style-type: none;
padding: 0 1em 0 0;
a {
color: #303030;
}
}
}
2014-10-06 22:27:20 -04:00
@include media($mobile) {
@include span-columns(4);
line-height: 1em;
ul.navigation {
border-left: 4px solid #dedede;
padding-left: 0.5em;
}
}
2013-11-10 12:47:03 -05:00
}
}
#main {
clear: both;
padding: 1em 0;
border-top: 1px solid #dedede;
article.hentry {
border-bottom: 1px #dedede solid;
}
article {
pre {
background: #000;
color: #fff;
padding: 0.5em;
overflow: auto;
}
.gist-file pre {
color: #000;
}
footer time {
2013-11-19 14:33:35 -05:00
margin-bottom: 1em;
2013-11-10 12:47:03 -05:00
display: block;
text-align: right;
}
}
article.list {
clear: both;
border-bottom: 1px solid #dedede;
line-height: 2;
2014-10-06 22:27:20 -04:00
time {
display: block;
float: left;
width: 8em;
color: #696969;
2013-11-10 12:47:03 -05:00
}
2014-10-06 22:27:20 -04:00
@include media($mobile) {
time {
display: none;
}
}
2013-11-10 12:47:03 -05:00
}
.vcard {
padding: 10px 0;
margin: 1em 0 0 0;
clear: both;
p {
margin: 0 0 0.5em 0;
}
img {
float: left;
margin: 0 0.5em 0 0;
border: 1px #dedede solid;
padding: 3px;
}
}
}
}
}