-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimate.css
More file actions
96 lines (82 loc) · 1.83 KB
/
Copy pathanimate.css
File metadata and controls
96 lines (82 loc) · 1.83 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
94
95
96
.nav__link:after {
content: "";
width: 0;
height: 2px;
background-color: #2b2a2c;
position: absolute;
bottom: -3px;
left: 0;
z-index: 1;
transition: width 0.2s linear;
}
.nav__link:hover:not(.nav__link--btn):after{
width: 100%;
}
.nav__link--btn{
transition: background-color 0.2s linear, color 0.2s linear;
}
.nav__link--btn:hover{
background-color: #2b2a2c;
color: #ffffff;
}
.social__link{
transition: transform 0.2s linear;
}
.social__link:hover{
transform: translateY(-5px);
}
.btn{
transition: background-color 0.2s linear, color 0.2s linear, box-shadow 0.2s linear, border-color 0.2s linear;
}
.btn:hover{
background-color: #2b2a2c;
color: #ffffff;
border-color: #2b2b2b;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.24);
}
.work{
transition: box-shadow 0.2s linear; /* does this work?? */
}
.works__nav-link:hover{
text-decoration:underline;
}
.work:hover{
box-shadow: 0 0 25px black;
}
.about__photo:before{
content: “”;
width: 413px;
height: 413px;
background-color: #EFEFEF;
border-radius: 30px;
position: absolute;
left: 1rem;
bottom: 0;
z-index: 1;
}
.social__link__footer{
transition: transform 0.2s linear;
}
.social__link__footer:hover{
transform: translateY(-5px);
}
.category__link:hover:not(.category__link):after{
width: 100%;
}
.category__link{
transition: background-color 0.2s linear, color 0.2s linear;
}
.category__link:hover{
background-color: #969497;
color: #ebe7e7;
}
.about__link:hover:not(.about__link):after{
width: 100%;
}
.about__link{
transition: background-color 0.2s linear, color 0.2s linear;
}
.about__link:hover{
background-color: #969497;
color: #ebe7e7;
}