-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnumberGuessCSS.css
More file actions
76 lines (62 loc) · 820 Bytes
/
numberGuessCSS.css
File metadata and controls
76 lines (62 loc) · 820 Bytes
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
69
70
71
72
73
74
75
76
#title {
font-family: Arial;
text-align: center;
font-size: 50px;
margin-top: 150px;
margin-bottom: 0;
}
body{
background-color: black
margin: 0;
}
html{
margin:0;
background: linear-gradient(white, black);
height: 100%
}
#topText{
font-size: 32px
}
#instructions{
font-size: 28px;
}
#guess{
font-size: 24px;
}
#submit{
font-size: 24px;
}
#guessP{
font-size: 24px;
}
#guessesLeft{
margin-bottom: 0;
font-size: 20px;
}
#pastGuesses{
font-size: 20px;
}
#wins{
float: left;
font-size: 20px;
}
#losses{
float:right;
font-size: 20px;
}
footer{
color: white;
width: 99%;
position: fixed;
bottom: 0;
margin-right: auto;
margin-left: auto;
}
div {
text-align: center;
font-family: Arial, sans-serif;
}
#difficultyButtons {
position: fixed;
top: 0;
}