summaryrefslogtreecommitdiff
path: root/design/sass
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2015-12-29 11:23:03 -0500
committerluxagraf <sng@luxagraf.net>2015-12-29 11:23:03 -0500
commit7e2b10570efea86e6aab9594f400e8679a40640d (patch)
tree88778a86763fa981dc7610c9c20a674b91d43d51 /design/sass
parenta545739162f6245650971ee2e6759ab2b68d3e9e (diff)
Cleaned up the figments template and added some style to hr tags
Diffstat (limited to 'design/sass')
-rw-r--r--design/sass/_figments.scss11
1 files changed, 11 insertions, 0 deletions
diff --git a/design/sass/_figments.scss b/design/sass/_figments.scss
index b1d67d0..b7f54a2 100644
--- a/design/sass/_figments.scss
+++ b/design/sass/_figments.scss
@@ -34,3 +34,14 @@
@include fontsize(18);
}
}
+.figments hr {
+ @include constrain_narrow;
+ border: 0;
+ margin-top: 2em;
+ margin-bottom: 2em;
+ height: 1px;
+ background: -webkit-linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0));
+ background: -moz-linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0));
+ background: -o-linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0));
+ background: linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0));
+}