diff options
author | Marvin Borner | 2018-06-23 00:34:53 +0200 |
---|---|---|
committer | Marvin Borner | 2018-06-23 00:34:53 +0200 |
commit | da86ff8e2680cbaf75976fbf492b70d50c863563 (patch) | |
tree | 482db24595454ca56bc97e4f10d28bd46924d868 /assets | |
parent | f6d58059ece646013787cd9b24cebabb2302a33b (diff) |
Began some designing
Diffstat (limited to 'assets')
-rwxr-xr-x | assets/css/main.css | 69 |
1 files changed, 66 insertions, 3 deletions
diff --git a/assets/css/main.css b/assets/css/main.css index d1de6f3..aa51cdd 100755 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -4,12 +4,75 @@ * @copyright Marvin Borner 2018 */ +/** + * General + */ + +:root { + --BlueColor: #1e3264; +} body { - font-family: 'Share Tech Mono', regular !important; + 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>* { + position: fixed; + top: 0; + left: 0; + z-index: -1; + transition: opacity 1.5s cubic-bezier(.445, .05, .55, .95) 0s; + width: 100%; + height: 100vh; +} + +.GradientBackground .Color:not(.Active) { + display: none; +} + +.GradientBackground .GreenBlue { + background: linear-gradient(145deg, #c3f0c8, #509bf5); } -h1 { - +.GradientBackground .OrangePink { + background: linear-gradient(145deg, #ffc867, #f037a6); +} + +.GradientBackground .GreenBlue { + background: linear-gradient(145deg, #c3f0c8, #509bf5); +} + +/** + * Favorites + */ + +.FavoritesSection .SectionHeader { + height: 40vh; + color: var(--BlueColor); }
\ No newline at end of file |