source: branches/testa/css/style-3.css @ 99

Last change on this file since 99 was 26, checked in by anonymous, 6 years ago

remove unused part

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