blob: 23cae958f717e4c245b2aaeb5045ce171ca55a1e (
plain)
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
|
.cv-entry,
.cv-honor {
@apply ml-4 pl-8 pb-2 relative;
.cv-role {
@apply m-0;
}
.cv-host,
.cv-date,
.cv-location {
@apply font-light m-0 p-0;
i {
@apply mx-2 fas;
}
}
.cv-host i {
@apply fa-building;
}
.cv-location i {
@apply fa-location-pin;
}
p {
@apply text-base my-2;
}
ul {
all: revert;
}
}
.cv-entry {
@apply border-l border-gray-400;
.cv-role::before {
content: "";
position: absolute;
width: 2rem;
height: 2rem;
background-color: #79c753;
border-radius: 50%;
transform: translateX(-50%);
left: 0;
}
.cv-date,
.cv-location {
@apply inline-block;
}
.cv-date i {
@apply fa-calendar;
}
}
.cv-honor {
.cv-role {
@apply ml-12 text-xl;
}
.cv-date {
top: 0.05rem;
@apply absolute left-0 text-xl;
i {
@apply text-amber-400 fas fa-award;
}
}
}
|