-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathstyles.css
More file actions
113 lines (113 loc) · 1.85 KB
/
Copy pathstyles.css
File metadata and controls
113 lines (113 loc) · 1.85 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Roboto+Mono&display=swap');
:root{
--bgColor: #333;
--textPrimary: #fff;
--textSecondary: #666;
--primaryColor: #fd4;
}
body{
font-family: 'Roboto', sans-serif;
background-color:var(--bgColor);
color: var(--textPrimary);
font-size: 1.4rem;
}
main{
width: 600px;
margin: 50px auto;
}
h1{
color: var(--primaryColor);
}
h1 svg{
width: 40px;
fill: var(--primaryColor);
}
#header{
display: grid;
grid-template-columns: 1fr 1fr;
margin: 20px 6px 30px;
}
#buttons{
text-align: right;
}
#info{
color: var(--primaryColor);
}
button{
background: rgba(255,255,255,.2);
border:0;
color: rgba(255,255,255,.5);
padding: 5px 20px;
border-radius: 5px;
cursor: pointer;
}
div#game{
line-height:35px;
height:105px;
overflow: hidden;
position: relative;
}
div#game:focus{
outline:0;
}
#words{
filter: blur(5px);
color: var(--textSecondary);
}
#game:focus #words{
filter: blur(0);
}
#focus-error {
position: absolute;
inset: 0;
text-align: center;
padding-top: 35px;
}
#game:focus #focus-error{
display:none;
}
div.word{
display: inline-block;
font-family: 'Roboto Mono', monospace;
margin: 0 5px;
}
.letter.correct{
color: #fff;
}
.letter.incorrect{
color: #f55;
}
@keyframes blink{
0%{
opacity: 1;
}
50%{
opacity: 0;
}
100%{
opacity: 1;
}
}
#cursor{
display:none;
width: 2px;
height: 1.6rem;
background: var(--primaryColor);
position: fixed;
top: 198px;
left: 18px;
animation: blink .3s infinite;
}
#game:focus #cursor{
display: block;
}
#game.over #words{
opacity: .5;
filter: blur(0px);
}
#game.over:focus #cursor{
display:none;
}
#game.over #focus-error {
display: none;
}