-
Notifications
You must be signed in to change notification settings - Fork 313
/
event.css
64 lines (52 loc) · 838 Bytes
/
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
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
}
#event-heading
{
text-align: left;
}
.container h2
{
/* color: black; */
color: #7F7F7F;
}
.container h1 ,h2
{
margin-top: 20px;
text-align: center;
}
.container-inner
{
display: flex;
justify-content: center;
align-items: center;
}
table {
margin-top: 20px;
border-collapse: collapse;
width: 80%;
margin-bottom: 20px;
}
th
{
color: #4285F4;
}
th, td ,tr{
padding: 10px;
text-align: left;
border: 1px solid black;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
th {
background-color: #F5F5F5;
text-align: center;
}
.dark-mode tr:nth-child(even)
{
background-color: #4A5252;
}