-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeader.scss
49 lines (42 loc) · 1004 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
@use 'App';
header {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
margin-top: 0.5rem;
.headline-container {
position: relative;
display: flex;
flex-direction: column;
.stroke-underline {
// noinspection Stylelint
@extend .stroke-common;
left: 100%;
opacity: 1;
translate: -100% 300%;
bottom: 0;
height: 10%;
position: absolute;
transform: translateX(0);
}
}
h3 {
margin-top: 1.5rem;
margin-bottom: 0.4rem;
}
}
@media (width <= 650px), (height <= 650px) {
header {
h1 {
margin-top: 3.0rem;
}
h3 {
margin-top: 2rem;
margin-bottom: 1rem;
line-height: 1.3em;
font-size: 1.1rem;
width: 90%;
}
}
}