-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable.css
60 lines (53 loc) · 1.17 KB
/
table.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
.t1 body
{
padding: 0;
margin: 0;
font-family: 0;
}
.t1 table
{
position: relative;
left: 50%;
top: 200px;
transform: translate(-50%,-50%);
border-collapse: collapse;
width: 1400px;
height: 400px;
background-color: #5a5a5a;
border: 1px solid #bdc3c7;
box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0, 0);
}
.t1 tr{
padding: 12px;
text-align: center;
color: #fff;
border-bottom: 1px solid #ddd;
}
.t1 #header{
background-color: #192435;;
color: #fff;
}
.t1 #Schedule{
background-color: #00adb5;
color: #fff;
}
.t1 h1
{
font-weight: 600;
text-align: center;
background-color: #192435;;
color: #fff;
padding: 10px 0px;
}
.t1 th:hover
{
background-color: #00adb5;
transform: scale(1.02);
box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2), -1px -1px 8px rgba(0, 0, 0, 0);
}
/*media query*/
@media only screen and (max-width: 768px) {
.t1 table{
width: 90%;
}
}