aboutsummaryrefslogtreecommitdiff
path: root/assets/css/main.sass
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/main.sass')
-rw-r--r--assets/css/main.sass81
1 files changed, 81 insertions, 0 deletions
diff --git a/assets/css/main.sass b/assets/css/main.sass
new file mode 100644
index 0000000..39cd30c
--- /dev/null
+++ b/assets/css/main.sass
@@ -0,0 +1,81 @@
+/**
+ * Design of the Netflix Stats Generator
+ * @author Marvin Borner
+ * @copyright Marvin Borner 2018
+ */
+
+/**
+ * General
+ */
+
+$BlueColor: #1e3264
+
+body
+ font-family: "Varela Round", sans-serif !important
+ text-rendering: optimizeLegibility !important
+ box-sizing: border-box !important
+
+
+.Main
+ // display: none
+ min-height: 100vh
+
+
+/**
+ * General headers
+ */
+
+.SectionHeader
+ display: flex
+ justify-content: center
+ align-items: center
+ align-content: space-between
+ width: 100%
+
+
+.SectionHeader h1
+ text-transform: capitalize
+
+
+/**
+ * Gradients
+ */
+
+.GradientBackground
+ %Gradient
+ position: fixed
+ top: 0
+ left: 0
+ z-index: -1
+ transition: opacity 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s
+ width: 100%
+ height: 100vh
+
+
+ .Color:not(.Active)
+ display: none
+
+
+ .GreenBlue
+ background: linear-gradient(145deg, #c3f0c8, #509bf5)
+ @extend %Gradient
+
+
+ .OrangePink
+ background: linear-gradient(145deg, #ffc867, #f037a6)
+ @extend %Gradient
+
+
+ .GreenBlue
+ background: linear-gradient(145deg, #c3f0c8, #509bf5)
+ @extend %Gradient
+
+
+
+/**
+ * Favorites
+ */
+
+.FavoritesSection .SectionHeader
+ height: 40vh
+ color: $BlueColor \ No newline at end of file