blob: 56627aa9f5fd0d0666c658411b9ec293414488f9 (
plain)
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
|
body {
font-family: Helvetica, sans-serif;
}
header {
font-size: large;
padding-left: 1%;
}
a {
color: black;
font-weight: bold;
padding-top: 1px;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
header nav {
flex-grow: 1;
display: inline;
}
#externallinks {
background-color: black;
text-align: left;
}
#externallinks nav ul li a {
color: #f1f3f3;
font-size: smaller;
}
header div {
padding-left: 20px;
/* padding-bottom: 10px; */
}
nav ul {
margin: 0;
padding: 0;
}
nav li {
display: inline-block;
list-style-type: none;
}
nav a {
text-decoration: none;
display: block;
padding: 5px 6px 5px 6px;
color: black;
}
footer {
padding-top: 100px;
font-size: x-small;
}
#main_content {
padding-left: 2.5%;
padding-right: 2.5;
}
#multicharts ul li {
list-style-type: none;
width: 45%;
display: inline-flex;
background-color: pink;
min-height: 350px;
margin-bottom: 7px;
overflow: hidden;
flex-direction: column;
justify-content: space-between;
/* border-color: black;
border-width: 2px;
border-radius: 1;
border-style: ridge; */
}
.chart_container {
display: flex;
flex-direction: row-reverse;
}
#power_table {
width: 90%;
}
#header_row {
background-color: black;
}
#header_row td {
color: #f1f3f3;
font-weight: bold;
}
#power_table tr {
margin-bottom: 3px;
}
#last_updated_ul {
font-size: small;
}
#sum_row {
background-color: gainsboro;
}
@media screen and (max-width: 1200px) {
#multicharts ul li {
width: 100%;
min-height: 500px;
height: 100%;
}
}
|