-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschedule.css
121 lines (98 loc) · 1.39 KB
/
schedule.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
* @Author: charliegallentine
* @Date: 2019-12-20 01:39:31
* @Last Modified by: Charlie Gallentine
* @Last Modified time: 2020-01-09 11:48:29
*/
td, th {
border: none;
font-size: 20px;
}
h5, h6 {
margin: 2px;
}
#table {
border-radius: 32px;
padding: 0px;
height: 540px;
}
#table2 {
border-radius: 32px;
padding: 0px;
height: 680px;
}
.day1 {
margin-top: 25px;
}
.day2 {
margin-top: 25px;
}
.dayhead {
font-size: 24px;
}
@media(min-width: 950px)
{
.dayhead {
font-size: 36px;
}
.day1 {
margin-top: 25px;
}
.day2 {
margin-top: 100px;
}
}
@media(min-width: 1050px)
{
.dayhead {
font-size: 42px;
}
.day1 {
margin-top: 60px;
}
.day2 {
margin-top: 170px;
}
}
@media(min-width: 1200px)
{
.dayhead {
font-size: 48px;
}
.day1 {
margin-top: 160px;
}
.day2 {
margin-top: 300px;
}
}
.card {
display: flex;
align-items: center;
justify-content: center;
transition: all .1s ease-in-out;
border-radius: 10px;
background-color: transparent;
position: absolute;
text-align: center;
}
.card1 {
color:#fef8c0;
background-color: rgba(46, 49, 146, 0.75);
}
.card2 {
color:#2e3192;
background-color: rgba(80, 198, 223, 0.75);
}
.card3
{
color: #2e3192;
background-color: rgba(247, 141, 54, 0.75);
}
.card:hover {
transform: scale(1.05);
opacity: 100%;
}
.card-text {
display: block;
}