-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (50 loc) · 874 Bytes
/
style.css
File metadata and controls
59 lines (50 loc) · 874 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
54
55
56
57
58
59
.header {
height: 70px;
background: #ccc;
box-shadow: 0 2px 1px 1px #555151;
text-align: center;
}
.main {
display: flex;
padding: 20px;
justify-content: space-between;
/* background: #E0D0D0; */
}
.text-box {
/* border: 1px solid #DDB8B8; */
box-shadow: 0 0 1px 1px #f5e0e0;
box-shadow: inset 0 0 1px 5px #ccc;
width: 49%;
background: white;
min-height: 600px;
}
.markdown {
position: relative;
padding: 6px;
/* flex:0.5; */
}
.markdown textarea {
box-sizing: border-box;
resize: none;
height: 100%;
width: 100%;
}
.preview {
padding: 8px;
/* flex:0.5; */
}
.modal {
position: fixed;
top: 0;
left: 0;
height: 100%;
width: 100%;
background: rgba(111, 111, 111, 0.7);
}
.modal-main {
margin: 100px auto;
background-color: white;
width: 600px;
height: 400px;
}
/*# sourceMappingURL= style.css.map */