-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
78 lines (66 loc) · 1.26 KB
/
styles.css
File metadata and controls
78 lines (66 loc) · 1.26 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #000000;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.timetable-container {
text-align: center;
background-color: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
max-width: 1200px;
width: 90%;
}
.header-info h2, .header-info h3 {
margin: 5px 0;
color: #333;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
table, th, td {
border: 1px solid #333;
}
th, td {
padding: 15px;
text-align: center;
font-size: 1.1rem;
}
th {
background-color: #000000;
color: white;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
/* tr:hover {
background-color: #ddd;
} */
td[colspan] {
text-align: center;
background-color: #ffffff;
color: rgb(0, 0, 0);
font-weight: bold;
font-size: 1.2rem;
}
/* @media screen and (max-width: 600px) {
table {
font-size: 0.9rem;
}
th, td {
padding: 10px;
}
} */
td.sans:hover {
background-color: #000000;
color: white;
}