-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGuessing Game.css
72 lines (57 loc) · 966 Bytes
/
Guessing Game.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
69
70
71
72
/*turns off browser default css which is accounting for borders and margins that you see*/
html, body, h1, h2, h3, p, ol, ul, li, a {
padding: 0;
border: 0;
margin: 0;
}
h1 {
padding: 28px 0px 6px 0px;
border-bottom: black solid 6px;
margin:15px;
}
h2 {
margin: 10px;
}
p {
margin: 5px;
}
ol {
margin: 10px;
}
ul {
margin: 10px;
}
/*Interesting thing I notice if you do not include margin space on the left then the numberings or bullets get cut-off for the l*/
li {
padding: 2px;
margin-left: 20px;
}
.heading {
text-align: center;
margin: 10px;
}
.Right_layout li {
display: inline;
list-style-type: none;
padding: none;
}
body {
background-color: #5f5f5f;
}
button {
display: inline;
padding: 5px;
margin: 10px auto 5px auto;
text-align: center;
}
label, input{
display: block;
margin-right: auto;
margin-left: auto;
text-align:center;
}
.floating_buttons {
margin-right: auto;
margin-left: auto;
text-align: center;
}