-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.css
56 lines (50 loc) · 777 Bytes
/
app.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
html {
padding: 0;
margin: 0;
}
header.mdl-layout__header {
background: white;
}
.mdl-layout__header-row {
display: flex;
flex: 0 0 auto;
flex-direction: row;
align-items: center;
justify-content: center;
}
header .mdl-slider__container {
flex: 1;
}
body {
display: flex;
flex-direction: column;
}
#animation-container {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
background: #424242;
overflow: auto;
}
#show-source-dialog {
width: 80vw;
height: 80vh;
}
.mdl-dialog-flex-wrapper {
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
}
.mdl-dialog__title,
.mdl-dialog__actions {
flex: 0 0 auto;
}
.mdl-dialog__content {
flex: 1;
overflow: auto;
}
.icon path:not([fill=none]) {
fill: currentColor;
}