-
Notifications
You must be signed in to change notification settings - Fork 1
/
sakaiCustomCSSLessons.css
49 lines (46 loc) · 1.33 KB
/
sakaiCustomCSSLessons.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
/* Give headers a nice red box around them */
/* mbrousseau created this to support IASC-1P02-D02-S01-Online-2019. It was then pilfered and slightly modified by mbreschuk, constrained to lessons by mclare*/
.section h1{
font-size: 30px;
font-weight: bold;
color:#FFFFFF;
background-color:#CC0000;
width:100%;
padding:20px;
margin-bottom:0px;
border-radius:20px;
}
.section h2 {
font-size: 20px;
color:#FFFFFF;
background-color:#CC0000;
width:100%;
padding:15px;
margin-top:0px;
border-radius:20px;
}
.section h3 {
font-size: 20px;
color:#000000;
background-color:#C5C5C5;
width:100%;
padding:10px;
margin-top:0px;
border-radius:10px;
}
.brocku-brock-background {background-color: #CC0000;}
.brocku-brock-font {font-color: #CC0000;}
.brocku-brock-logo-med {
background: #CC0000 url('https://brocku.ca/wp-content/themes/brocku-mu-base/images/brocku-logo-rgb.png?pressbooks=1') top left;
width:280px;
height:168px;
}
.brocku-brock-logo-small {
background: #CC0000 url('https://discover.brocku.ca/wp-content/themes/brocku-mu-base/images/brocku-logo-rgb.svg?pressbooks=1') top left;
width:152px;
height:92px;
}
/* Make the background of the Student Pages & Checklist grey instead of blue */
.checklistDiv, .studentDiv, .studentContentTable {
background-color:#e0e0e0 !important;
}