root/SPARQLBuilderWWW/web/newsparqlbuilder.css @ 241

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

細かな調整

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