-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraphpage.css
More file actions
71 lines (48 loc) · 1.14 KB
/
graphpage.css
File metadata and controls
71 lines (48 loc) · 1.14 KB
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
h2 {
font-size: 3.2em;
font-family: Merriweather, Ubuntu, sans-serif;
color: rgb(231, 246, 255);
text-align: center;
padding-top: 0%;
padding-left: 20%;
padding-right: 20%;
}
body {
top: 0;
left: 0;
right: 0;
font-size: 1vw;
section.graph-grid {
width: 100vw;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
row-gap: 5%;
div.graph-container {
width: 95%;
height: auto;
margin-left: auto;
margin-right: auto;
img.normal-aspect {
width: 100%;
height: auto;
aspect-ratio: 16/8.25;
}
img.stretched-aspect {
width: 100%;
height: auto;
aspect-ratio: 16/10;
}
}
div.iframe-container {
grid-column: span 2;
width: 75%;
height: auto;
iframe {
width: 100%;
height: auto;
aspect-ratio: 1/1;
};
}
}
/* *{border: 5px solid black;} */
}