-
Notifications
You must be signed in to change notification settings - Fork 0
/
towers.css
63 lines (60 loc) · 1.05 KB
/
towers.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
*{
font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
box-sizing: border-box;
}
body{
margin: 0;
padding:0;
}
.container{
text-align:center;
}
.numbers{
width:300px;
height:40px;
border-radius: 20px;
border: 2px solid #F44336;
font-size: 20px;
font-weight: bold;
}
.numbers:focus,.play:focus{
outline: none;
}
.play{
border-radius: 20px;
height:30px;
width:80px;
color:#fff;
background:#007ACC;
border:none;
cursor: pointer;
}
.number{
text-align:center;
}
.discs-wrapper{
margin-top: 150px;
display:flex;
justify-content: space-around;
position: relative;
}
.bar{
width:20px;
height: 300px;
background:#F44336;
margin:0 auto;
border-radius:10px 10px 0 0;
}
.base{
height:30px;
width:250px;
border-radius:10px;
background:#F44336;
}
.disc{
background:#007ACC;
height:20px;
position:absolute;
border-radius:20px;
border:1px solid #000;
}