-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
6,742 additions
and
468 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/*-- Definite van BlockQuotes (uitgelichte tekstblokken) ----------------------------*/ | ||
blockquote | ||
{ | ||
font-style: italic; | ||
font-size: 95%; | ||
background-color: whitesmoke !important; | ||
} | ||
|
||
blockquote::before { | ||
content: open-quote; | ||
margin-right: -0.2em; | ||
} | ||
|
||
blockquote::after { | ||
content: close-quote; | ||
margin-left: -0.3em; | ||
} | ||
|
||
blockquote { | ||
quotes: "“" "”" ; | ||
} | ||
|
||
blockquote p { | ||
display: inline; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/*This css code defines the styling of a dfn block*/ | ||
/*It is based on the styling of an example block */ | ||
/*from the w3c code*/ | ||
/*It uses a css counter to number the elements*/ | ||
|
||
/*Set the scope of the counter to body of ReSpec Doc*/ | ||
body.h-entry { | ||
counter-reset: dfn-counter 0; | ||
} | ||
|
||
:is(aside,div).definition, | ||
div.illegal-example { | ||
padding: 0.5em; | ||
margin: 1em 0; | ||
position: relative; | ||
clear: both; | ||
} | ||
|
||
:is(aside,div).definition { | ||
border-left-width: 0.5em; | ||
border-left-style: solid; | ||
border-color: #0F80CC; | ||
background: #e8f3fa; | ||
/*set the counter interval value*/ | ||
counter-increment: dfn-counter 1; | ||
} | ||
|
||
/*Add string "DEFINITIE" and counter to dfn block*/ | ||
dfn:before { | ||
/*call the counter*/ | ||
/*content:"DEFINITIE " counter(dfn-counter) ": ";*/ | ||
content:"DEFINITIE : "; | ||
/*overide w3c font-weight*/ | ||
font-weight: normal; | ||
} | ||
|
||
dfn { | ||
/*overide w3c font-weight*/ | ||
font-style: normal; | ||
} | ||
|
||
/*Put the explanation on the next line*/ | ||
dfn:after { | ||
content: "\A"; | ||
white-space: pre-wrap; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/*-- Definite van code---------- -------------------------------------------------------*/ | ||
code | ||
{ | ||
font-weight: bold; | ||
color:#205886; | ||
background-color:#F7FAFD; | ||
border-radius:4px; | ||
padding: 3px; | ||
/* font-family: lucida console; | ||
font-size: 90%;*/ | ||
} | ||
span.new | ||
{ | ||
font-weight: bold; | ||
color:#e00; | ||
background-color: #feffff; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/*-- Definite van tabellen ---------------------------------------------------------*/ | ||
table | ||
{ | ||
empty-cells: show; | ||
min-width: 90%; | ||
} | ||
|
||
/* geef table head minder gewicht*/ | ||
th | ||
{ | ||
font-weight: normal; | ||
} | ||
|
||
/* lege kolommen hebben deze minimale breedte */ | ||
td | ||
{ | ||
min-width: 100px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
/*-- Definite turtle example -------------------------------------------------------*/ | ||
pre.ex-turtle { | ||
margin-left: 0; | ||
padding: 0 2em; | ||
margin-top: 1.5em; | ||
padding: 1em 1em 0 1em; | ||
} | ||
pre.ex-turtle:before | ||
{ | ||
background: white; | ||
display: block; | ||
font-family: sans-serif; | ||
font-size: 90%; | ||
margin: -1em 0 0.4em -1em; | ||
padding: 0.2em 1em; | ||
} | ||
pre.ex-turtle | ||
{ | ||
background: #eeb; | ||
} | ||
pre.ex-turtle, pre.ex-turtle:before | ||
{ | ||
border: 1px solid #cc9; | ||
} | ||
pre.ex-turtle:before | ||
{ | ||
color: #996; | ||
content: "voorbeeld RDF representatie"; | ||
width: 13em; | ||
} | ||
|
||
/*-- Definite SPARQL uitwerken -------------------------------------------------------*/ | ||
pre.ex-sparql { | ||
margin-left: 0; | ||
padding: 0 2em; | ||
margin-top: 1.5em; | ||
padding: 1em 1em 0 1em; | ||
} | ||
pre.ex-sparql:before | ||
{ | ||
background: white; | ||
display: block; | ||
font-family: sans-serif; | ||
font-size: 90%; | ||
margin: -1em 0 0.4em -1em; | ||
padding: 0.2em 1em; | ||
} | ||
pre.ex-sparql | ||
{ | ||
background: #eeb; | ||
} | ||
pre.ex-sparql, pre.ex-sparql:before | ||
{ | ||
border: 1px solid #cc9; | ||
} | ||
pre.ex-sparql:before | ||
{ | ||
color: #996; | ||
content: "SPARQL"; | ||
width: 13em; | ||
} | ||
|
||
/*-- Definite Generiek Example ---------------------------------------------------*/ | ||
pre.ex-generic { | ||
margin-left: 0; | ||
padding: 0 2em; | ||
margin-top: 1.5em; | ||
padding: 1em 1em 0 1em; | ||
} | ||
pre.ex-generic:before | ||
{ | ||
background: white; | ||
display: block; | ||
font-family: sans-serif; | ||
font-size: 90%; | ||
margin: -1em 0 0.4em -1em; | ||
padding: 0.2em 1em; | ||
} | ||
pre.ex-generic | ||
{ | ||
background: lightblue; | ||
} | ||
pre.ex-generic, pre.ex-generic:before | ||
{ | ||
border: 1px solid darkslateblue; | ||
} | ||
pre.ex-generic:before | ||
{ | ||
color:darkslategray; | ||
content: "voorbeeld"; | ||
width: 5em; | ||
} | ||
|
||
.ldex | ||
{ | ||
border-color: darkkhaki; | ||
border-style: solid; | ||
background-color: khaki; | ||
color: darkred; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.