summaryrefslogtreecommitdiffstats
path: root/scss/style.scss
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-04-06 23:41:02 -0400
committerrsiddharth <s@ricketyspace.net>2019-04-06 23:41:02 -0400
commit5218287eb4ff6f8438d07cca308c20b4a7d1e9c5 (patch)
tree7771d0b76414cf8174f3f174daf115f500668474 /scss/style.scss
parentdeb3ab147d19ccec7eadbbf2d7e316afb733ba83 (diff)
Add scss/_all.scss, scss/style.scss.
Diffstat (limited to 'scss/style.scss')
-rw-r--r--scss/style.scss49
1 files changed, 49 insertions, 0 deletions
diff --git a/scss/style.scss b/scss/style.scss
new file mode 100644
index 0000000..5b9b6a9
--- /dev/null
+++ b/scss/style.scss
@@ -0,0 +1,49 @@
+// Mixins.
+
+@mixin block-border($width) {
+ border: $width solid $fsfi-dbrown;
+ padding: 5px 20px 15px 20px;
+}
+
+// Home - Banner
+
+@mixin banner-p-margin-top($pixels) {
+ p.banner-text {
+ margin-top: $pixels;
+ }
+}
+
+@include mobile {
+ img.banner-img {
+ display: none;
+ }
+}
+
+@include tablet-only {
+ @include banner-p-margin-top(50px);
+}
+
+@include desktop {
+ @include banner-p-margin-top(60px);
+}
+
+
+// Home - News, Articles.
+
+.news,
+.articles {
+ .wrapper { @include block-border(2px); }
+
+ a {
+ color: $black;
+ }
+ a:hover {
+ color: $fsfi-dbrown;
+ }
+
+ .title span {
+ color: $fsfi-dbrown;
+ font-size: 1.3rem;
+ text-transform: uppercase;
+ }
+}