-
Notifications
You must be signed in to change notification settings - Fork 0
/
agenda.html
253 lines (225 loc) · 6.28 KB
/
agenda.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>#TalkingBIG Ep2</title>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Lato', sans-serif;
background-color: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
padding: 20px;
background-image: url('bg.png');
background-size: cover;
background-position: center;
}
.container {
max-width: 900px;
text-align: center;
padding: 40px;
border: 2px solid #000;
background-color: #fff;
width: 100%; /* Responsive container width */
background-image: url('bg.png');
background-size: cover;
background-position: center;
}
.first {
text-align: left; /* Align text to the left */
padding: 20px;
}
h1 {
font-family: 'Montserrat', sans-serif;
font-size: 48px;
margin-bottom: 10px;
font-weight: bold;
}
.small-text {
font-size: 70%; /* Adjust percentage to your desired size */
font-weight: 500;
}
.subtitle {
font-family: 'Lato', sans-serif;
font-size: 24px;
margin-bottom: 10px;
font-weight: 400;
}
.description {
font-family: 'Lato', sans-serif;
font-size: 16px;
margin-bottom: 30px;
}
.event-details p {
margin-bottom: 5px;
font-size: 16px;
}
.agenda-header {
font-family: 'Montserrat', sans-serif;
font-size: 36px;
margin-top: 40px;
margin-bottom: 20px;
font-weight: bold;
background-color: #000;
color: #fff;
padding: 10px 0;
width: calc(100% + 80px); /* Increase width beyond container's padding */
margin-left: -40px; /* Move it to the left by the padding amount */
margin-right: -40px; /* Move it to the right by the padding amount */
text-align: center;
box-sizing: border-box;
}
.agenda {
text-align: left;
font-family: 'Lato', sans-serif;
font-size: 18px;
line-height: 1.8;
margin-bottom: 40px;
}
.agenda-item {
margin-bottom: 15px;
}
.agenda-topic {
display: block; /* This makes the second part of the text start on a new line */
margin-left: 59px; /* Adjust to align with your desired indentation */
}
.footer {
font-family: 'Lato', sans-serif;
font-size: 12px;
margin-top: 30px;
text-align: center;
}
.back-home button {
font-family: 'Lato', sans-serif;
font-size: 16px;
padding: 10px 20px;
background-color: #000;
color: #fff;
border: none;
cursor: pointer;
margin-top: 20px;
}
.back-home button:hover {
background-color: #333;
}
/* Media Queries for Responsiveness */
/* For mobile phones */
@media (max-width: 600px) {
h1 {
font-size: 32px;
}
.subtitle {
font-size: 18px;
}
.description {
font-size: 14px;
}
.agenda-header {
font-size: 28px;
}
.agenda {
font-size: 16px;
}
.agenda-topic {
display: block; /* This makes the second part of the text start on a new line */
margin-left: 53px; /* Adjust to align with your desired indentation */
}
.event-details p {
font-size: 14px;
}
.footer {
font-size: 10px;
}
.container {
padding: 20px; /* Reduce padding for small screens */
}
}
/* For tablets */
@media (max-width: 900px) {
h1 {
font-size: 40px;
}
.subtitle {
font-size: 20px;
}
.description {
font-size: 14px;
}
.agenda-header {
font-size: 32px;
}
.agenda {
font-size: 16px;
}
.agenda-topic {
display: block; /* This makes the second part of the text start on a new line */
margin-left: 53px; /* Adjust to align with your desired indentation */
}
.event-details p {
font-size: 14px;
}
.footer {
font-size: 11px;
}
}
@media (max-width: 480px) {
h1 {
font-size: 22px;
}
.agenda-header {
font-size: 24px;
width: calc(100% + 40px); /* Further decrease width */
margin-left: -20px; /* Adjust for mobile devices */
margin-right: -10px;
padding: 8px 0;
}
}
</style>
</head>
<body>
<div class="container">
<div class="first">
<h1>#TalkingBIG <span class="small-text">Ep2</span></h1>
<p class="subtitle">IMMERSION AS AN AUTHENTIC LEARNING ENCOUNTER</p>
<p class="description">Pre-, In-, and Post-Industry Placement as an Immersion Model for the Built Environment in Rwanda.</p>
<div class="event-details">
<p><strong>Friday</strong></p>
<p>October 18<sup>th</sup>, 2024</p>
<p>18:30 - 21:30 Hrs</p>
<p>Norrsken House, KIGALI, RW</p>
</div>
</div>
<h2 class="agenda-header">Agenda</h2>
<div class="agenda">
<p class="agenda-item"><strong>18h30’</strong> Arrival and Settling</p>
<p class="agenda-item"><strong>19h15’</strong> What is #TalkingBIG</p>
<p class="agenda-item">
<strong>19h30’</strong> Episode 2 Feature Topic -
<span class="agenda-topic">IMMERSION AS AN AUTHENTIC LEARNING ENCOUNTER</span>
</p>
<p class="agenda-item">
<strong>19h45’</strong> A Case Study:
<span class="agenda-topic">NDINDA DESIGN HUB.</span>
</p>
<p class="agenda-item"><strong>20h00’</strong> Fireside Chat.</p>
<p class="agenda-item"><strong>21h30’</strong> Farewell and Closing</p>
</div>
<div class="footer">
<p>Brought to you by:</p>
<p><strong>INFINITE AXIS & NDINDA DESIGN STUDIO</strong></p>
<a href="index.html" class="back-home">
<button>Back Home</button>
</a>
</div>
</div>
</body>
</html>