-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
69 lines (65 loc) · 1.21 KB
/
styles.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
.box{
height:50px;
width:50px;
background-color: #044040;
display: flex;
/* border: 2px solid red; */
justify-content: center;
}
.header{
display: flex;
padding:20px;
font-family: Garet ,Arial, Helvetica, sans-serif;
background-color: #F2F2F2;
border-radius: 10px 10px 0 0;
}
.reset{
display: flex;
}
.container{
display: flex;
margin-left:25px;
}
.top {
display: flex;
justify-content: space-between;
gap: 120px;
margin-left: 25px;
margin-top: 12px;
}
body{
display: flex;
flex-direction: column;
justify-content: center;
align-items: start;
margin: 0;
padding: 0;
top: 0;
right: 0;
background-color: black;
}
.ball {
background-color: #D92525;
width: 50px;
height: 50px;
border-radius: 25px;
position: relative;
bottom: 0;
left: 50%;
transform: translateX(-25px);
}
.red {
background-color: #591C21;
}
.button {
display: flex;
padding:20px;
font-family: Garet ,Arial, Helvetica, sans-serif;
background-color: #F2F2F2;
border-radius: 10px 10px 0 0;
}
.hover {
background-color: #044040;
box-shadow:0px 0px 0px 2px #F2F2F2 inset;
color: #F2F2F2;
}