-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
83 lines (83 loc) · 1.45 KB
/
style.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
.mte-container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
}
.mte-tools {
width: 100%;
background-color: #ccc;
display: flex;
flex-direction: column;
justify-content: center;
padding: 0 10px;
}
.mte-tool-line {
display: flex;
align-items: center;
margin: 5px 0 5px 0;
padding: 5px 0;
}
.mte-tool-group {
display: flex;
align-items: center;
margin: 0 2.5px;
padding-right: 5px;
}
.mte-tool-selector {
position: relative;
display: flex;
align-items: center;
padding-right: 5px;
}
.mte-tool-selector-trigger {
display: flex;
align-items: center;
}
.mte-tool-selector-options {
position: absolute;
width: 300px !important;
top: 100%;
left: 0;
width: 100%;
background-color: #f1f1f1;
display: none;
flex-direction: column;
padding: 5px 0;
}
.mte-show {
display: flex !important;
}
.mte-hide {
display: none !important;
}
.mte-code {
font-family: monospace;
}
.mte-tool-selector-option {
padding: 5px 10px;
text-align: left;
cursor: pointer;
}
.mte-content {
width: 100%;
height: 100%;
flex: 1;
padding: 10px;
overflow-y: auto;
border: #333 1px solid;
}
.mte-content ol, .mte-content ul {
padding-left: 20px;
}
.mte-content ol {
list-style-type: decimal;
}
.mte-content ul {
list-style-type: disc;
}
.mte-tool {
cursor: pointer;
padding: 3px 5px;
margin-right: 5px;
}