-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbackground.css
More file actions
67 lines (56 loc) · 1.19 KB
/
background.css
File metadata and controls
67 lines (56 loc) · 1.19 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
67
section#splash {
background: linear-gradient(180deg, #102330, #1d4963);
}
.ellipse {
clip-path: ellipse(120% 100% at 50% 100%);
}
@media (max-width: 1280px) {
.ellipse {
clip-path: ellipse(140% 100% at 50% 100%);
}
}
@media (max-width: 1024px) {
.ellipse {
clip-path: ellipse(160% 100% at 50% 100%);
}
}
@media (max-width: 768px) {
.ellipse {
clip-path: ellipse(250% 100% at 50% 100%);
}
}
section#about {
position: relative;
overflow: hidden;
margin-top: -15rem;
min-height: 80rem;
padding-bottom: 15rem;
background: linear-gradient(180deg, #3a7ea0 38%, #968b69);
}
section#faqs {
margin-top: -15rem;
padding-bottom: 5rem;
position: relative;
#background {
background: linear-gradient(180deg, #216782, #306379);
position: absolute;
height: 75rem;
min-height: 100%;
width: 100%;
}
}
section#sponsors {
background: linear-gradient(180deg, #306379, #175a82 50%, #196798);
}
section#guilds {
background: linear-gradient(180deg, #196798, #3983ab);
}
section#gallery {
background: linear-gradient(180deg, #3983ab, #73afc5);
}
section#teams {
background: linear-gradient(180deg, #73afc5, #89c4d9);
}
footer {
background: #89c4d9;
}