-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
114 lines (94 loc) · 1.68 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
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
*{
margin: 0px;
padding: 0px;
}
body{
height: 100vh;
display: flex;
font-size: 18px;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: 'DM Sans', sans-serif;
background-color: hsl(27, 66%, 92%);
}
header{
color: white;
box-sizing: border-box;
padding: 15px 25px;
border-radius: 15px;
background-color: hsl(10, 79%, 65%);
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
margin-bottom: 17px;
}
.adjust p{
opacity: 0.8;
font-size: 13px;
}
.adjust{
width: 400px;
}
section{
display: flex;
flex-direction: column;
box-sizing: border-box;
padding: 15px 30px;
background-color: white;
border-radius: 15px;
}
footer{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-end;
padding: 20px 0px;
}
.bottom{
align-self: flex-end;
}
footer h1{
font-weight: 900;
font-size: 35px;
}
.graph{
height: 150px;
display: flex;
flex-direction: row;
justify-content: space-between;
padding: 25px 0px 20px 0px;
}
.graph p{
opacity: 0.8;
}
.bar{
border-radius: 4px;
background-color: hsl(10, 79%, 65%);
width: 30px;
}
.combined{
display: flex;
flex-direction: column;
align-items: center;
justify-content: end;
}
.bar:hover{
opacity: 0.7;
cursor: pointer;
}
.hover{
display: none;
background-color: hsl(25, 47%, 15%);
border-radius: 5px;
color: white;
padding: 5px;
font-size: 14px;
margin-bottom: 5px;
}
@media screen and (max-width: 460px) {
.adjust{
width: 85%;
}
}