-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathApply.css
More file actions
66 lines (58 loc) · 1.11 KB
/
Apply.css
File metadata and controls
66 lines (58 loc) · 1.11 KB
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
.apply-banner {
position: relative;
width: 100%;
min-height: 600px;
overflow: hidden;
display: flex;
flex-wrap: wrap;
margin-top: 60px;
}
.apply-banner-bg {
position: absolute;
filter: brightness(25%) blur(4px);
inset: 0;
background-image: url('/img/applyBanner.jpg');
background-size: cover;
background-position: center;
mask-image: linear-gradient(transparent 5%, black 50%, transparent 95%);
z-index: 0;
pointer-events: none;
}
.apply-banner-content {
padding: 5% 0;
display: flex;
flex-direction: row;
position: relative;
z-index: 1;
margin: auto;
width: 100vw;
flex-wrap: wrap;
gap: 30px 90px;
justify-content: center
}
.apply-banner-grid {
display: flex;
flex-wrap: wrap;
padding: 0 min(5%, 60px);
justify-content: center;
}
.apply-banner-col {
width: 100%;
max-width: 480px;
padding-right: 30px;
}
.apply-banner-card {
margin-bottom: min(10%, 60px);
min-height: 150px;
}
.apply-banner-title {
text-align: center;
}
@media (max-width: 768px) {
.apply-banner-card {
min-height: 0px;
}
.apply-banner-title {
font-size: 2.7rem !important;
}
}