-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
126 lines (104 loc) · 1.95 KB
/
style.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*!
Theme Name: Metal & Coffee
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Metal DJ, Coffee Lover, Web Developer
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 7.3
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: metalandcoffee
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.
metalandcoffee is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
// Colors.
$background: #16111c;
$fontColor: #fff;
// Global.
html {
font-size: 100%;
}
body {
font-family: "Raleway", sans-serif;
color: $fontColor;
background-color: $background;
margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin-top: 0;
font-family: "Rajdhani", sans-serif;
}
h1 {
font-size: 4rem;
}
h2 {
font-size: 3.5rem;
}
h3 {
font-size: 3rem;
}
h4 {
font-size: 2rem;
}
h5 {
font-size: 1.5rem;
}
h6 {
font-size: 1rem;
}
a {
color: $fontColor;
text-decoration: none;
letter-spacing: 0.9px;
}
.menu {
list-style: none;
a {
font-family: "Rajdhani", sans-serif;
text-transform: uppercase;
}
}
// Navigation.
#masthead {
display: flex;
justify-content: space-between;
padding: 32px 150px;
.main-navigation {
display: flex;
align-items: center;
}
.menu {
display: grid;
grid-auto-flow: column;
grid-column-gap: 50px;
}
}
// Hero.
.hero {
min-height: 500px;
position: relative;
.overlay {
backdrop-filter: blur(28px);
-webkit-backdrop-filter: blur(28px);
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
}
.content {
position: relative;
}
}