-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.css
60 lines (59 loc) · 893 Bytes
/
go.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
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: Arial;
text-align: center;
}
svg {
display: block;
margin: auto;
}
header {
margin: 0 0 40px 0;
}
h1 {
font-weight: normal;
font-size: 40px;
letter-spacing: -1px;
color: #AAA;
margin: 0;
}
h2 {
font-weight: normal;
font-size: 16px;
letter-spacing: -0.25px;
color: #AAA;
margin: 0;
}
label {
font-size: 16px;
letter-spacing: -0.5px;
color: #AAA;
margin: 0 8px;
}
input, button {
background: #EEE;
padding: 10px 20px;
font-size: 16px;
border: 0;
margin: 0;
}
input {
border-radius: 8px 0 0 8px;
}
button {
background: #66CC66;
border-radius: 0 8px 8px 0;
cursor: pointer;
}
button:hover, button:active {
background: #55BB55;
}
.error-path {
stroke: white;
stroke-width: 0.6;
stroke-linecap: round;
opacity: 0.15;
}