Skip to content

Commit f2f171c

Browse files
authored
Merge pull request #4 from pythonNordeste/feature/timeline
Feature - Event calendar / timeline
2 parents aa8ed08 + 41facc1 commit f2f171c

26 files changed

Lines changed: 684 additions & 0 deletions

β€Žcalendar.htmlβ€Ž

Lines changed: 655 additions & 0 deletions
Large diffs are not rendered by default.

β€Žstatic/css/main.cssβ€Ž

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
--color-brown-100-alpha: #E2CBA2EE;
88
--color-brown-100: #E2CBA2;
99
--color-brown-500: #6A2B2B;
10+
--color-brown-500-alpha: #6a2b2b44;
1011
--color-brown-400: #A44818;
1112
--color-brown-300: #C67824;
1213
--color-brown-200: #CD8A3A;
@@ -299,6 +300,20 @@ h1, h2, h3, h4, h5, h6, .nav-link {
299300
text-transform: uppercase;
300301
}
301302

303+
/*
304+
* Tables
305+
*/
306+
307+
table {
308+
--bs-table-bg: transparent !important;
309+
background-color: transparent !important;
310+
}
311+
312+
table td, table th {
313+
padding: 10px 20px 10px 20px !important;
314+
border-color: var(--color-brown-500-alpha) !important;
315+
}
316+
302317
/*
303318
* Utils
304319
*/

β€Žstatic/css/style.cssβ€Ž

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,4 +249,18 @@
249249
width: 100%;
250250
height: 65vh;
251251
margin-top: 10px;
252+
}
253+
254+
/*
255+
* Skeaker photo
256+
*/
257+
258+
.speaker-photo {
259+
width: 100%;
260+
max-width: 40px;
261+
aspect-ratio: 1/1;
262+
border-radius: 50%;
263+
object-fit: cover;
264+
object-position: center;
265+
border: 3px solid var(--color-brown-500);
252266
}
122 KB
Loading
414 KB
Loading
95.5 KB
Loading
16.5 KB
Loading
206 KB
Loading
151 KB
Loading
126 KB
Loading

0 commit comments

Comments
Β (0)