-
Notifications
You must be signed in to change notification settings - Fork 1
/
theme.css
129 lines (109 loc) · 1.67 KB
/
theme.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/**
* A resume theme based on Marp's Gaia theme.
*
* @theme resume
* @author Octobug
*
* @size A4D72 595px 842px
* @size A4D96 794px 1123px
* @size A4D150 1240px 1754px
* @size A4D300 2480px 3508px
*/
@import 'default';
/* layout */
section {
font-family: 'Times New Roman', Times, serif;
padding: 40px;
background-color: white;
}
/* your name */
h1 {
font-size: 36px;
text-align: center;
}
/* job title */
h1+p {
text-align: center;
margin-top: -24px;
margin-bottom: 0.5rem;
}
h2,
h3,
p {
text-align: left;
}
/* section title */
h2 {
font-size: 28px;
border-bottom: 1px solid;
border-color: #cccccc;
margin-top: 0.5rem;
margin-bottom: 0.3rem;
}
/* company */
h3 {
font-size: 24px;
margin-top: 10px;
}
/* project */
h4 {
font-size: 20px;
margin-top: 5px;
}
/* career periods */
h3+p:has(em) {
text-align: right;
margin-top: -45px;
font-family: monospace;
z-index: -1;
}
a {
color: inherit;
text-decoration: underline;
}
/* profile */
table {
margin-left: auto;
margin-right: auto;
text-align: left;
}
table th {
display: none;
}
table tr {
border: none;
}
table tr:nth-child(2n) {
background-color: rgba(0, 0, 0, 0);
}
table td {
border: none;
padding: 0em 100px;
font-size: 22px;
letter-spacing: 2px;
line-height: 1.5em;
}
table {
overflow: hidden;
}
/* work experience */
h3 code {
font-size: 23px;
font-family: 'Times New Roman', Times, serif;
color: gray;
}
p,
li {
color: #555555;
font-size: 20px;
}
h3 img,
p img,
li img {
margin-bottom: -3px;
}
p strong,
li strong {
font-weight: bold;
color: black;
}