forked from adamchalmers/approx_draw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
61 lines (50 loc) · 735 Bytes
/
style.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
.container {
display: inline-block;
margin: 0 auto;
border: 1px solid gray;
min-height: 50%;
padding: 10px;
border-radius: 5px
}
#wrapper {
text-align: center;
}
#inputs {
margin-bottom: 20px;
}
#stats {
font-size: x-small;
}
body {
background: #f9f9f9;
font-family: sans-serif;
}
button, input {
border-radius: 10px;
padding: 5px;
font-size: x-large;
}
button {
width: 100px;
background-color: #337ab7;
border: 1px solid #2e6da4;
color: white;
}
input {
width: 400px;
border: 1px solid #ccc;
color: #555;
}
h1 {
text-align: center;
margin-bottom: 80px;
font-size: xx-large;
}
#footer-right {
position: absolute;
bottom: 10px;
right: 10px;
}
#error {
color: #b73333;
}