-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathweek.css
More file actions
98 lines (83 loc) · 1.67 KB
/
Copy pathweek.css
File metadata and controls
98 lines (83 loc) · 1.67 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/* Navigation Bar */
#nav a {
display:block;
text-align:center;
width:138px;
text-decoration:none;
}
body {
padding: 3%;
}
/* Navbar container */
.nav-bar {
overflow: hidden;
font-family: Arial;
}
/* Links inside the navbar */
.nav-bar a {
float: left;
font-size: 16px;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
a:hover {
background-color: #b2b1b1;
color: #fff;
border-radius: 10px;
}
.nav-bar .active {
background: -webkit-linear-gradient(#eee, #333);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
table.calendar {
margin-bottom: 0;
}
.table{
margin-left: auto;
margin-right: auto;
}
table{
border: 2px solid rgb(51,73,94);;
border-bottom-right-radius: 6px;
border-bottom-left-radius: 6px;
}
caption{
padding: 7px 20px;
background-color:rgb(51,73,94);
color:white;
font-weight: bold;
border: 2px solid rgb(51,73,94);;
border-spacing: 0;
border-collapse: separate;
border-top-right-radius: 6px;
border-top-left-radius: 6px;
}
table.calendar > thead > tr > th {
padding-top:5px;
text-align: center;
}
tr:hover{
background-color:lightgrey;
}
table.calendar > tbody > tr > td {
height: 20px;
}
table.calendar > tbody > tr > td{
text-align: center;
}
table.calendar > tbody > tr > td >div{
padding: 8px;
height: 40px;
overflow: hidden;
display: inline-block;
vertical-align: middle;
}
table.table-borderless > thead > tr > th, table.table-borderless > tbody > tr > td {
border: 0;
}
.table tbody tr.hover td, .table tbody tr.hover th {
background-color: whiteSmoke;
}