-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathindex.css
More file actions
42 lines (34 loc) · 721 Bytes
/
index.css
File metadata and controls
42 lines (34 loc) · 721 Bytes
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
/* Copyright (c) Microsoft Corporation.
Licensed under the MIT license. */
header {
background-color: #007FFF;
height: 75px;
width: 100%;
}
header > p {
color: #FFFFFF;
font: bold 1.6em "segoe ui", arial, sans-serif;
margin-left: 31px;
padding-top: 20px;
}
main {
margin: 0 auto;
width: 100%;
}
#text-container > div > p {
font: 1.2em "segoe ui", arial, sans-serif;
}
#report-container {
height: calc(0.5625 * 61vw); /* 16:9 aspect ratio */
}
footer > p {
font: 1em "segoe ui", arial, sans-serif;
}
iframe {
border: none;
}
@media only screen and (max-width: 574px) {
#report-container {
height: calc(0.5625 * 100vw); /* 16:9 aspect ratio */
}
}