-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterface.css
More file actions
143 lines (104 loc) · 2.43 KB
/
interface.css
File metadata and controls
143 lines (104 loc) · 2.43 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
button.accordion {
background-color: #eee;
color: #444;
cursor: pointer;
padding: 18px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}
button.accordion.active, button.accordion:hover {
background-color: #ddd;
}
div.panel {
width: 100%;
padding: 0 18px;
display: none;
background-color: #eee;
padding-top: 0.5em;
padding-bottom: 0.5em;
}
div.panel.show {
display: block !important;
}
/* Submit Table Format */
#epsilon_table table, #epsilon_table th, #epsilon_table td {
border: 1px solid black;
border-collapse: collapse;
}
#epsilon_table th, #epsilon_table td {
padding: 5px;
text-align: center;
}
/*Sidebar and Header*/
/*http://www.w3schools.com/html/tryit.asp?filename=tryhtml_layout_flexbox*/
.flex-container {
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row wrap;
flex-flow: row wrap;
text-align: center;
}
.flex-container > * {
padding: 15px;
-webkit-flex: 1 100%;
flex: 1 100%;
}
.main {
text-align: left;
}
header {
background: black;
color:white;
}
footer {
background: #aaa;
color:white;
}
.variable_sidebar {
background:#eee;
}
.epsilon_sidebar {
background:#eef;
}
@media all and (min-width: 768px) {
.variable_sidebar {text-align:left;-webkit-flex: 0 auto;flex:0 auto;-webkit-order:1;order:1;}
.main {-webkit-flex:5 auto;flex:5 auto;-webkit-order:2;order:2;}
.epsilon_sidebar {text-align:left;-webkit-flex: 1 auto;flex:1 auto;-webkit-order:3;order:3;}
footer {-webkit-order:4;order:4;}
}
/*Varible Selection: https://www.html5andbeyond.com/live-search-a-html-list-using-jquery-no-plugin-needed/*/
.live-search-list {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 0em;
background-color: #eee;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
color: #fff;
}
.live-search-box {
width: 100%;
display: block;
padding: 1em;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid #3498db;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.live-search-list li {
color: black;
list-style: none;
padding: 5px;
margin: 5px 0;
border: solid 5px red;
text-align: center;
}