forked from cbovar/ConvNetDraw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
81 lines (70 loc) · 1.4 KB
/
styles.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
html, body {
height: 100%;
color:#ACB4BF;
font-size:13px;
font-family:'opensans_semi', 'helvetica', 'helvetica', 'arial', 'sans-serif';
}
a:link { color:#d0d0d0; }
a:visited { color:#c0c0c0; }
a:hover { color:#ffffff; }
a:active { color:#f0f0f0; }
header {
min-height: 100%;
width: 100%;
height: 100%;
}
.container {
min-height: 100%;
width: 100%;
height: 100%;
display: -moz-box;
display: -webkit-flexbox;
display: -ms-flexbox;
display: -webkit-flex;
display: -moz-flex;
display: flex;
-webkit-flex-direction: row;
-moz-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
}
.flex-1 {
padding: 1em;
width: 150px;
background-color:#333333;
}
.flex-2 {
position: relative;
-moz-box-flex: 1;
-webkit-flex: 1;
-moz-flex: 1;
-ms-flex: 1;
flex: 1;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.flex-2-child {
background-color: #1e1e1e;
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
}
.flex-3-child {
-webkit-flex: 1;
-ms-flex: 1;
flex: 2;
}
textarea {
color:white;
background-color: #1e1e1e;
width: 100%;
height: 100%;
min-height: 150px;
}