-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
93 lines (91 loc) · 1.67 KB
/
Copy pathstyles.css
File metadata and controls
93 lines (91 loc) · 1.67 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
83
84
85
86
87
88
89
90
91
92
93
/* css styles */
.about-image {
margin-left: auto;
margin-right: auto;
display: block;
}
@import url("news/styles.css");
.highlight-term {
color: #FF6B35;
}
.edu-timeline {
position: relative;
padding-left: 2rem;
margin: 1.5rem 0 2rem;
border-left: 2px solid #FF6B35;
}
.edu-item {
position: relative;
margin-bottom: 1rem;
display: flex;
flex-direction: column;
gap: 0.15rem;
}
.edu-item::before {
content: '';
position: absolute;
left: -2.4rem;
top: 0.4rem;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #FF6B35;
border: 2px solid #0d1b2a;
box-shadow: 0 0 0 2px #FF6B35;
}
.edu-year {
display: block;
font-size: 0.78rem;
font-weight: 700;
color: #FF6B35;
text-transform: uppercase;
letter-spacing: 0.08em;
margin-bottom: 0.1rem;
}
.edu-degree {
display: block;
font-size: 1.1rem;
font-weight: 700;
color: #ffffff;
}
.edu-school {
display: block;
font-size: 0.95rem;
color: #a8b2be;
}
.edu-detail {
display: block;
font-size: 0.82rem;
color: #6c757d;
font-style: italic;
}
.about-link {
color: inherit;
opacity: 0.75;
transition: opacity 0.2s;
}
.about-link:hover {
opacity: 1;
text-decoration: none;
}
/* Navbar right icon boxes */
.navbar-nav.ms-auto .nav-link {
display: inline-flex;
align-items: center;
justify-content: center;
width: 44px;
height: 44px;
border-radius: 10px;
border: 1.5px solid rgba(255, 255, 255, 0.9);
background: rgba(255, 255, 255, 0.05);
padding: 0;
margin: 0 6px;
line-height: 0;
vertical-align: middle;
opacity: 0.85;
transition: opacity 0.2s, border-color 0.2s;
}
.navbar-nav.ms-auto .nav-link:hover {
opacity: 1;
border-color: #ffffff;
}