-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
255 lines (220 loc) · 5.58 KB
/
style.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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #bbc9e9; /* Light gray background */
color: #482a2a; /* Dark text color */
}
header {
background-color: #bbc9e9;
color: #fff;
padding: 10px 0;
}
.user-actions {
position: absolute;
top: 10px;
right: 10px;
}
.user-actions {
position: absolute;
top: 10px;
right: 10px;
margin-top: 20px;
}
.user-actions a {
display: inline-block;
background-color: #23527c; /* Blue background color */
color: #fff; /* White text color */
padding: 10px 20px;
border-radius: 20px; /* Add round corners */
text-decoration: none;
font-weight: bold;
margin-left: 10px;
transition: background-color 0.3s, color 0.3s;
}
.user-actions a:hover {
background-color: #ff6600; /* Slightly darker blue on hover */
}
/* Navigation styles */
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center; /* Align titles to the left */
margin-bottom: 10px;
}
nav ul li {
display: inline;
margin-right: 70px;
font-size: x-large;
}
nav ul li a {
text-decoration: none;
color: #626d77; /* Subdued blue text color */
font-weight: bold;
transition: color 0.3s;
}
nav ul li a:hover {
color: #ff6600; /* Slightly darker blue on hover */
}
.logo img {
width: 50px;
height: 50px;
margin-left: 70px;
margin-top: 30px;
}
/* Hero section styles */
.hero {
background-image: url('hero-image.jpg');
background-size: cover;
text-align: center;
padding: 100px;
color: #fff;
background-color: rgba(43, 88, 85, 0.6);
}
.hero h1 {
font-size: 36px;
margin: 10px 0;
color: #dae5ef; /* Subdued blue text color for the heading */
}
.hero p {
font-size: 20px;
margin: 0;
}
/* Common styles for sections */
.events, .blog, .recent-events, .ticketing-system, .internship {
background-color: #fff;
padding: 20px;
margin: 20px 0;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.event {
display: flex;
background-color: #f4f4f4;
padding: 20px;
margin: 10px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.event-image {
flex: 1;
padding: 10px;
}
.event-image img {
max-width: 100%;
height: auto;
border-radius: 10px;
}
.event-details {
flex: 3;
padding: 10px;
}
.register-button {
background-color: #23527c; /* Orange background */
color: #fff; /* White text color */
padding: 10px 20px;
border: none;
border-radius: 20px; /* Rounded corners */
cursor: pointer;
font-weight: bold;
transition: background-color 0.3s, color 0.3s;
}
.register-button:hover {
background-color:#ff9900; /* Blue background on hover */
}
.view-button {
background-color: #23527c; /* Orange background */
color: #fff; /* White text color */
padding: 10px 20px;
border: none;
border-radius: 20px; /* Rounded corners */
cursor: pointer;
font-weight: bold;
transition: background-color 0.3s, color 0.3s;
}
.view-button:hover {
background-color:#ff9900; /* Blue background on hover */
}
.events h2, .blog h2, .recent-events h2, .ticketing-system h2, .internship h2 {
color: #333;
}
/* Styles for the registration section */
.registration {
background-color: #337ab7; /* Subdued blue background */
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.registration h2 {
color: #333;
}
.registration-button {
background-color: #ff9900; /* Orange background */
color: #fff; /* White text color */
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
margin-right: 10px;
font-weight: bold;
transition: background-color 0.3s, color 0.3s;
}
.registration-button:hover {
background-color: #ff6600; /* Slightly darker orange background on hover */
}
/* Styles for the bottom box section */
.bottom-box {
background-color: #f4f4f4; /* Light gray background for the bottom box */
color: #333; /* Dark text color */
padding: 20px;
display: flex;
justify-content: space-between;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
footer {
background-color: #f4f4f4; /* Light gray background for the bottom box */
color: #333; /* Dark text color */
padding: 20px;
text-align: center;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.social-links {
margin: 0 auto;
}
.social-links h3 {
font-size: 20px;
margin-bottom: 10px;
color: #333; /* Dark text color for headings */
}
.social-links a {
font-size: 18px;
text-decoration: none;
color: #333; /* Dark text color */
transition: color 0.3s;
}
.social-links a:hover {
color: #ff6600; /* Blue text color on hover */
}
/* Add styles for user-actions buttons */
.user-actions {
position: absolute;
top: 10px;
right: 10px;
}
.user-actions a {
display: inline-block;
background-color: #23527c; /* Blue background color */
color: #fff; /* White text color */
padding: 10px 20px;
border-radius: 20px; /* Add round corners */
text-decoration: none;
font-weight: bold;
margin-left: 10px;
transition: background-color 0.3s, color 0.3s;
}
.user-actions a:hover {
background-color: #ff6600; /* Slightly darker blue on hover */
}