-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.css
More file actions
79 lines (54 loc) · 1.21 KB
/
events.css
File metadata and controls
79 lines (54 loc) · 1.21 KB
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
body{
background:
url("images/events.svg");
background-attachment: fixed;
background-position:center;
background-repeat:no-repeat;
background-size:cover;
font-family: 'Segoe UI Regular' !important;
}
.event-header{
height:100vh;
margin: 0 0;
position:relative;
color:white;
letter-spacing:3px;
}
.header-section{
position: absolute;
bottom:150px;
transform:translateX(-50%);
left:50%;
}
.event{
padding:50px;
background-color: rgba(255, 255, 255, 0.682);
border-radius: 10px;
backdrop-filter: blur(5px) ;
}
.backlayer{
padding-bottom:100px;
}
.content >p{
text-align: justify;
text-justify: inter-word;
}
.event-description{
line-height:28px;
}
.section-titlt{
letter-spacing: 2px;
}
.footer{
background-color: whitesmoke;
}
@media screen and (max-width:800px){
.event{
background-color: rgba(255, 255, 255, 0.82);
border-radius: 10px;
}
.backlayer{
margin-top:50px;
padding:50px 0;
}
}