aboutsummaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorGravatar Barry Clark <barry@barryclark.co> 2014-02-17 10:07:14 -0500
committerGravatar Barry Clark <barry@barryclark.co> 2014-02-17 10:07:14 -0500
commit9931bd1ed25bf92afcc7782269281169ebceb578 (patch)
tree921d9200a7012c920529f7e6b9f88334ca0d2791 /scss
parentdb4dceaba5b629fa0ff6769c448f87febb2b6af3 (diff)
downloadkompetenzbolzen.github.io-9931bd1ed25bf92afcc7782269281169ebceb578.tar.gz
First pass at masthead styling.
Diffstat (limited to 'scss')
-rwxr-xr-xscss/style.scss52
1 files changed, 39 insertions, 13 deletions
diff --git a/scss/style.scss b/scss/style.scss
index 6b13419..29b4a0e 100755
--- a/scss/style.scss
+++ b/scss/style.scss
@@ -105,21 +105,46 @@ img {
// LAYOUT / SECTIONS
//
-.logo {
+//
+// .masthead
+//
+
+.masthead {
+ margin: 20px 0 70px;
+ padding-bottom: 20px;
+ border-bottom: 2px solid $darkGray;
+}
+
+.avatar {
float: left;
+ width: 35px;
- a {
+ margin-right: 10px;
+ border-radius: 5px;
+}
+
+.site-name {
+ float: left;
+
+ font-family: $helveticaNeue;
+ font-weight: 300;
+ font-size: 24px;
+ letter-spacing: 1px;
+ @include mobile {
+ font-size: 22px;
+ }
+
+ text-decoration: none;
+ cursor: pointer;
+ color: $darkGray;
+ &:hover, &:active {
text-decoration: none;
- cursor: pointer;
- color: $darkGray;
- &:hover, &:active {
- color: $blue;
- }
}
}
-.avatar {
- border-radius: 6px;
+.site-description {
+ float: left;
+ display: none;
}
nav {
@@ -137,15 +162,12 @@ nav {
text-align: right;
font-weight: 300;
letter-spacing: 1px;
- color: $gray;
+ color: $darkGray;
&:hover, &:active {
text-decoration: none;
cursor: pointer;
color: $darkGray;
- &:hover, &:active {
- color: $blue;
- }
}
}
}
@@ -158,6 +180,10 @@ nav {
}
}
+//
+// .main
+//
+
.posts > .post {
padding-bottom: 2em;
border-bottom: 1px solid $lighterGray;