-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapply.module.css
More file actions
59 lines (52 loc) · 1004 Bytes
/
apply.module.css
File metadata and controls
59 lines (52 loc) · 1004 Bytes
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
/* Shared Styles */
.content {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex-grow: 1;
margin: 0 5rem;
}
.heroContent {
display: flex;
flex-direction: row;
}
.heroHeadingContainer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-width: 500px;
margin-right: 2rem;
}
.heroSection {
display: flex;
flex-direction: column;
color: #fff;
background: #000;
background: linear-gradient(248.66deg, #010242 0%, #0f1011 100%);
overflow: hidden;
flex-grow: 1;
}
/* TABLET LARGE SIZE */
@media only screen and (max-width: 1023px) {
.content {
margin: 150px 3rem;
}
.heroContent {
flex-direction: column;
justify-content: center;
align-items: center;
}
.heroHeadingContainer {
text-align: center;
margin-right: 0;
margin-bottom: 2rem;
}
}
/* Mobile Size */
@media only screen and (max-width: 449px) {
.content {
margin: 140px 1rem;
}
}