root/SPARQLBuilderWWW/web/newsparqlbuilder.css @ 236

リビジョン 236, 3.8 KB (コミッタ: lenz, 10 年 前)

クラスのセレクトボックスが二段になってしまう問題の解決

  • 属性 svn:mime-type の設定値 text/plain
行番号 
1#SPARQLBUILDER{
2        width: 90%;
3        margin: auto;
4}
5.SBSparqlArea{
6        width: 100%;
7}
8
9.SBTopButton{
10        margin: 0.5em 1em 0.5em 0;
11        -webkit-border-radius: 7;
12        -moz-border-radius: 7;
13        border-radius: 7px;
14        border: none;
15        color: #ffffff;
16        background: hsl(200, 50%, 75%);
17        padding: 5px 15px 5px 15px;
18        cursor: pointer;
19}
20
21.SBTopButton:hover{
22        background: hsl(200, 50%, 85%);
23}
24
25.SBModalView{
26        position: absolute;
27        top: 0px;
28        bottom: 0px;
29        left: 0px;
30        right: 0px;
31        background-color: rgba(0,0,0,0.8);
32        display: none;
33}
34
35.SBModalContents{
36        position: absolute;
37        top: 0px;
38        bottom: 0px;
39        left: 0px;
40        right: 0px;
41        margin: auto;
42        width: 90%;
43        height: 90%;
44        background: white;
45        overflow: hidden;
46}
47
48.SBModalContents .SBForms{
49        float: left;
50        background-color: #eeeeff;
51}
52
53.SBModalContents .SBSelects{
54        width: 85%;
55        float: left;
56}
57
58.SBModalContents .SBSelects .SBEndPointSelect{
59        width: 100%;
60        height: 2em;
61}
62
63.SBModalContents .SBSelects .SBStartClassSelect{
64        width: 50%;
65        height: 2em;
66}
67
68.SBModalContents .SBSelects .SBEndClassSelect{
69        width: 50%;
70        height: 2em;
71}
72
73
74.SBModalContents .SBPermaLink{
75        width: 15%;
76        height: 100%;
77        float: left;
78        text-align: center;
79}
80
81.SBModalContents .SBPermaLinkButton{
82        display: inline-block;
83        margin-top: 10px;
84        width: 90%;
85        height: 36px;
86        -webkit-border-radius: 3;
87        -moz-border-radius: 3;
88        border-radius: 3px;
89        border: none;
90        color: #ffffff;
91        background: hsl(0, 50%, 75%);
92        padding: 3px 5px 3px 5px;
93        cursor: pointer;
94}
95
96.SBModalContents .SBPermaLinkButton:hover{
97        background: hsl(0, 50%, 85%);
98}
99
100.SBModalContents .SBMessage{
101        float: left;
102        text-align: center;
103        background-color: #eeeeff;
104}
105
106.SBModalContents .SBResult{
107        display: none;
108        height: 28px;
109        font-size: 24px;
110}
111
112.SBModalContents .SBViewAll{
113        display: none;
114        height: 28px;
115        -webkit-border-radius: 3;
116        -moz-border-radius: 3;
117        border-radius: 3px;
118        border: none;
119        color: #ffffff;
120        background: hsl(0, 50%, 75%);
121        padding: 3px 5px 3px 5px;
122        cursor: pointer;
123}
124
125.SBModalContents .SBViewAll:hover{
126        background: hsl(0, 50%, 85%);
127}
128
129.SBModalContents .SBGraph{
130        float: left;
131}
132
133.SBModalContents .SBAjaxLoad{
134        position: relative;
135        top: 0;
136        left:0;
137        height: 100%;
138        background: #fffafa;
139}
140
141.SBModalContents .SBLoadIcon{
142        position: absolute;
143        top: 0;
144        left: 0;
145        right: 0;
146        bottom: 0;
147        margin: auto;
148        width: 100px;
149        height: 100px;
150}
151
152.SBModalContents .SBPath{
153        float: left;
154        padding: 10px;
155        text-align: center;
156        word-wrap: break-word;
157}
158
159.SBGenButton{
160        margin: 1.5em;
161        -webkit-border-radius: 7;
162        -moz-border-radius: 7;
163        border-radius: 7px;
164        border: none;
165        color: #ffffff;
166        font-size: 1.2em;
167        background: hsl(200, 50%, 75%);
168        padding: 5px 15px 5px 15px;
169        cursor: pointer;
170}
171
172.SBGenButton:hover{
173        background: hsl(200, 50%, 85%);
174}
175
176.SBRootNode{
177        margin: 0.5em;
178        -webkit-border-radius: 10;
179        -moz-border-radius: 10;
180        border-radius: 10px;
181        border: none;
182        background: hsl(40, 50%, 75%);
183        padding: 5px 15px 5px 15px;
184}
185
186.SBPathProperty{
187        margin: 0.2em;
188}
189
190.SBPathNode{
191        margin: 0.5em;
192        -webkit-border-radius: 10;
193        -moz-border-radius: 10;
194        border-radius: 10px;
195        border: none;
196        background: hsl(0, 0%, 85%);
197        padding: 5px 15px 5px 15px;
198}
199
200.SBLeafNode{
201        margin: 0.5em;
202        -webkit-border-radius: 10;
203        -moz-border-radius: 10;
204        border-radius: 10px;
205        border: none;
206        background: hsl(150, 50%, 75%);
207        padding: 5px 15px 5px 15px;
208}
209
210.SBModalContents .SBModalButtons{
211        float: left;
212        text-align: center;
213}
214
215.SBModalButton{
216        display: inline-block;
217        width: 80%;
218        height: 26px;
219        -webkit-border-radius: 3;
220        -moz-border-radius: 3;
221        border-radius: 3px;
222        border: none;
223        color: #ffffff;
224        background: hsl(0, 50%, 75%);
225        padding: 3px 5px 3px 5px;
226        cursor: pointer;
227}
228
229.SBModalButton:hover{
230        background: hsl(0, 50%, 85%);
231}
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。