-
Notifications
You must be signed in to change notification settings - Fork 0
/
timetable.css
103 lines (91 loc) · 1.61 KB
/
timetable.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #6e8efb, #a777e3);
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 30px;
box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
border: 1px solid rgba(255, 255, 255, 0.18);
max-width: 90%;
width: 800px;
}
h1 {
text-align: center;
color: #ffffff;
margin-bottom: 30px;
font-weight: 300;
letter-spacing: 2px;
}
table {
width: 100%;
border-collapse: separate;
border-spacing: 0 15px;
}
th,
td {
padding: 15px;
text-align: left;
color: #ffffff;
font-weight: 300;
}
th {
background: rgba(255, 255, 255, 0.2);
backdrop-filter: blur(5px);
border-radius: 10px;
}
tr {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(5px);
border-radius: 10px;
transition: all 0.3s ease;
animation: fadeIn 0.5s ease-out forwards;
opacity: 0;
}
tr:hover {
transform: scale(1.02);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.time {
font-weight: bold;
color: #ffd700;
}
.subject {
font-style: italic;
}
.location {
opacity: 0.8;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
tr:nth-child(1) {
animation-delay: 0.1s;
}
tr:nth-child(2) {
animation-delay: 0.2s;
}
tr:nth-child(3) {
animation-delay: 0.3s;
}
tr:nth-child(4) {
animation-delay: 0.4s;
}
tr:nth-child(5) {
animation-delay: 0.5s;
}