-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
128 lines (110 loc) · 2.52 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
.fill:hover,
.fill:focus {
-webkit-box-shadow: inset 0 0 0 2.3em var(--hover);
box-shadow: inset 0 0 0 2.3em var(--hover);
}
.pulse:hover,
.pulse:focus {
-webkit-animation: pulse 1s;
animation: pulse 1s;
-webkit-box-shadow: 0 0 0 2.5em rgba(255, 255, 255, 0);
box-shadow: 0 0 0 2.5em rgba(255, 255, 255, 0);
}
@-webkit-keyframes pulse {
0% {
-webkit-box-shadow: 0 0 0 0 var(--hover);
box-shadow: 0 0 0 0 var(--hover);
}
}
@keyframes pulse {
0% {
-webkit-box-shadow: 0 0 0 0 var(--hover);
box-shadow: 0 0 0 0 var(--hover);
}
}
.raise:hover,
.raise:focus {
-webkit-box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
box-shadow: 0 0.5em 0.5em -0.4em var(--hover);
-webkit-transform: translateY(-0.25em);
transform: translateY(-0.25em);
}
.up:hover,
.up:focus {
-webkit-box-shadow: inset 0 -3.25em 0 0 var(--hover);
box-shadow: inset 0 -3.25em 0 0 var(--hover);
}
.slide:hover,
.slide:focus {
-webkit-box-shadow: inset 12.5em 0 0 0 var(--hover);
box-shadow: inset 12.5em 0 0 0 var(--hover);
}
.offset {
-webkit-box-shadow: 0.3em 0.3em 0 0 var(--color), inset 0.3em 0.3em 0 0 var(--color);
box-shadow: 0.3em 0.3em 0 0 var(--color), inset 0.3em 0.3em 0 0 var(--color);
}
.offset:hover, .offset:focus {
-webkit-box-shadow: 0 0 0 0 var(--hover), inset 6em 3.5em 0 0 var(--hover);
box-shadow: 0 0 0 0 var(--hover), inset 6em 3.5em 0 0 var(--hover);
}
.fill {
--color: #ca96eb;
--hover: #eb96cc;
}
.pulse {
--color: #ef6eae;
--hover: #ef8f6e;
}
.raise {
--color: #ffa260;
--hover: #e5ff60;
}
.up {
--color: #e4cb58;
--hover: #94e458;
}
.slide {
--color: #8fc866;
--hover: #66c887;
}
.offset {
--color: #19bc8b;
--hover: #1973bc;
}
button {
color: var(--color);
-webkit-transition: 0.25s;
transition: 0.25s;
}
button:hover, button:focus {
border-color: var(--hover);
color: #fff;
}
body {
color: #fff;
background: #17181c;
font: 300 1em 'Fira Sans', sans-serif;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-line-pack: center;
align-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
min-height: 100vh;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
button {
display: block;
background: none;
border: 2px solid;
font: inherit;
line-height: 1;
margin: 3em;
padding: 1em 3em;
}
/*# sourceMappingURL=style.css.map */