-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (64 loc) · 1.14 KB
/
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
body{
background-image: url('binary.jpg');
}
#app{
width: 60%;
margin: 50px auto;
background-color: rgba(256, 256, 256, 0.5);
}
.center {
text-align: center;
}
ul {
list-style: none;
padding: 0;
}
img {
display: inline;
width: 200px;
height: 100px;
}
#footer {
width: 100%;
border-top: solid 5px red;
background-color: black;
position: fixed;
bottom: 0;
color: red;
font-size: 50px;
}
html{
box-sizing:border-box;
}
#input-parent {
width: 160px;
margin: 5% auto 50px;
position: relative;
}
.guess{
background-color: white;
display:inline;
font-size: 60px;
border: 2px solid black;
padding: 0 25px;
border-radius: 10%;
}
#player-input{
border-radius: 50%;
width: 160px;
height: 160px;
font-size:60px;
}
#submit{
border-radius: 50%;
width:60px
height:60px;
position:absolute;
top:110px;
left:110px;
}
#headers{
background-color: black;
color: white;
border: 4px solid red;
}