-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·68 lines (60 loc) · 1.42 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
65
66
67
68
.center {
text-align: center;
}
ul {
list-style: none;
padding: 0;
}
img {
display: inline;
width: 200px;
height: 100px;
}
#footer {
width: 100%;
border-top: solid 2px black;
background-color: white;
position: fixed;
bottom: 0;
}
#input-parent {
width: 160px;
margin: 0 auto 0 auto;
}
.guess {
display: inline;
font-size: 60px;
border: 2px solid black;
padding: 0 25px;
border-radius: 10%;
}
#players-input{
border-radius: 50%;
width: 160px;
height: 180px;
font-size: 60px;
}
#submit {
border-radius: 50%;
width: 60px;
height: 80px;
position: absolute;
top: 110px;
left: 110px;
}
#input-parent {
width: 50px;
margin: 5% auto 50px;
position: relative;
}
body {
background-image: url('binary.jpg');
}
.shadow {
box-shadow: 2px 2px 2px darkgray
}
#app {
width: 60%;
margin: 50px auto;
background-color: rgba(256, 256, 256, 0.6)
}