-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
122 lines (100 loc) · 2.42 KB
/
main.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
*:focus {
outline: none;
}
* {
-moz-user-select: -moz-none;
-khtml-user-select: none;
-webkit-user-select: none;
/*
Introduced in IE 10.
See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
*/
-ms-user-select: none;
user-select: none;
}
*, *:before, *:after {
box-sizing: inherit;
}
html {
box-sizing: border-box;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
padding: 0px;
margin: 0px;
overflow: hidden;
font-family: Verdana;
font-size: 10pt;
background: black;
}
body {
margin: 0px;
padding: 0px;
font-family: sans-serif;
overflow: hidden;
line-height: 2;
background: black;
}
.main {
margin: 0px;
padding: 0px;
border: 0px solid red;
width: 100vw;
height: 100vh;
overflow: hidden;
}
.maincontainer {
margin: 0px;
padding: 3px;
border: 0px solid red;
height: 100%;
overflow: hidden;
display: flex;
flex-direction: row;
background: -moz-linear-gradient(333deg, rgba(97,97,97,1) 0%, rgba(0,0,0,1) 100%); /* ff3.6+ */
background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(97,97,97,1)), color-stop(100%, rgba(0,0,0,1))); /* safari4+,chrome */
background: -webkit-linear-gradient(333deg, rgba(97,97,97,1) 0%, rgba(0,0,0,1) 100%); /* safari5.1+,chrome10+ */
background: -o-linear-gradient(333deg, rgba(97,97,97,1) 0%, rgba(0,0,0,1) 100%); /* opera 11.10+ */
background: -ms-linear-gradient(333deg, rgba(97,97,97,1) 0%, rgba(0,0,0,1) 100%); /* ie10+ */
background: linear-gradient(117deg, rgba(97,97,97,1) 0%, rgba(0,0,0,1) 100%); /* w3c */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#616161', endColorstr='#000000',GradientType=1 ); /* ie6-9 */
background-image: url('images/backgrounds/background-dark-01.jpg');
background-repeat: no-repeat;
background-size: cover;
}
.canvas {
border: 0px solid red;
flex: 1;
margin: 2px;
overflow: hidden;
}
.leftpane {
border: 0px solid red;
flex: 1;
margin: 2px;
overflow: hidden;
display: flex;
flex-direction: column;
}
.toolbar {
width: 100%;
height: 24px;
border: 1px solid #6c6c6c;
background: #383838;
margin-bottom: 3px;
border-radius: 2px;
color: #b3b3b3;
}
.panelbutton {
min-height: 20px;
margin: 2px;
display: block;
float: left;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 13px;
}
.flowdiv {
display: inline;
margin-right: 6px;
}