forked from briano1905/typings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (80 loc) · 1.46 KB
/
style.css
File metadata and controls
96 lines (80 loc) · 1.46 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
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap');
body {
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
font-family: Roboto Mono;
line-height: 1.6rem;
}
*[onclick] {
cursor: pointer;
}
.bar {
display: flex;
justify-content: space-between;
}
#header {
margin: 0;
margin: 1.2rem 0 0 0;
}
#command-center {
margin: 0 0.4rem;
width: 100%;
max-width: 40rem;
display: flex;
flex-direction: column;
justify-content: center;
transform: translateY(-2vh);
}
/* #left-wing {} */
/* #right-wing {} */
#typing-area {
margin-top: 1rem;
padding: 1.4rem 1rem;
border-radius: 0.4rem;
background: #eaeaea;
}
#text-display {
margin-bottom: 1rem;
overflow: hidden;
}
#input-field {
width: 100%;
border: none;
font: inherit;
padding: 0.4rem 1rem;
border-radius: 0.2rem;
font-size: 1.2rem;
}
#redo-button {
margin-left: 0.7rem;
border: none;
font: inherit;
padding: 0.4rem 1rem;
border-radius: 0.2rem;
font-size: 1.2rem;
cursor: pointer;
}
#footer-content {
margin-bottom: 0.4rem;
display: flex;
}
#footer-content > * {
display: flex;
}
#install-button {
cursor: pointer;
margin: 0;
padding: 0;
}
#spacer {
margin: 0;
padding: 0 0.6rem 0 0.6rem;
}
#footer {
text-decoration: none;
text-align: center;
}