-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
67 lines (55 loc) · 1.06 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
html {
font-family: Arial, Helvetica, sans-serif;
display: inline-block;
text-align: center;
}
h1 {
font-size: 1.8rem;
color: white;
}
.topnav {
overflow: hidden;
background-color: #de0841;
}
body {
margin: 0;
}
.content {
padding: 50px;
}
.card-grid {
max-width: 800px;
margin: 0 auto;
display: grid;
grid-gap: 2rem;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.card {
background-color: white;
box-shadow: 2px 2px 12px 1px rgba(140, 140, 140, .5);
border: 3px white solid;
border-radius: 10px;
}
.graphCard {
background-color: white;
box-shadow: 2px 2px 12px 1px rgba(140, 140, 140, .5);
height: 400px;
border: 3px white solid;
border-radius: 10px;
}
.card-title {
font-size: 1.2rem;
font-weight: bold;
color: #f30242
}
.reading {
font-size: 1.2rem;
color: #fc87a6;
}
#chart{
max-width: 250px;
height: 300px;
text-align: center;
margin: auto;
padding: auto;
}