summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/style.css62
-rw-r--r--sord/sord.h5
2 files changed, 42 insertions, 25 deletions
diff --git a/doc/style.css b/doc/style.css
index 2e1b4c9..2cf7467 100644
--- a/doc/style.css
+++ b/doc/style.css
@@ -1,4 +1,5 @@
body {
+ font-size: 100%;
font-family: sans-serif;
}
@@ -6,10 +7,35 @@ body {
display: none;
}
-/* @group Heading Levels */
+h1 {
+ font-size: 160%;
+ font-weight: 750;
+}
+
h2 {
- margin-top: 1em;
- margin-bottom: 0.25em;
+ font-size: 140%;
+ font-weight: 650;
+}
+
+h3 {
+ font-size: 130%;
+ font-weight: 600;
+
+}
+
+h4 {
+ font-size: 120%;
+ font-weight: 550;
+}
+
+h5 {
+ font-size: 110%;
+ font-weight: 500;
+}
+
+h6 {
+ font-size: 100%;
+ font-weight: 450;
}
p {
@@ -43,7 +69,6 @@ p.endtd {
margin-bottom: 2px;
}
-/* @end */
caption {
font-weight: 700;
}
@@ -143,7 +168,7 @@ div.ah {
margin-bottom: 3px;
margin-top: 3px;
padding: .2em;
- border: solid thin #333;
+ border: thin solid #333;
}
div.groupHeader {
@@ -281,7 +306,7 @@ th.dirtab {
hr {
height: 0;
border: none;
- border-top: 1px solid #BBB;
+ border-top: 1px solid #DDD;
margin: 3em 0 1em;
}
@@ -295,7 +320,7 @@ table.memberdecls {
}
.mdescLeft,.mdescRight,.memItemLeft,.memItemRight,.memTemplItemLeft,.memTemplItemRight,.memTemplParams {
- background-color: #F9F9F9;
+ background-color: #FBFBFB;
margin: 0;
padding: 0.25ex;
}
@@ -305,7 +330,7 @@ table.memberdecls {
}
.memItemLeft,.memItemRight,.memTemplParams {
- border-top: 1px solid #DDD;
+ border-top: 1px solid #EEE;
}
.memItemLeft,.memTemplItemLeft {
@@ -325,7 +350,6 @@ table.memberdecls {
font-size: 80%;
color: #4665A2;
font-weight: 400;
- margin-left: 3px;
}
.memnav {
@@ -339,31 +363,25 @@ table.memberdecls {
.memitem {
padding: 0;
- margin-bottom: 10px;
+ margin: 1ex 0 2ex 0;
}
.memname {
white-space: nowrap;
font-weight: 700;
- margin-left: 6px;
}
.memproto {
- border-top: 1px solid #A8B8D9;
- border-left: 1px solid #A8B8D9;
- border-right: 1px solid #A8B8D9;
- padding: 6px 0;
+ border-top: 1px solid #DDD;
+ padding: 0.5ex;
color: #253555;
font-weight: 700;
- background-color: #EEE;
+ background-color: #F3F3F3;
}
.memdoc {
- border-bottom: 1px solid #A8A8A8;
- border-left: 1px solid #A8A8A8;
- border-right: 1px solid #A8A8A8;
- padding: 2px 5px;
- background-color: #F9F9F9;
+ padding: 1ex;
+ background-color: #FBFBFB;
border-top-width: 0;
}
@@ -495,7 +513,7 @@ table.doxtable th {
height: 30px;
line-height: 30px;
color: #8AA0CC;
- border: solid 1px #C2CDE4;
+ border: 1px solid #C2CDE4;
overflow: hidden;
margin: 0;
padding: 0;
diff --git a/sord/sord.h b/sord/sord.h
index f496811..1258471 100644
--- a/sord/sord.h
+++ b/sord/sord.h
@@ -262,9 +262,8 @@ sord_node_equals(const SordNode a,
@param world The world in which to make this store.
@param indices SordIndexOption flags (e.g. SORD_SPO|SORD_OPS). Be sure to
- choose indices such that there is an index where the most significant
- node(s) are not variables for your queries. For example, if you are going
- to make (? P O) queries, you should enable either SORD_OPS or SORD_POS.
+ enable an index where the most significant node(s) are not variables in your
+ queries (e.g. to make (? P O) queries, enable either SORD_OPS or SORD_POS).
@param graphs If true, store (and index) graph contexts.
*/