-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
67 lines (61 loc) · 1.62 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
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@500;700&display=swap');
body {
font-size: 14px;
font-family: 'Raleway', sans-serif;
background-color: hsl(228, 57%, 11%);
background-image: url("images/bg-desktop.png");
background-position: bottom;
background-repeat: no-repeat;
}
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
.container {
height: 100vh;
width: 100vh;
display: flex;
flex-direction: row;
justify-content: space-around;
}
.logo-section {
display: flex;
flex-direction: column;
background-color: hsl(228, 56%, 26%);
height: 150px;
width: 200px;
align-items: center;
justify-content: space-evenly;
border-radius: 5px;
border-top-right-radius: 30px;
}
.icons img{
background-color: hsl(228, 57%, 11%);
padding: 3px;
height: 20px;
border-radius: 5px;
width: 20px;
}
.meter-section {
width: 300px;
height: 120px;
background-color: hsl(228, 56%, 26%);
display: flex;
flex-direction: column;
align-items: stretch;
justify-content: baseline;
}
.meter-section P {
text-align: center;
color: white;
}
.meter-section meter {
width: 90%;
}
.limit {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.limit p {
text-align: center;
color: #fff;
}