-
-
Notifications
You must be signed in to change notification settings - Fork 778
/
_containers.scss
128 lines (108 loc) · 2.16 KB
/
_containers.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
127
128
.header-container {
background: $color-white;
padding: 64px;
height: fit-content;
margin: 61px auto 0;
text-align: center;
justify-content: center;
.header-text {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-right: 5rem;
h1 {
margin-bottom: 38px;
}
p {
font-size: 1.125rem;
max-width: 508px;
text-align: left;
margin-bottom: 0
}
.sub-p {
margin-top: 1rem;
width: 100%;
}
}
.header-hero-image {
height: 240px;
width: auto;
align-self: center;
}
@media #{$bp-below-desktop} {
flex-flow: column;
.header-text {
margin-right: 0;
p {
margin-bottom: 16px;
}
}
.header-hero-image {
margin-top: 20px;
}
}
@media #{$bp-below-tablet} {
flex-flow: column;
padding: 32px;
margin: 54px auto 0;
.header-text {
margin-right: 0;
h1 {
margin-bottom: 28px;
}
p {
max-width: 300px;
line-height: 1.5rem;
}
}
.header-hero-image {
height: 155px;
}
}
}
.flex-container {
display: flex;
flex-direction: column;
}
.header-container--projscredits {
display: flex;
flex-direction: row;
justify-content: center;
padding: 64px;
img {
max-height: 240px;
}
@media #{$bp-below-tablet}{
img {
max-height: 170px;
}
}
@media #{$bp-below-mobile} {
flex-direction: column;
align-items: center;
padding: 32px;
}
}
.projscredits-text-margin {
display: flex;
flex-direction: column;
margin-right: 80px;
p {
font-size: 18px;
max-width: 508px;
margin-top: 8px;
text-align: left;
}
h1 {
font-size: 48px;
}
@media #{$bp-below-mobile} {
margin: auto;
margin-bottom: 36px;
h1 {
font-size: 24px;
margin-bottom: 20px;
}
}
}