This repository has been archived by the owner on Jun 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.css
115 lines (95 loc) · 1.55 KB
/
common.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
@charset "utf-8";
* {
padding: 0px;
margin: 0px;
}
html, body {
height: 100%;
}
.page-wrap {
width: 860px;
margin-left: auto;
margin-right: auto;
}
header {
margin: 50px;
}
h1 {
text-align: center;
}
h2 {
font-style: italic;
font-size: large;
text-align: right;
}
h3 {
text-align: center;
}
.lists-wrap {
float: left;
width: 240px;
padding-left: 10px;
padding-right: 10px;
margin-right: 10px;
border-right: solid;
max-height: 500px;
min-height: 500px;
}
.lists-wrap .list:first-child {
padding-bottom: 10px;
border-bottom: solid;
max-height: 200px;
}
.lists-wrap .list {
padding-top: 10px;
max-height: 300px;
overflow: auto;
}
.list ul {
list-style-type: none;
}
.list li {
padding-top: 3px;
padding-bottom: 3px;
cursor: pointer;
}
.list li:hover {
background-color: #f5f5dc;
}
.list li.active {
font-weight: 600;
background-color: #eae6ca;
}
.table-wrap {
width: 567px;
float: right;
padding: 10px;
overflow: auto;
max-height: 500px;
min-height: 500px;
}
.table-wrap .cur-group,
.table-wrap .cur-subject,
.table-wrap .cur-lecturer {
font-weight: 600;
}
table, table tr, table td {
border-width: 2px;
border-style: solid;
border-color: black;
}
table {
border-collapse: collapse;
min-width: 100%;
margin-top: 10px;
}
table tr, table td {
padding: 3px;
text-align: center;
}
thead .first {
background-color: #eae6ca;
}
thead, tbody .first {
background-color: #f5f5dc;
}