-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
88 lines (74 loc) · 1.54 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/* Reset some default styles */
body, h1, h2, h3, p {
margin: 0;
padding: 0;
}
body {
font-family: 'Lobster', cursive;
background: linear-gradient(45deg, #860038, #efba08);
text-align: center;
color: #75787B;
}
header {
background: #860038;
color: #fff;
padding: 20px 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
h1 {
font-size: 48px;
text-transform: uppercase;
color: #fff;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}
main {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background: rgba(255, 255, 255, 0.9);
border-radius: 20px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.day {
margin-top: 20px;
border-bottom: 2px solid #860038;
padding-bottom: 20px;
}
h2 {
font-size: 36px;
color: #efba08;
margin-bottom: 10px;
}
.event {
border: 2px solid #860038;
padding: 20px;
margin: 20px 0;
background: #fff;
border-radius: 20px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}
.event:hover {
background-color: #860038;
transform: scale(1.03);
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}
.event:hover h3{
color: #fff;
}
.time {
font-weight: bold;
color: #efba08;
font-size: 24px;
}
.details h3 {
font-size: 28px;
color: #860038;
margin: 10px 0;
}
.details p {
color: #75787B;
font-style: italic;
}
/* Google Fonts link for custom font */
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');