-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
97 lines (81 loc) · 1.23 KB
/
main.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
html, body {
background: #131a21;
margin: 0;
padding: 0;
height: 100%;
min-height: 100%;
}
* {
color: #ddb;
font-family: Arial, sans-serif;
}
a {
color: #f4c;
text-decoration: underline;
}
.container {
width: 19em;
margin: auto;
}
.controls {
background: #222833;
height: 18em;
line-height: 2.6em;
text-align: right;
padding: 1.6em 1em 0 1em;
margin: 0 0 1.6em 0;
}
.text-input {
width: 3em;
}
.left {
float: left;
}
.right {
float: right;
}
.phrase-display {
box-sizing: border-box;
font-size: 1.6em;
overflow-wrap: anywhere;
background: #044a58;
padding: 0.62em;
margin: 1em 0em;
font-family: monospace;
text-align: center;
width: 100%;
}
.input {
background: #3a1557;
color: #eee;
border-radius: 0.62em;
border: 0.22em outset #627;
padding: 0.29em;
font-family: monospace;
}
.generate-button {
display: block;
margin: auto;
padding: 0.29em 1em;
text-align: center;
}
#dictionarySelect {
width: 12.5em;
}
.footer {
margin: 2em 0;
}
.info {
line-height: 1.6em;
background: #222833;
padding: 0.6em 1.6em;
}
.round-border {
border: 0 solid #000;
border-radius: 0.62em;
}
.hidden {
display: none;
padding: none;
}
/*# sourceMappingURL=main.css.map */