-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcss.css
More file actions
126 lines (105 loc) · 1.7 KB
/
css.css
File metadata and controls
126 lines (105 loc) · 1.7 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
114
115
116
117
118
119
120
121
122
123
124
125
126
body {
display: flex;
min-height: 100vh;
justify-content: center;
font-family: Georgia;
padding: 5px;
box-sizing: border-box;
margin: 0;
cursor: pointer;
}
body[data-running] {
align-items: center;
cursor: none;
}
body[data-showcursor] {
cursor: pointer!important;
}
body[data-running] #setup {
display: none;
}
textarea {
width: 100%;
height: 200px;
font-family: sans-serif;
}
h1 {
/* font-weight: normal; */
margin-bottom: 50px;
font-family: sans-serif;
text-align: center;
font-size: 26px;
}
h1 span {
border-bottom: 1px solid rgba(134, 134, 134, .3);
}
main {
max-width: 400px;
width: 100%;
}
body:not([data-running]) main {
display: flex;
flex-direction: column;
}
#output {
font-size: 26px;
margin: auto;
padding: 10px 0;
max-width: inherit;
width: 100%;
}
#output #word {
hyphens: auto;
max-width: inherit;
text-align: center;
flex: 1.2;
word-spacing: 1px;
/* letter-spacing: 0.1px; */
}
#status {
background: #b9dbf6;
height: 3px;
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
body[data-skin=blackonwhite] {
background: white;
color: black;
}
body[data-skin=blackonwhite] #output {
color: black;
}
body[data-skin=blackoncream] {
background: #fffced;
color: black;
}
body[data-skin=blackoncream] #output {
color: black;
}
body[data-skin=whiteonblack] {
color: white;
background: black;
}
body[data-skin=whiteonblack] #output {
color: white;
}
body[data-skin=yellowonblack] {
color: white;
background: black;
}
body[data-skin=yellowonblack] #output {
color: #ffdb41;
}
#tutorial {
padding: 10px 0;
}
.gray {
opacity: 0.7;
font-family: sans-serif;
font-size: 13px;
}
#noclick {
cursor: initial;
}