source: branches/testa-single-bookmark/css/style-3.css @ 81

Last change on this file since 81 was 53, checked in by anonymous, 6 years ago

rename setting to conf of css id

File size: 2.9 KB
Line 
1:root {
2    --menu-z-index: 9;
3    --root-height: 600;
4    --part-height: 600;
5}
6body {
7    width:980px;
8    margin:0 auto;
9}
10
11.disabled {
12    background-color: white;
13    display: none;
14}
15#all {
16}
17
18#data-menubar , #conf-menubar , #output-menubar{
19display: float
20}
21
22#data-bar , #conf-bar , #output-bar{
23    display: grid;
24/*    grid-template-rows:    30px 30px 30px 30px 30px;*/
25    grid-template-rows:    30px 30px;
26/*    grid-template-columns: 80px 80px 80px 80px 80px 80px 80px 80px 80px 80px 80px 80px;*/
27    grid-template-columns: 80px 80px 80px 80px 80px 80px 80px 80px 80px 80px 80px;
28
29/* height:128px; */
30 height:60px;
31/* background-color:#000000;*/
32/* background-color:#009f9f;*/
33}
34
35#data-select-host , #output-select-host, #conf-select-host  {
36    grid-row: 1 / 2;
37    grid-column: 1/6;
38    backgroud-color: #fff;
39}
40
41#data-filelist_key, #conf-filelist_key, #output-filelist_key {
42/*    display: none;*/
43    grid-row: 2 / 3;
44    grid-column:  1/6;
45}
46
47#data-bookmark_label, #output-bookmark_label, #conf-bookmark_label{
48    grid-row: 2/3;
49    grid-column:  6/7;
50}
51
52#data-bookmark_op, #output-bookmark_op , #conf-bookmark_op{
53    grid-row: 2/3;
54    grid-column:  6/7;
55}
56
57#data-down-download, #output-down-download, #conf-down-download{
58    grid-row:  2/3;
59    grid-column:  7/8;
60}
61
62#data-down-url, #output-down-url, #conf-down-url{
63    grid-row:  1/2;
64    grid-column:  8/12;
65}
66
67#data-partial-down-url, #output-partial-down-url, #conf-partial-down-url{
68    grid-row:  2/3;
69    grid-column:  8/12;
70}
71
72#data-editor-t, #conf-editor-t, #output-editor-t {
73    display: none;
74    grid-row: 2 / 3;
75    grid-column: 7/8;
76    backgroud-color: #f00;
77}
78
79/*
80#icon_star_container {
81    grid-row: 1 / 2;
82    grid-column:  6/7;
83}
84#icon_star {
85    grid-row: 1 / 2;
86    grid-column:  6/7;
87}
88*/
89/*
90#x {
91    grid-row: 1 / 2;
92    grid-column:  7/8;
93}*/
94
95.xxbutton {
96  background-color: ButtonFace;
97  border-radius: 5px;
98  color: ButtonText;
99  margin: 5px;
100/*  padding: 5px;*/
101  padding-left: .5em;
102  padding-right: .5em;
103  text-decoration: none;
104  text-align: center;
105}
106
107.xxbutton:focus,
108.xxbutton:hover {
109  background-color: Highlight;
110  color: HighlightText;
111}
112
113#data-menu2, #conf-menu2, #output-menu2 {
114    position: relative;
115    overflow: scroll;
116    width: 250px;
117    height: var(--part-height);
118    height: 600px;
119}
120
121#data-side , #conf-side , #output-side{
122 width:250px;
123 min-height: var(--root-height);;
124 height:auto;
125/*  background-color:#009b9f; */
126 float:left;
127/* margin-top:10px;*/
128/* margin-top:0px;*/
129}
130#data-work , #conf-work , #output-work{
131 margin-left:260px;
132 width:720px;
133 min-height: var(--root-height);;
134 height:auto;
135/* background-color:#009b9f; */
136/* margin-top:10px;*/
137}
138
139#data-editor, #output-editor,#conf-editor {
140/*    height: var(--part-height);*/
141        margin: 0;
142/*        position: absolute;*/
143        top: 0;
144        bottom: 0;
145        left: 0;
146        right: 0;
147}
148
149#data-menu-id {
150    display: none;
151}
Note: See TracBrowser for help on using the repository browser.