aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/landing/sections/Resume.module.css
blob: 246ebec7715febc80de32291e7e1d26f2438ee3e (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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
 * SPDX-FileCopyrightText: 2023 Kristóf Marussy
 *
 * SPDX-License-Identifier: MIT
 */

.cv {
  position: relative;
}

.cv::before {
  content: ' ';
  position: absolute;
  width: 0.25rem;
  top: 0.5rem;
  bottom: 0;
  left: 0.5rem;
  background: var(--ifm-color-primary);
  transform: skew(0, -30deg);
}

.cv__item {
  position: relative;
  list-style-type: none;
}

.cv__item::before {
  position: absolute;
  content: ' ';
  top: 0;
  left: -2rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--ifm-color-white);
  border: 0.25rem solid var(--ifm-color-primary);
  border-radius: 100em;
}

[data-theme='dark'] .cv__item::before {
  background: var(--ifm-background-color);
}

.cv__item p {
  margin: 1rem 0;
}

.cv__title {
  --casl: 0;
}

.cv__times {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem;
}

.cv__time {
  position: relative;
  display: inline-block;
  padding: 0.25rem 0.5em;
  font-size: 0.9rem;
  --mono: 1;
}

.cv__time::before {
  content: ' ';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  background: var(--ifm-color-emphasis-200);
  transform: skew(-12deg, 0);
}

[data-theme='dark'] .cv__time::before {
  background: var(--ifm-pre-background);
}

[data-theme='dark'] .cv__time a {
  --ifm-link-color: var(--ifm-color-primary-light);
  --ifm-link-hover-color: var(--ifm-color-primary-light);
}

.cv__awarddesc {
  font-size: 0.875rem;
  color: var(--ifm-color-emphasis-800);
}

[data-theme='dark'] .cv__awarddesc {
  color: var(--ifm-color-emphasis-600);
}

.cv__activities {
  margin: 1em 0;
}

.cv__activity {
  margin: 1em 0;
  list-style-type: disc;
}

.cv__activity--tight {
  margin: 0;
}

.thesis-links {
  display: flex;
  column-gap: 0.5rem;
  row-gap: 1rem;
  flex-wrap: wrap;
  align-items: baseline;
  width: 100%;
  margin: 1rem 0;
}

.thesis-links__link {
  font-size: 0.875rem;
}