-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsparql-editor.css
129 lines (106 loc) · 2.45 KB
/
sparql-editor.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/* pilfered from http://sparql.org/StyleSheets/joseki.css */
body {
font-family: Verdana, Arial, Helvetica, sans-serif ;
font-size: 10pt ;
line-height: 18pt ;
color: black;
background: white ;
margin: 0 ;
}
p { margin-left: 2% ; margin-right: 2% ; }
/* Makes lists a little tighter
li { line-height: 14pt ; }
*/
table {
font-family: Verdana, Arial, sans-serif ;
font-size: 10pt ;
border-collapse: collapse;
border: 1px solid black ;
cellspacing: 0 ;
cellpadding: 0
}
td {
border: 1px solid #808080 ;
empty-cells: show;
padding: 5 ;
spacing: 0 ;
vertical-align:top;
text-align:center
}
th {
border: 1px solid #808080 ;
empty-cells: show;
padding: 5 ;
vertical-align:top;
text-align:center
}
.box
{ margin-left : 5% ;
margin-right : 5% ;
border: solid ;
border-width: thin;
background-color: #F0F0F0;
padding: 2mm;
page-break-inside: avoid ;
}
.noindent { margin-left: -5% ; margin-right: -5%; }
.moreindent { margin-left: 5% ; margin-right: 5%; }
/* Use this for the document title as displayed on the page at the top. */
h1 {
text-align:center ;
font-size: 14pt;
line-height: 24pt ;
font-weight: bold;
color:#000;
background:#CADFF4;
padding: 0 ;
margin: 0 ;
padding-left: 1ex;
padding-right: 1ex;
text-align:center;
}
h2 {
font-size: 12pt;
line-height: 16pt ;
font-size: 110%;
font-weight: bold;
color: #003399;
background:#CADFF4;
margin-bottom:5px;
padding-left: 1ex;
padding-right: 1ex;
}
h3, h4, h5 {
font-size: 100%;
font-weight: bold;
margin-bottom:3px;
}
ul { list-style-type: disc }
dt { font-weight: bold }
/* Change background/foreground colour on hover */
A:link { color: rgb(0, 0, 255) } /* for unvisited links */
A:hover { color: rgb(255, 0, 0) } /* when mouse is over link */
/* No extra space between paragraphs : inherits from body */
pre {
font-family: monospace;
font-size: 10pt ;
line-height: 14pt ;
margin-top: 1 ;
margin-bottom: 1 ;
margin-left: 5ex ;
}
/* Some general utility definitions */
.centered {
text-align: center;
}
.caption {
text-align: center;
font-size: smaller;
}
code {
font-size: 10pt;
}
.footnote {
font-size: smaller;
border-top: thin solid gray;
}