-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (58 loc) · 952 Bytes
/
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
*{
margin:0px;
padding:0px;
box-sizing: border-box;
}
body{
height: 100vh;
background-image: linear-gradient(to right, #74ebd5 0%, #9face6 100%);
display: flex;
justify-content: center;
align-items: center;
}
.board{
height: 85vh;
width: 80vw;
background-color: #1a0d52;
border-radius: 10px;
}
.ball{
height: 30px;
width: 30px;
border-radius: 50%;
background-color: #74ebd5;
position: fixed;
top: 45vh;
left: 50vw;
}
.paddle{
height:120px;
width: 15px;
background-color: #74ebd5;
position: fixed;
border-radius: 10px;
}
.left{
top:40vh;
left:12vw
}
.right{
top:40vh;
right:12vw
}
.fa-circle{
color: #ffbe76;
font-size: 2rem;
}
.scoreboard{
display: flex;
height: 60px;
justify-content: space-evenly;
align-items: center;
flex: 1 1 1;
}
.separator{
width:4px;
height: 70%;
background-color: black;
}