-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
59 lines (50 loc) · 1.07 KB
/
custom.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
# Customizations to html tags
h2, h3, h4 {
margin: 1.5em 0em;
}
# Customizations to classes
.hint {
background-color: rgba(var(--lia-success),.15);
padding: 1em;
border: 2px dashed rgba(var(--color-highlight));
margin: 1em;
}
.lia_header__logo {
display: none;
}
.lia-header__middle {
background: url(https://github.com/arcus/education_fellows/raw/main/img/chop-logo.svg);
background-repeat: no-repeat;
}
.lia-quote{
position: relative;
padding-left: 5rem;
margin: 3rem 0rem;
}
.lia-quote:before {
display: block;
padding-left: 1rem;
content: "\201C";
font-size: 7rem;
position: absolute;
left: 0rem;
top: -1rem;
color: rgb(var(--color-highlight));
}
.question{
background-color: rgba(var(--lia-yellow),.15);
border: 1px solid rgba(var(--color-highlight));
position: relative;
padding: 1em 1em 1em 5rem;
margin: 3rem 0rem;
}
.question:before {
display: block;
padding-left: 1rem;
content: "?";
font-size: 7rem;
position: absolute;
left: 0rem;
top: -1rem;
color: rgb(var(--color-highlight));
}