forked from AVGP/Montagsmaler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (49 loc) · 962 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
html, body {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
height: 99%;
}
body {
background:linear-gradient(top, #eef, #efe);
background:-webkit-linear-gradient(top, #eef, #efe);
background:-moz-linear-gradient(top, #eef, #efe);
background:-o-linear-gradient(top, #eef, #efe);
background:-ms-linear-gradient(top, #eef, #efe);
}
h1, h2, h3, h4 {
padding-top: 10px;
margin-bottom: 10px;
font-family: 'Luckiest Guy', sans-serif;
text-align: center;
}
#wrap {
width: 600px;
margin: 0px auto;
background: #fff;
}
.info, .error {
border-radius: 5px;
margin: 2px;
padding: 6px;
}
.info {
background: #eff;
border: 2px solid #cee;
}
.error {
background: #fee;
border: 2px solid #ecc;
}
#game {
width: 500px;
margin: 0px auto;
}
form, input, button {
margin: 0px;
padding: 0px;
}
input {
width: 450px;
font-size: 20px;
}