-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (39 loc) · 703 Bytes
/
style.css
File metadata and controls
39 lines (39 loc) · 703 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
.wrapper {
display:flex;
flex-direction:row;
align-items:center;
justify-content:space-evenly;
margin-top:20px;
margin-bottom:20px;
}
#mdInputWrapper {
width:500px;
height:500px;
display:flex;
flex-direction:column;
}
#bmResWrapper {
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
}
.displayBox {
width:100%;
height:100%;
font-size:14px;
resize:none;
}
#renderBoxWrapper {
display:flex;
flex-direction:column;
align-items:center;
justify-content:space-evenly;
}
#renderBox {
width:500px;
height:500px;
border:2px solid red;
overflow-y:auto;
background:beige;
}