-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
139 lines (116 loc) · 2.67 KB
/
Copy pathstyle.css
File metadata and controls
139 lines (116 loc) · 2.67 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
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
129
130
131
132
133
134
135
136
137
138
139
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
background-color: #264653;
height: fit-content;
width: 100%;
padding-left: 100px;
padding-right: 100px;
}
.container {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: fit-content;
width: 100%;
padding: 15px 50px 50px 50px;
}
.titleSection {
text-align: center;
height: fit-content;
width: 100%;
padding: 15px;
padding-top: 50px;
}
.titleSection h1 {
background: linear-gradient(#ff9f1c, #e9c46a);
font-size: 72px;
line-height: 75px;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.titleSection p {
font-weight: 600;
color: #c9d5ee;
}
.inputSection, .secondInputSection, .thirdInputSection {
height: fit-content;
width: 100%;
text-align: center;
padding-top: 25px;
display: flex;
justify-content: center;
align-items: center;
}
.thirdInputSection {
width: 44.2%;
flex-direction: column;
}
.thirdInputSection h2 {
color: #fff;
margin-right: 20px;
text-transform: uppercase;
}
.inputSection input, .inputSection button, .secondInputSection input, .secondInputSection button {
padding: 13px 20px;
outline: none;
border: none;
border-radius: 3px;
margin: 3px;
}
.inputSection input {
width: 40%;
}
.inputSection button, .secondInputSection button {
width: 15%;
cursor: pointer;
background-color: #2a9d8f;
color: #fff;
font-weight: bold;
transition: 0.4s ease;
}
.inputSection button:hover, .secondInputSection button:hover {
opacity: 0.7;
}
.secondInputSection #start_date, .secondInputSection #end_date {
width: 19.8%;
}
.mediaContainer {
height: fit-content;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin-top: 50px;
}
.mediaContainer img, .mediaContainer iframe {
width: 80%;
height: 500px;
margin-top: 15px;
}
.mediaContainer iframe {
border: none;
}
.mediaContainer h2 {
color: #fff;
text-transform: uppercase;
text-align: center;
}
.mediaContainer p {
width: 80%;
margin-top: 15px;
color: #e7e8eb;
font-weight: 400;
margin-bottom: 55px;
text-align: center;
}