-
Notifications
You must be signed in to change notification settings - Fork 322
/
Copy pathcourse_list.css
82 lines (69 loc) · 1.79 KB
/
course_list.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
#nbgrader-course-list {
overflow: auto;
}
#courses .alert-danger {
/* these are copied from bootstrap, since apparantly it needs them */
position: relative;
padding: 0.75rem 1.25rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: 0.25rem;
color: var(--jp-error-color1);
background-color: var(--jp-error-color3);
border-color: #f5c6cb;
}
#courses .panel-group .panel {
margin-top: 3px;
margin-bottom: 1em;
}
#courses .panel-group .panel .panel-heading {
padding-top: 4px;
padding-bottom: 4px;
padding-left: 7px;
padding-right: 7px;
line-height: 22px;
}
#courses .panel-group .panel .panel-heading a:focus, a:hover {
text-decoration: none;
}
#courses .panel-group .panel .panel-body {
padding: 0;
}
#courses .panel-group .panel .panel-body .list_container {
margin-top: 0px;
margin-bottom: 0px;
border: 0px;
border-radius: 0px;
}
#courses .panel-group .panel .panel-body .list_container .list_item {
border-bottom: 1px solid var(--jp-border-color2);
}
#courses .panel-group .panel .panel-body .list_container .list_item:last-child {
border-bottom: 0px;
}
#courses .list_item {
padding-top: 4px;
padding-bottom: 4px;
padding-left: 7px;
padding-right: 7px;
line-height: 22px;
background-color: var(--jp-layout-color0);
}
#courses .list_item > div {
padding-top: 0;
padding-bottom: 0;
padding-left: 0;
padding-right: 0;
}
#courses .list_item .item_name, #courses .list_item .item_course{
display: inline-block;
width: 16.66666667%;
}
#courses .list_placeholder, #courses .list_loading, #courses .list_error {
font-weight: bold;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 7px;
padding-right: 7px;
background-color: var(--jp-layout-color0);
}