-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (78 loc) · 1.46 KB
/
style.css
File metadata and controls
86 lines (78 loc) · 1.46 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
*{
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #0d0f1b;
overflow: hidden;
}
ul{
position: relative;
display: flex;
flex-direction: column;
}
ul li{
list-style: none;
}
ul li:before{
content: attr(data-text);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
font-size: 6em;
font-weight: 700;
pointer-events: none;
opacity: 0;
letter-spacing: 20px;
transition: 0.5s;
white-space: nowrap;
}
ul li:hover:before{
opacity: 0.05;
letter-spacing: 0px;
}
ul li a{
position: relative;
display: inline-block;
padding: 6px 15px;
text-decoration: none;
background: #2196f3;
color: #fff;
text-transform: uppercase;
letter-spacing: 2px;
overflow: hidden;
transition: 0.5s;
z-index: 1;
}
ul:hover li a{
opacity: 0;
}
ul li a:hover{
transform: scale(1.4);
z-index: 1000;
background: #ff3f81;
opacity: 1;
}
ul li a:before{
content: '';
position: absolute;
top: 0;
left: -100px;
width: 80px;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
transform: skewX(35deg);
transition: 0s;
}
ul li a:hover:before{
left: calc(100% + 100px);
transition: 0.5s;
transition-delay: 0.2s;
}