-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (52 loc) · 941 Bytes
/
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
body {
margin: 0;
font-size: 15px;
background-color: aliceblue;
}
header {
background-color: #588C94;
color: white;
padding: 30px 0;
text-align: center;
font-size: 20px;
font-family: Arial, Helvetica, sans-serif;
}
h1 {
width: 380px;
font-size: 75px;
color: azure;
border: 10px solid azure;
padding: 30px;
margin: auto;
}
.events-available{
background-color: #1D3C41;
color: #fff;
padding: 75px 0;
text-align: center;
}
.events {
display: flex;
}
.event {
margin: 0 10px;
color: black;
text-align: left;
}
h2 {
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 25px;
text-decoration: underline;
color: darkslategray;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
footer {
font-size: 20px;
text-align: center;
}