forked from PukunuiAustralia/moodle-courseformat_grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
132 lines (128 loc) · 2.77 KB
/
styles.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
122
123
124
125
126
127
128
129
130
131
132
.course-content a {
outline: none;
}
.course-content .grid_title {
font-size: 160%;
font-weight: bold;
}
.course-content h3.sectionname {
background: transparent !important;
font-weight: normal !important;
font-size: 1.9em;
border: 0px none !important;
border-bottom: dashed 1px #000 !important;
padding: 0px !important;
padding-bottom: 5px !important;
}
.course-content ul.topics li.section-0, .course-content ul.weeks li.section-0 {
background: transparent;
border: 0px none;
}
div#middle-column ul {
list-style-type: none;
}
/* @group Topic Icons */
.course-content ul.icons {
list-style: none;
padding: 0;
margin: 0;
}
.course-content #iconContainer {
overflow: auto;
padding: 0 0 50px 0;
margin-left: 20px;
margin-right: auto;
}
.course-content ul.icons li {
width: 220px;
overflow: hidden;
float: left;
margin: 5px 5px;
padding: 3px;
background-color: white;
color: black;
font-size: 12px;
display: block;
}
.course-content ul.icons li:hover {
background-color: #f1f2f2;
color: #333;
}
.course-content ul.icons img.new_activity {
position: absolute;
margin-top: 90px;
margin-left: 128px;
}
.course-content .icon_link {
cursor: pointer;
}
.course-content ul.icons li p.icon_content {
font-size: 14px;
font-weight: bold;
margin: 0 0 3px 0;
width: 220px;
white-space: nowrap;
overflow: hidden;
color: black;
height: 20px;
}
.course-content ul.icons li .image_holder {
width: 218px;
height: 140px;
overflow: hidden;
border: 1px solid #ddd;
background-color: #f1f2f2;
text-align: center;
vertical-align: middle;
}
.course-content ul.icons li:hover .image_holder {
border: 1px solid #dededf;
}
.course-content ul.icons li img {
margin-top: 0;
}
.course-content li.grid_section {
clear: both;
}
/* @end */
/* @group Shadebox */
div#shadebox_overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 500px;
background: black;
/* for IE */
filter: alpha(opacity=70);
/* CSS3 standard */
opacity: 0.7;
z-index: 100000;
cursor: pointer;
}
#shadebox_content {
background: #fff;
border: solid 2px #a71e38;
}
#shadebox_content .activity {
list-style: none;
border-bottom: 1px dashed #ccc;
padding-bottom: 4px;
padding-top: 2px;
}
#shadebox_content ul li {
list-style: none;
}
#shadebox_content ul li ul li {
list-style: circle;
border-bottom: none;
padding-bottom: 4px;
padding-top: 2px;
}
#shadebox_close {
position: absolute;
top: -10px;
right: -10px;
cursor: pointer;
}
/* @end */