-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
51 lines (41 loc) · 724 Bytes
/
index.css
File metadata and controls
51 lines (41 loc) · 724 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
43
44
45
46
47
48
49
50
51
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
background-color: #f2f2f2;
}
.center {
display: flex;
justify-content: center;
align-items: center;
/* height: 200px; */
/* border: 3px solid green; */
}
div.picker {
width: 100%;
height: 40px;
background-color: #3B464F;
display: flex;
justify-content: center;
align-items: center;
}
div.viewer {
width: 100%;
height: calc(100% - 40px);
}
div.viewer iframe {
width: 100%;
height: 100%;
}
.row {
display: flex;
height: inherit;
}
.column {
flex: 50%;
}
button {
-webkit-user-select: none;
}