-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
35 lines (28 loc) · 703 Bytes
/
styles.css
File metadata and controls
35 lines (28 loc) · 703 Bytes
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
/*=== CUSTOM STYLING FOR CALLOUTS AND EXERCISES ==============================*/
/*--- CALLOUTS ---------------------------------------------------------------*/
.callout {
border-left: 4px solid #31708f;
border-radius: 3px;
margin: 1em 0;
padding: 0.5em;
background-color: #d9edf7;
}
.callout-quiz {
border-left-color: #3c763d;
background-color: #dff0d8;
}
.callout-warning {
border-left-color: #8a6d3b;
background-color: #fcf8e3;
}
/*--- EXERCISE ---------------------------------------------------------------*/
.exercise {
margin: 1.5em 0;
padding: 1em;
background-color: #f5f5f5;
border: 1px solid #e1e1e8;
border-radius: 4px;
}
.exercise h4 {
margin-top: 0;
}