forked from GDGCampusAEC/gdsc-aec-static
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
207 lines (172 loc) · 3.23 KB
/
styles.css
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
html,
body {
width: 100%;
height: 100%;
scroll-behavior: smooth;
}
/* Global Variables */
:root {
--red: #EA4335;
--green: #34A853;
--blue: #4285F4;
--yellow: #FBC005;
}
/* Navabar */
/* .logo img {
max-width: 100px;
mix-blend-mode: darken;
}
.logo a {
color: #000;
text-decoration: none;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.menu {
display: flex;
gap: 80px;
padding: 20px 60px;
border-radius: 200px;
font-weight: 400;
background-color: #fff;
box-shadow: 0px 0px 20px 0px rgb(0, 0, 0, 0.2);
}
.menu a {
text-decoration: none;
color: #333;
font-size: 1.5rem;
}
.menu a:hover {
text-decoration: underline;
}
nav {
margin: 0 auto;
}
header {
display: flex;
align-items: center;
padding: 30px 80px;
} */
/* Hero Section */
#hero {
padding: 30px 0;
display: flex;
flex-direction: column;
}
.hero--image {
display: flex;
align-items: center;
justify-content: center;
}
.hero--image img {
/* width: 70%; */
max-width: 1536px;
height: auto;
/* margin: 0 auto; */
}
.hero--content {
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
gap: 50px;
margin: 50px 0;
}
.hero--content h1 {
font-size: 3rem;
}
.hero--content p {
font-size: 1.5rem;
}
.hero--button {
text-decoration: none;
border-radius: 4px;
font-size: 1rem;
background-color: var(--blue);
color: white;
padding: 10px 30px;
max-width: 250px;
}
.hero--button:hover {
opacity: 0.9;
}
.hero--text h1{
font-weight: 600;
transition:0.5s;
text-shadow: 0 0 2px #000;
}
.hero--text h1:hover{
-webkit-text-stroke: 2px #edeced;
color: transparent;
}
#about h2{
text-align: center;
}
#events h2{
text-align: center;
}
#team h2{
text-align: center;
}
#contact {
text-align: center;
box-shadow: rgba(102, 104, 127, 0.37) 8px 10px 32px 0px;
backdrop-filter: blur( 24.5px );
background: moccasin;
border-radius: 30px;
border: 1px solid #edeced;
display: block;
margin: 4vw 20vw 2vw 20vw;
}
#contact h2{
font-weight: 600;
transition:0.5s;
text-shadow: 0 0 2px #000;
}
#contact h2:hover{
-webkit-text-stroke: 2px #edeced;
color: transparent;
}
form input {
text-align: center;
display: block;
border-radius: 20px;
border-color: aliceblue;
margin: 0 auto 10px;
width: 20vw;
}
form textarea{
text-align: center;
display: block;
border-radius: 20px;
border-color: aliceblue;
margin: 0 auto 10px;
width: 40vw;
}
form button{
text-align: center;
display: block;
border-radius: 10px;
border-color: aliceblue;
margin: 0 auto 10px;
width: 100px;
font-weight: 200;
transition:0.5s;
text-shadow: 0 0 2px #000;
}
form button:hover{
-webkit-text-stroke: 2px #090709;
color: transparent;
}
footer #footer_bg {
background: url("https://im.ezgif.com/tmp/ezgif-1-e73e6eec5b.gif") no-repeat scroll center 0;
position: bottom;
bottom:0;
width: 100vw center;
height:15vw;
}