-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathevent.css
65 lines (61 loc) · 1.07 KB
/
event.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.events {
min-height: 100vh;
width: auto;
display: grid;
place-items: center;
}
@media (max-width: 768px) {
.events {
min-height: 130vh;
width: auto;
display: grid;
place-items: center;
position: relative;
}
}
.eventlist {
list-style: none;
border-radius: 10px;
box-shadow: 0px 0px 30px -10px rgb(97, 97, 97, 0.75);
padding: 10px;
}
.eventlist > li {
padding: 1em;
margin: 0;
margin-bottom: 1em;
border-radius: 10px;
box-shadow: 0px 0px 30px -10px rgb(97, 97, 97, 0.75);
scale: 100%;
width: auto;
display: flex;
align-items: center;
}
.eventlist li img {
max-width: 160px;
max-height: 240px;
padding-right: 30px;
border-radius: 10px;
}
.current {
scale: 110%;
border-left: 5px solid green;
}
.gallery {
display: grid;
place-items: center;
}
.gallery-inner {
border-radius: 10px;
box-shadow: 0px 0px 30px -10px rgb(97, 97, 97, 0.75);
padding: 10px;
}
#galleryCarousel .carousel-item > img {
object-fit: cover;
max-width: 100%;
max-height: 100%;
}