-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
123 lines (123 loc) · 1.87 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
*{
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
}
.left{
width: 40%;
float: left;
}
img{
position: relative;
left: 50%;
transform: translate(-50%);
}
#ImageTwo{
margin-top: 100px;
}
.middle{
width: 30%;
float: left;
}
.middle-content{
width: 400px;
margin: 60px auto;
}
.buttons{
width: 200px;
margin: 0px auto;
}
button{
width: 40px;
height: 40px;
border-radius: 50%;
border: 0px;
font-size: 10px;
color: white;
outline: 0px;
}
button:focus{
border: 2px solid black;
}
.blueButton{
background-color: blue;
}
.redButton{
background-color: red;
}
.silverButton{
background-color: silver;
}
.greyButton{
background-color: grey;
}
.box{
height: 15px;
background-color: blue;
border-radius: 10px;
margin-bottom: 10px;
transition: .7s ease-in-out;
}
p{
font-size: 12px;
}
#box1{
width: 300px;
}
#box2{
width: 280px;
}
#box3{
width: 320px;
}
#box4{
width: 240px;
}
#box5{
width: 200px;
}
.number{
float: right;
position: relative;
font-weight: 700;
}
.half-circle {
width: 200px;
height: 100px; /* as the half of the width */
border-top-left-radius: 110px; /* 100px of height + 10px of border */
border-top-right-radius: 110px; /* 100px of height + 10px of border */
border: 10px solid gray;
border-bottom: 0;
margin: 0px auto;
}
#iconMeter{
position: relative;
top: 85px;
left: 15px;
transform: rotate(110deg);
transform-origin: 87px 12px;
transition: .7s ease-in-out;
}
.right{
width: 30%;
float: left;
}
.right-content{
margin: 100px auto;
}
h3{
text-align: center;
margin: 10px 0px;
}
@media screen and (max-width: 770px){
.left{
width: 100%;
}
.middle{
width: 100%;
}
.right{
width: 100%;
margin-top: -100px;
}
}