-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathttstyles.css
62 lines (55 loc) · 1 KB
/
ttstyles.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
/* General Styles */
body {
background-color: #007bff;
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100vh;
color: #333;
}
/* Container */
.container {
width: 90%;
max-width: 1000px;
background-color: #ffffff;
border-radius: 10px;
padding: 20px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
text-align: center;
}
/* Heading */
.container h1 {
font-size: 24px;
color: #black;
margin-bottom: 20px;
}
/* Timetable Styles */
.timetable {
width: 100%;
border-collapse: collapse;
margin-bottom: 20px;
}
.timetable th,
.timetable td {
border: 1px solid #333;
padding: 10px;
text-align: center;
}
.timetable th {
background-color: #007bff;
color: #ffffff;
}
.timetable td {
background-color: #f9f9f9;
}
/* Quote */
.quote {
font-size: 18px;
font-style: italic;
color: #333;
margin-top: 10px;
}