-
Notifications
You must be signed in to change notification settings - Fork 3
/
updatedEvents.css
57 lines (57 loc) · 1.22 KB
/
updatedEvents.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body{
background: linear-gradient(45deg, black, grey, white, goldenrod);
}
.card-container{
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.card{
width: 325px;
background: transparent;
backdrop-filter: contrast(1.5);
border-radius: 15px;
overflow: hidden;
box-shadow: 10px 10px 10px rgba(0,0,0,0.2);
margin: 20px;
}
.card img{
width: 100%;
height: auto;
}
.card-content{
padding: 16px;
}
.card-content h3{
font-size: 1.7rem;
font-family: 'Diplomata', serif;
color: gold;
margin-bottom: 8px;
}
.card-content .btn{
display: inline-block;
padding: 8px 16px;
background-color: rgb(101, 15, 152);
text-decoration: none;
border-radius: 4px;
margin-top: 16px;
color: rgb(255, 255, 255);
}
.eventHead{
margin-top: 0px;
display: flex;
justify-content: center;
align-items: center;
width: 100vw;
height: 10rem;
font-size: 4rem;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
mix-blend-mode: overlay;
background: rgba(0,0,0,0.2);
}