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

Last change on this file since 24 was 23, checked in by anonymous, 6 years ago

init

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
34#data-select-host {
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
46#data-bookmark_label{
47    grid-row: 2/3;
48    grid-column:  6/7;
49}
50
51#data-bookmark_op{
52    grid-row: 2/3;
53    grid-column:  6/7;
54}
55
56#down-download {
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-editor {
111/*    height: var(--part-height);*/
112        margin: 0;
113/*        position: absolute;*/
114        top: 0;
115        bottom: 0;
116        left: 0;
117        right: 0;
118}
119
120#data-side , #setting-side , #output-side{
121 width:250px;
122 min-height: var(--root-height);;
123 height:auto;
124/*  background-color:#009b9f; */
125 float:left;
126/* margin-top:10px;*/
127/* margin-top:0px;*/
128}
129#data-work , #setting-work , #output-work{
130 margin-left:260px;
131 width:720px;
132 min-height: var(--root-height);;
133 height:auto;
134/* background-color:#009b9f; */
135/* margin-top:10px;*/
136}
137
138#editor-div , #data-editor, #setting-editor, #output-editor, #editor{
139    height: var(root-height);
140/*    width: 660px;*/
141
142    margin: 0;
143    top: 0;
144    bottom: 0;
145    left: 0;
146    right: 0;
147
148}
Note: See TracBrowser for help on using the repository browser.