-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (61 loc) · 1.3 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
.featured-events {
text-align: center;
border-bottom: 1px solid #ccc;
padding-bottom: 20px;
}
.title {
font-weight: bold;
text-decoration: underline;
font-size: 45px;
color: maroon;
margin-bottom: 20px;
}
.event-container {
display: flex;
justify-content: space-between;
align-items: flex-start; /* Align items to the top */
margin-top: 20px;
}
.event-column {
flex-grow: 1;
padding: 10px;
display: flex;
flex-direction: column;
align-items: center;
border-right: 1px solid #ccc; /* Add border to the right of each column */
}
.event-column:last-child {
border-right: none; /* Remove border from the last column */
}
.date {
font-size: 20px;
font-weight: bold;
color: maroon;
white-space: nowrap;
}
.event-title {
font-size: 16px;
margin-top: 10px;
}
.event-location {
font-size: 14px;
margin-top: 5px;
}
.show-more-button {
margin-top: 20px;
background-color: #ff0000;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}
.arrow {
margin-left: 5px;
font-weight: bold;
}
.divider {
margin-top: 20px;
border-top: 1px solid #ccc;
}