-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathThemedPageHeader.module.scss
93 lines (79 loc) · 1.66 KB
/
ThemedPageHeader.module.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
@use 'common' as common;
.themedPageHeader {
display: flex;
justify-content: center;
background-color: white;
padding-top: 1.25rem;
padding-bottom: 1.25rem;
border-bottom: 4px solid transparent;
@include common.full-width-mixin;
&.situation {
border-bottom-color: var(--a-orange-500);
}
&.product {
border-bottom-color: var(--a-green-500);
}
&.guide {
border-bottom-color: var(--a-lightblue-500);
}
&.themedpage {
border-bottom-color: var(--a-limegreen-500);
}
&.tool {
border-bottom-color: var(--a-deepblue-500);
}
&.intermediateStep {
border-bottom-color: var(--a-deepblue-300);
}
&.overview {
border-bottom-color: var(--a-red-100);
}
&.generic {
border-bottom-color: var(--a-gray-600);
}
@media #{common.$mq-screen-mobile} {
padding-left: 1rem;
padding-right: 1rem;
.illustration {
display: none;
}
}
}
.header {
padding: 0 0 1.25rem 0;
margin: 0 auto;
}
.illustration {
width: 5rem;
height: 5rem;
margin-right: 2rem;
pointer-events: none;
}
.text {
width: 100%;
max-width: 63.5rem;
}
.taglineWrapper {
display: flex;
flex-wrap: wrap;
align-items: center;
@media #{common.$mq-screen-mobile} {
flex-direction: column;
align-items: stretch;
}
}
.taglineLabel {
@media #{common.$mq-screen-mobile} {
margin-bottom: 0.5rem;
}
}
.divider {
padding: 0 1rem;
@media #{common.$mq-screen-mobile} {
display: none;
}
}
.divider,
.modifiedLabel {
color: common.$a-gray-700;
}