-
Notifications
You must be signed in to change notification settings - Fork 0
/
in.css
73 lines (58 loc) · 1.31 KB
/
in.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
/* Common style for all htmls in Interest Navigator */
.dialog{
background: #B3BE93;
border: 2px ridge #DDDDDD;
overflow: visible;
visibility: hidden;
}
.title-bar {
background-color: #F5F0E6;
border-bottom: 1px solid #000;
margin-bottom: 0px;
margin-left: 0px;
margin-top: 0px;
padding-bottom: 0;
padding-left:0;
padding-right:0;
padding-top: 0;
box-sizing: border-box;
top:0;
left:0;
height: 1.5em;
vertical-align: middle;
text-align: center;
}
.command-line{
width: 100%;
height: auto;
position: absolute;
left: 0;
bottom:0;
display: flex;
flex-wrap: wrap;
display: -webkit-flex; /* Safari */
-webkit-flex-wrap: wrap; /* Safari 6.1+ */
}
.command-line button {
height: auto;
margin: 0;
flex: 1;
-webkit-flex: 1; /* Safari 6.1+ */
-ms-flex: 1; /* IE 10 */
}
.command-line .panel{
background-color: #DDDDDD;
border: 2px ridge #DDDDDD;
box-sizing: border-box;
clear: both;
font-family: sans-serif;
height: 1.5em;
margin:0;
padding-left:0;
padding-right:0;
-webkit-flex-basis: 80px; /* Safari 6.1+ */
flex-basis: 100%
}
button{ background-color: #DDDDDD; border-color: #F0F0F0; }
/**************** end of in.css *******************/
/*==========================================================================*/