-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
71 lines (63 loc) · 1.08 KB
/
main.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
html, body {
padding: 0;
margin: 0;
overflow: hidden;
}
.mainContainer {
display: flex; /* or inline-flex */
flex-direction: row;
align-items: stretch;
height: 100vh;
}
aside {
flex: 0 1 auto;
max-width: 400px;
min-width: 320px;
padding: 20px;
font-size: 26px;
background-color: black;
color: white;
z-index: 2;
}
#contentContainer {
flex: 0 1 auto;
width: 100%;
/* height: 100vw; */
/* width: 100vw; */
}
.panel,
#hiddenMeasure {
max-width: 800px;
width: 400px;
margin: auto;
font-size: 26px;
font-family: 'David Libre';
direction: rtl;
background-color: white;
color: #999;
}
.panel .focus {
color: #000;
}
aside .focus {
font-weight: 600;
}
.en {
direction: ltr;
padding-bottom: 30px;
}
.buttonContainer {
position: absolute;
bottom: 10px;
left: 10px;
z-index: 3;
}
button {
font-size: 26px
}
#hiddenMeasure {
visibility: hidden;
position: absolute;
top: 0;
left: 0;
}