aboutsummaryrefslogtreecommitdiff
path: root/styles/editor.css
blob: a25108d7b0c6c8c57e600f0cb0bbeaccf96e1ecf (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
.appGridWrapper {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.appGrid {
	display: grid;
	grid-template-columns: 240px 1fr;
	grid-template-rows: auto 1fr 210px;
	overflow: hidden;
}

.appGrid header {
	grid-row: 1;
	grid-column: 1/3;
}

.appGrid .settings {
	grid-column: 1;
	grid-row: 2;
	background-color: var(--c400);
}

.appGrid .viewer {
	grid-column: 2;
	grid-row: 2;
	background-color: var(--c200);
}

.appGrid .tools {
	grid-column: 1;
	grid-row: 3;
	background-color: var(--c300);
}

.appGrid .timeline {
	grid-column: 2;
	grid-row: 3;
	background-color: var(--c100);
}

.appGrid .viewer {
	display: grid;
	grid-template-rows: 1fr 80px;
}

.appGrid .viewer .player {
	margin: 16px;
	margin-bottom: 0px;
}

.appGrid .viewer .player .outer {
	border: 8px solid var(--piss);
	border-radius: 8px;
}

.appGrid .viewer .player {
	--aspect-ratio-h: 16;
	--aspect-ratio-v: 9;
}

.appGrid .viewer .player .outer {
	aspect-ratio: 16 / 9;
	max-width: 100%;
	max-height: 100%;
	width: 100%;
}

.appGrid .viewer .controls {
	position: relative;
}

.appGrid .viewer .controls .abscenter {
	margin-left: 24px;
}

.appGrid .viewer .controls .r0 {
	margin-right: 16px;
}

.appGrid .viewer .controls .MuiFab-root.playPause {
	background-color: var(--blue);
}

.appGrid .viewer .controls .MuiFab-root {
	color: var(--fg);
}

.appGrid .viewer .controls .MuiFab-root:not(.playPause) {
	background-color: var(--transparent);
	box-shadow: none;
	margin: 4px;
}