-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
102 lines (86 loc) · 1.41 KB
/
style.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
/* Template level */
body {
font-family: Georgia, serif;
font-size: 11px;
margin: 24px 48px;
}
h1 {
font-size: 26px;
text-align: center;
margin: 5px;
}
h2 {
border-width: 1px;
border-style: none none solid none;
margin: 10px 0 2.5px 0;
}
section {
margin: 3px 0;
}
ul {
margin: 0;
padding-left: 20px;
}
a {
text-decoration: none;
color: black;
}
.item {
margin-top: 8px;
}
.item>.item-header {
float: left;
display: block;
}
.item>.item-header>.item-header-title {
font-weight: bold;
}
.item>.item-header>.item-header-subtitle {
font-style: italic;
}
.item>.item-details {
float: right;
text-align: right;
}
.item>.item-details>.item-details-title {
font-weight: bold;
}
.clearfix {
clear: both;
}
.centered {
text-align: center;
}
/* Section specific */
/* basics */
.vertical-separator {
text-align: center;
padding: 0 10px;
}
.vertical-separator:not(:first-child) {
border-left: 1px solid #000;
text-align: center;
}
/* Set some print settings. */
@media print {
@page {
size: portrait;
margin: 10mm 25mm;
}
.resume {
max-width: 100%;
border: 0px;
background: #fff;
box-shadow: none;
-webkit-box-shadow: none;
}
body,
html,
.resume {
margin: 0px;
padding: 0px;
}
.controls {
display: none;
}
}