forked from odoo-dev/odoo-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (51 loc) · 763 Bytes
/
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
* {
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
}
#test-container {
display: flex;
}
#test-container > * {
width: 50%;
flex: 1 1 auto;
margin: 0 10px;
}
@media (max-width: 767px) {
#vdom-col {
display: none;
}
}
.toolbar {
height: 35px;
visibility: hidden;
background: #222222;
color: white;
}
.toolbar div.btn {
box-sizing: content-box;
display: inline-block;
padding: 7px;
}
.toolbar div.active {
background: #555555;
}
#dom {
min-height: 500px;
padding: 5px;
}
span.btn {
display: inline-block;
background-color: blue;
padding: 15px;
color: white;
}
.mr8 {
margin-right: 16px;
}
td {
border: 1px solid grey;
padding: 6px;
}