-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom2.css
63 lines (50 loc) · 988 Bytes
/
custom2.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
* {
/* Override default right margins for document*/
--pagedjs-margin-right: 0.2in;
--pagedjs-margin-left: 0.2in;
--pagedjs-margin-top: 0.25in;
--pagedjs-margin-bottom: 0.2in;
}
/* Main text is monserrat*/
body {
font-family: "Roboto", Roboto, sans-serif;
font-weight: 300;
line-height: 1.3;
color: #000;
}
/* Give headers playfair font */
h1,
h2,
h3 {
font-family: "Roboto", Roboto, sans-serif;
color: #000;
}
/*Adjust padding and height on side sections*/
.aside {
height: 95%;
padding-top: .75rem;
padding-bottom: .75rem;
}
[data-id="contact"] ul {
padding-top: .75rem;
padding-bottom: .8rem;
}
[data-id="skills"] ul {
padding-bottom: .2rem;
}
/* Add image border*/
img {
border-radius:100px;
/*margin-bottom: 0.2in;*/
}
/* add square bullet points to side bar*/
ul li ul li {
margin-left: 1rem;
list-style-type: square;
line-height: 1.3;
}
/* Adjust location of disclaimer*/
.aside .level2 {
margin-bottom: 0.2in;
}
}