-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperience.css
More file actions
82 lines (70 loc) · 1.42 KB
/
experience.css
File metadata and controls
82 lines (70 loc) · 1.42 KB
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
.experience-paragraph{
text-align: center;
}
.timeline-sections{
display: flex;
flex-direction: column;
padding-bottom: 3em;
}
.timeline-items {
max-width: 1000px;
margin: auto;
display: flex;
flex-wrap: wrap;
position: relative;
}
.timeline-items::before {
content: '';
position: absolute;
top: 0;
left: calc(50% - 1px);
width: 3px;
height: 100%;
background-color: #7e7e7e;
border-radius: 3px;
}
.timeline-item {
margin-bottom: 40px;
width: 100em;
position: relative;
}
.timeline-item {
margin-bottom: 40px;
width: 100em;
position: relative;
}
.timeline-item:last-child {
margin-bottom: 0;
}
.timeline-item:nth-child(odd) {
padding-right: calc(50% + 30px);
text-align: right;
}
.timeline-item:nth-child(even) {
padding-left: calc(50% + 30px);
}
.timeline-dot {
height: 15px;
width: 15px;
background-color: #b6b6b6;
position: absolute;
left: calc(50% - 7px);
border-radius: 50%;
top: 10px;
}
.timeline-date {
margin: 6px 0 15px;
}
.experience-card {
background-color: rgb(49, 49, 49);
backdrop-filter: blur(20px);
border: 1px solid rgba(224, 224, 224, 0.25);
padding: 30px;
border-radius: 1em;
transition: 0.3s ease;
}
.experience-card:hover {
transform: scale(1.025);
background-color: rgba(190, 190, 190, 0.25);
box-shadow: 0 0 5px rgba(224, 224, 224, 0.25);
}