-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (58 loc) · 929 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
62
63
64
65
66
67
68
html {
font-family: sans-serif;
}
body {
margin: 0;
display: flex;
justify-content: center;
background-color: #212121;
}
#wrapper {
background-color: #474747;
color: #fff;
width: 450px;
height: 550px;
text-align: center;
font-size: 25px;
}
h1 {
background-color: #161616;
margin-top: 0;
font-size: 1.5rem;
}
p {
font-size: 16px;
}
#guessField {
color: #000;
width: 250px;
height: 50px;
font-size: 30px;
margin-top: 25px;
border: 5px solid #6c6d6d;
}
#guess {
font-size: 50px;
}
#subt {
background-color: #161616;
color: #fff;
width: 200px;
height: 50px;
border-radius: 10px;
border-style: none;
font-size: 20px;
margin-top: 50px;
}
#subt:hover{
cursor: pointer;
}
.guesses {
color: white;
padding: 7px;
background-color: #7a7a7a;
}
.lastResult {
color: white;
padding: 7px;
}