-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.css
More file actions
53 lines (46 loc) · 745 Bytes
/
demo.css
File metadata and controls
53 lines (46 loc) · 745 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
52
53
.flex-container {
padding: 0;
margin: 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
margin: 0 auto;
gap: 5px;
}
.flex-child {
flex: 1 1 0;
border: 1px solid silver;
}
.toolbar {
position: relative;
top: 0;
right: 0;
left: 0;
color: #555;
background-color: #eee;
z-index: 9;
height: 2.625rem;
line-height: 2rem;
padding: 0.3125rem 0.3125rem 0;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
display: flex;
}
.toolbar > .left {
font-weight: bold;
text-align: left;
}
.toolbar > .right {
text-align: right;
}
.toolbar > .left,.right {
flex: 1 1 auto;
}
body {
font-family: sans-serif;
min-height: 100vh;
}
.output {
max-height: 500px;
overflow-y: scroll;
overflow-x: scroll;
}