forked from MindFusionComponents/JavaScript-Diagram-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
81 lines (72 loc) · 1.04 KB
/
Copy pathindex.css
File metadata and controls
81 lines (72 loc) · 1.04 KB
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
body {
margin: 0;
padding: 0;
font-family: sans-serif;
}
.header{
height:49px;
background-color:#fafafa;
border-bottom: 1px solid #e2e4e7;
overflow: auto;
text-align: left;
padding: 5px;
}
.header *
{
margin:4px;
}
.container{
position: absolute;
display: flex;
top:110px;
left:0;
bottom:60px;
right:0;
text-align: left;
}
.main{
flex: 1 1 100%;
overflow: hidden;
display: flex;
position: relative;
}
.sidebar{
flex: 0 0 400px;
order: 1;
padding-left:15px;
overflow-y: scroll;
}
.sidebar-left{
flex: 0 0 220px;
overflow-y: scroll;
}
.footer{
position: absolute;
bottom:0;
left:0;
right:0;
height:49px;
background-color:#fafafa;
border-top: 1px solid #e2e4e7;
padding: 5px;
}
ul.menu {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333333;
}
li.menu-item {
float: left;
display: block;
color: white;
text-align: center;
padding: 16px;
text-decoration: none;
cursor: pointer;
}
li.menu-item:hover
{
background-color: #535353;
}