-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathword_fill.css
75 lines (75 loc) · 1.46 KB
/
word_fill.css
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
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
min-height: 100vh;
padding: 0;
margin: 0;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}
div {
color: #727272;
text-align: center;
}
.codewheel-menu {
margin: 16px;
font-size: 96px;
color: #ccc;
font-weight: 600;
transition: all 1s ease-in-out;
position: relative;
}
.codewheel-menu::before {
content: attr(data-item);
transition: all 1s ease-in-out;
color: #1352c9;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 0;
overflow: hidden;
}
.codewheel-menu:hover::before {
width: 100%;
}
.nav {
margin: 25px;
background: #f3f3f3;
padding: 16px;
}
.nav .menuItems {
list-style: none;
display: flex;
}
.nav .menuItems li {
margin: 50px;
}
.nav .menuItems li a {
text-decoration: none;
color: #8f8f8f;
font-size: 24px;
font-weight: 400;
transition: all 0.5s ease-in-out;
position: relative;
text-transform: uppercase;
}
.nav .menuItems li a::before {
content: attr(data-item);
transition: 0.5s;
color: #1352c9;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 0;
overflow: hidden;
}
.nav .menuItems li a:hover::before {
width: 100%;
transition: all 0.5s ease-in-out;
}