-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (86 loc) · 1.94 KB
/
style.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
@import url(https://fonts.googleapis.com/css?family=Roboto+Mono);
* {
padding: 0;
margin: 0; }
body {
background-color: #121212;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
min-height: 100vh;
font-family: 'Roboto Mono', monospace; }
div {
color: #727272;
text-align: center; }
p {
margin: 16px;
font-size: 96px;
color: #ccc;
text-transform: lowercase;
font-weight: 600;
transition: all 1s ease-in-out;
position: relative; }
p::before {
content: attr(data-item);
transition: all 1s ease-in-out;
color: #018786;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 0;
overflow: hidden; }
p:hover::before {
width: 100%; }
nav {
margin: 2rem;
background: #000000;
padding: 1rem; }
nav .menuItems {
list-style: none;
display: flex; }
nav .menuItems li {
margin: 50px; }
nav .menuItems li a {
text-decoration: none;
color: #ccc;
font-size: 24px;
font-weight: 400;
transition: all 0.5s ease-in-out;
position: relative;
text-transform: lowercase; }
nav .menuItems li a::before {
content: attr(data-item);
transition: .5s;
color: #9fbaec;
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; }
footer {
position: absolute;
font-size: 12px;
bottom: 0;
width: 100%;
height: 60px;
line-height: 60px;
font-size: 14px;
background-color: #000000;
color: #000000;
text-align: center; }
footer a {
text-decoration: none;
color: inherit;
border-bottom: 1px solid; }
footer a:hover {
border-bottom: 1px transparent; }
/*# sourceMappingURL=style.css.map */