summaryrefslogtreecommitdiffstats
path: root/scss/style.scss
diff options
context:
space:
mode:
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;
+ }
+}