blob: e424c70b5a7b89784fc4acb0b7179217b8d412b6 (
plain)
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
|
.cm-s-main{
width: 100%;
height: 500px;
}
.cm-s-saved{
border: 1px solid black;
}
.cm-s-unsaved{
border: 1px solid red;
}
.section-explainer{
margin-bottom: 5px;
}
.section-header{
margin-bottom: 10px;
}
.section-header-span{
border-bottom: 1px solid #ccc;
font-size: 15px;
}
#saved-text{
display: none;
color: green;
font-weight: bold;
margin: 30px;
}
#unsaved-text{
font-weight: bold;
margin: 10px 0px;
color: red;
visibility: hidden;
text-align: center;
}
|