File size: 475 Bytes
e4f4821
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.text-editor {
    margin-top: 10px
}

.text-editor a {
    font-size: 1em;
    color: var(--color-light);
    text-decoration: none;
    margin-right: 10px
}

.text-editor a:hover {
    color: var(--link-color-primary);
}

.text-editor .text-editor-preview-area {
    border: 1px solid #dedede;
    width: 700px;
    max-width: 99%;
    height: 250px;
    overflow: auto;
    padding: 2px
}

.text-editor textarea {
    width: 700px;
    max-width: 98%;
    height: 250px
}