blob: d112468f70a915b2ae3edfdd57b2ffa34136a32f (
plain) (
blame)
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
|
.work {
}
.work__header {
}
.work__experience {
&:after {
display: flex;
content: "";
border-bottom: 1px solid;
margin: auto;
max-width: 75%;
}
&:last-of-type:after {
// remove the extra horizontal line after the last work__experience
display: none;
}
}
.job-position {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
@media (max-width: 780px) {
flex-flow: column wrap;
}
}
.job-position__company,
.job-position__title,
.job-position__duration,
.job-position__location {
min-width: 50%;
@media (max-width: 812px) {
@media (orientation: landscape) {
font-size: 0.9rem;
}
}
}
.job-position__company {
order: 0;
margin-bottom: 0;
font-size: 1.5rem;
}
.job-position__title {
order: 2;
text-align: left;
align-self: flex-start;
@media (max-width: 780px) {
order: 1;
}
}
.job-position__duration {
order: 1;
text-align: right;
align-self: flex-end;
@media (max-width: 780px) {
order: 2;
text-align: left;
align-self: flex-start;
}
}
.job-position__location {
order: 3;
text-align: right;
align-self: flex-end;
@media (max-width: 780px) {
text-align: left;
align-self: flex-start;
}
}
.note {
max-width: 93%;
margin-top: 0.6rem;
margin-bottom: 0.6rem;
}
.tasks {
max-width: 90%;
margin-top: 0.4rem;
@media (max-width: 812px) {
max-width: 99%;
margin-inline-start: -1.5em;
@media (orientation: landscape) {
max-width: 90%;
margin-inline-start: 0em;
}
}
}
.footnote {
margin-bottom: 0.8rem;
font-size: 0.8rem;
}
|