-
Notifications
You must be signed in to change notification settings - Fork 5
/
styles.css
55 lines (48 loc) · 865 Bytes
/
styles.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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
height: 100vh;
display: grid;
font-size: 18px;
}
#app {
align-self: center;
justify-self: center;
}
.container {
width: 300px;
background-color: #eee;
text-align: center;
padding: 27px 18px;
margin-bottom: 27px;
}
h1 {
margin: 0;
padding-bottom: 18px;
font-size: 18px;
}
input,
button {
padding: 9px;
font-size: 18px;
margin-bottom: 9px;
}
input.full-width {
display: block;
margin: 0 auto;
margin-bottom: 9px;
text-align: center;
}
.info {
max-width: 21ch;
margin: 0 auto;
margin-bottom: 18px;
background-color: #ddd;
padding: 12px 24px;
word-wrap: break-word;
font-family: "Lucida Console", Monaco, monospace;
font-size: 15px;
}
.info a {
color: black;
}