-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_header.scss
53 lines (44 loc) · 896 Bytes
/
_header.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
.header {
background: black;
color: white;
position: relative;
min-height: 450px;
padding: 16px 8px;
display: flex;
text-align: center;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
z-index: 5;
&__logo {
width: 130px;
position: relative;
}
&__titles {
position: relative;
max-width: 800px;
margin: 20px;
text-shadow: 1px 1px 7px #56CCF2;
}
&__title {
font-size: 48px;
line-height: 1.1;
}
&__subtitle {
font-size: 22px;
}
@media(min-width: 768px) {
flex-direction: row;
&__logo {
width: 160px;
margin-right: 10px;
}
&__title {
font-size: 60px;
}
&__subtitle {
font-size: 30px;
}
}
}