-
Notifications
You must be signed in to change notification settings - Fork 0
/
demo.css
executable file
·59 lines (47 loc) · 1001 Bytes
/
demo.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
/* Markdownlive Toolbar
=======================================================================*/
.markdownlive-bar {
padding:15px 10px;
background-color: #4a4a4a;
list-style:none;
}
.markdownlive-bar li {
color: #ddd;
padding:10px;
display:inline;
}
.markdownlive-bar li:hover {
color: #fff;
background-color: #313131;
cursor:pointer;
}
/* Markdownlive Editor
=======================================================================*/
textarea {
width:100%;
height:500px;
padding:10px;
border:1px solid #ddd;
}
/* Markdownlive Preview
=======================================================================*/
.markdownlive-preview {
background-color: #f6f6f6;
padding:10px;
height:500px;
overflow:auto;
}
.markdownlive-preview table {
border: 1px solid #373737;
margin-bottom: 20px;
text-align: left;
}
.markdownlive-preview th {
padding: 10px;
background: #373737;
color: #fff;
}
.markdownlive-preview td {
padding: 10px;
border: 1px solid #373737;
}