-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
56 lines (43 loc) · 800 Bytes
/
style2.css
File metadata and controls
56 lines (43 loc) · 800 Bytes
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
html {scroll-behavior: smooth;}
#link{
/* text-decoration: none; */
color: #107ce7;
transition: .2s ease-in-out;
}
/*
a:visited{
color: #107ce7;
}
a:hover {
color: #107ce7;
}
*/
a:hover {
color: #107ce7;
transition: .2s ease-in-out;
}
#smalltxt{
font-size: 0.8rem;
}
/* Smooth underline animation */
.nav-link {
position: relative;
display: inline-block;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
display: block;
margin-top: 5px;
right: 0;
background: #1773cf;
transition: width 0.3s ease;
-webkit-transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
left: 0;
background: #1773cf;
}