-
Notifications
You must be signed in to change notification settings - Fork 0
/
experience.css
57 lines (48 loc) · 1.05 KB
/
experience.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
.experience__container {
margin: 4rem;
width: 100%;
}
.experience__details {
display: flex;
flex-direction: row;
align-items: flex-start;
padding: 10px;
transition: border 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
}
.experience__details:hover {
border: 0.2px solid #177977; /* Light border color, adjust as needed */
border-radius: 11px;
background-color: #0f3f6f1d; /* Slightly filled background with reduced opacity */
}
.job-description h3 {
margin-top: 0;
}
.job-description h2 {
margin-top: 0;
}
.job-description h6 {
padding-bottom: 1rem;
flex: 1;
}
.date {
flex: 0 0 auto;
margin-right: 5px;
margin-top: 1px;
width: 180px;
}
.position {
margin: 0;
}
.text-container {
display: inline-block; /* Makes the div size fit the text */
background-color: var(--block);
border-radius: 14px;
padding: 5px 10px; /* Adjust as needed */
margin: 4px;
}
.text-container span {
font-family: var(--font);
font-size: var(--text);
color: var(--highlight-text);
text-align: center; /* Center the text */
}