blob: 524fc6261e51847756e18034a08604ace38baa81 (
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
|
.browser {
position: absolute;
display: flex;
top: 0;
bottom: 0;
left: 0;
right: 0;
.view {
display: flex;
flex-direction: column;
flex: 1 1 0;
min-width: 0;
&.inspector .content {
margin: 0;
padding: 0;
display: flex;
> * {
display: block;
margin: 2em;
}
> code.hljs {
margin: 0;
border-radius: 0;
flex: 1;
}
}
nav {
display: flex;
flex: 0 0 3.2em;
justify-content: space-between;
background: #eeeeee;
/*
> * {
flex: 0 0 auto;
}
*/
> span:first-of-type {
flex: 1 0 auto;
}
> * {
margin: 1em;
}
}
.content {
flex: 1 1 auto;
overflow: auto;
padding: 1em 2em;
}
}
}
|