root/SPARQLBuilderWWW/web/sparqlbuilder.css @ 211

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

ノードの色変更(ルートと末端とそれ以外を区別)
セレクトボックスに表示する内容のJSON構造変更に合わせ更新

  • 属性 svn:mime-type の設定値 text/plain
行番号 
1@charset "UTF-8";
2
3
4body {
5        font-family: 'Lucida Grande', sans-serif;
6        font-size: 14px;
7        line-height: 1.6;
8        margin: 0;
9        padding: 10px;
10        height: 100%;
11}
12
13.SparqlBuilder {
14  background-color: rgba(128, 128, 128, 0.7);
15  position: absolute;
16  display: none;
17  top: 0;
18  left: 0;
19        height: 100%;
20}
21
22.SparqlBuilderContent {
23  background-color: rgba(255, 255, 255, 1);
24  margin: 50px;
25  padding: 50px;
26  border: 1px solid;
27}
28
29#sparqlBuilderShowpath {
30        position: absolute;
31        width: 200px;
32        height: auto;
33        padding: 15px;
34        -webkit-border-radius: 20px;
35        border-radius: 20px;
36        -webkit-box-shadow: 0px 0px 10px #000000;
37        box-shadow: 0px 0px 10px #000000;
38        background-image: -moz-linear-gradient(top, #eeeeff, #ffffff);
39        background-image: -ms-linear-gradient(top, #eeeeff, #ffffff);
40        background-image: -o-linear-gradient(top, #eeeeff, #ffffff);
41        background-image: -webkit-gradient(linear, center top, center bottom, from(#eeeeff), to(#ffffff));
42        background-image: -webkit-linear-gradient(top, #eeeeff, #ffffff);
43        background-image: linear-gradient(top, #eeeeff, #ffffff);
44        -webkit-background-clip: padding-box;
45        background-clip: padding-box;
46        display: none;
47        text-align: center;
48}
49#sparqlBuilderSelectpath {
50        font-size: 12px;
51}
52#sparqlBuilderSelectpath span {
53        margin-top: -1.2em;
54        display: block;
55        margin-bottom: -3.0em;
56        font-size: 14px;
57}
58#sparqlBuilderSelectpath h3 + span {
59        margin-top: 0;
60}
61#sparqlBuilderSelectpath span:before {
62        content: "笏�;
63        font-size: 70%;
64}
65#sparqlBuilderSelectpath span:after {
66        content: "竊�;
67}
68#sparqlBuilderSelectpath span:before,
69#sparqlBuilderSelectpath span:after {
70        display: block;
71}
72#sparqlBuilderSelectpath h3 + span:before {
73        content: normal;
74}
75#GenerateSPARQLButton {
76        font-size: 14px;
77        margin-top: 6px;
78}
79
80/* svg */
81.tnode {
82        font-size: 12px;
83        font-weight: bold;
84}
85.tlink {
86        font-size: 12px;
87}
88.tnode, .tlink {
89        text-shadow: 0  0  1px #fff;
90}
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。