-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.css
More file actions
83 lines (68 loc) · 1 KB
/
resume.css
File metadata and controls
83 lines (68 loc) · 1 KB
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
* {
font-size:10pt;
box-sizing:border-box;
}
body {
display:grid;
grid-auto-flow:row;
}
section:before {
content: attr(group);
background: white;
position:absolute;
top:-1em;
font-size:1.5em;
font-weight:bold;
padding:0em .5em;
letter-spacing: .15em;
}
section {
border:1em outset black;
border-radius:1em;
padding:.5em;
margin:1em;
position:relative;
display:inline-flex;
flex-wrap:wrap;
flex-direction:row;
}
subsection {
display: block;
border: thin solid rgba(0,0,0,.1);
margin:.5em;
flex-basis:33%;
flex-grow:1;
flex-shrink:1;
}
dl {
display:grid;
grid-gap:1em;
grid-template-columns:10em auto;
padding:0em 1em;
}
dt
{
font-family:monospace;
text-align:right;
color:rgba(0,0,0,.5);
font-weight:bold;
}
dd {
white-space:nowrap;
}
dd ul {
padding:0em;
list-style: inside;
}
dd ul li {
padding:.1em;
white-space:nowrap;
}
@media print {
body {
font-size:8pt;
}
}
section, subsection {
page-break-inside: avoid;
}