-
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.
Merge pull request #23 from edrlab/content-preparation-based-on-new-l…
…ayout Content preparation based on new layout
- Loading branch information
Showing
140 changed files
with
1,213 additions
and
940 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
w/* | ||
|
||
# Logs | ||
logs | ||
*.log | ||
|
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.
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 |
---|---|---|
|
@@ -55,5 +55,5 @@ code { | |
} | ||
|
||
blockquote > p { | ||
@apply my-0 #{!important}; | ||
@apply my-0; | ||
} |
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,25 +1,226 @@ | ||
// Add your own custom styles here | ||
|
||
:is(.dark .content) :where(code):not(:where([class~="not-prose"], [class~="not-prose"] *)) { | ||
color: floralwhite; | ||
font-weight: 600; | ||
font-size: 0.875em; | ||
} | ||
:is(.dark .content) { | ||
color: floralwhite !important; | ||
font-weight: 600; | ||
font-size: 0.875em; | ||
} | ||
|
||
.code { | ||
color: floralwhite !important; | ||
} | ||
|
||
// :is(.dark .code) { | ||
// color: floralwhite !important; | ||
// } | ||
|
||
.cover { | ||
content: url(https://github.com/edrlab/qualebook/blob/content-preparation-based-on-new-layout/assets/images/cover-light.png?raw=true); | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
width: 50%; | ||
} | ||
|
||
:is(.dark .cover) { | ||
content: url(https://github.com/edrlab/qualebook/blob/content-preparation-based-on-new-layout/assets/images/cover-dark.png?raw=true); | ||
} | ||
|
||
|
||
.normal { | ||
text-decoration: underline; | ||
color: blue; | ||
color: darkblue; | ||
} | ||
|
||
body { | ||
background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2), transparent 10%) 0 0 / 20px 20px; | ||
background-color: floralwhite; | ||
} | ||
|
||
:is(.dark body) { | ||
background: radial-gradient(circle at center, rgba(235, 235, 235, 0.2), transparent 10%) 0 0 / 20px 20px; | ||
background-color: darkslateblue; | ||
color: floralwhite; | ||
} | ||
|
||
:is(.dark li) { | ||
color: floralwhite !important; | ||
} | ||
|
||
.taxonomies,.mb-8 { | ||
background-color: cornsilk; | ||
border-color: burlywood; | ||
padding: 1em; | ||
border-radius: 10px; | ||
} | ||
|
||
|
||
:is(.dark .taxonomies) { | ||
background-color: darkslateblue; | ||
border-color: darkslateblue; | ||
} | ||
|
||
|
||
:is(.dark .mb-8) { | ||
background-color: darkslateblue; | ||
border-color: cornflowerblue; | ||
padding: 1em; | ||
border-radius: 10px; | ||
} | ||
|
||
|
||
.taxonomiesticker { | ||
background-color: floralwhite; | ||
border: solid 2px burlywood; | ||
} | ||
|
||
:is(.dark .taxonomiesticker) { | ||
background-color: darkslateblue; | ||
border: solid 2px cornflowerblue; | ||
} | ||
|
||
bg-body { | ||
background-color: cornsilk; | ||
border-color: burlywood; | ||
} | ||
|
||
bg-darkmode-body { | ||
background-color: darkslateblue; | ||
border-color: cornflowerblue; | ||
} | ||
|
||
blockquote { | ||
background-color: cornsilk !important; | ||
border-color: burlywood !important; | ||
} | ||
|
||
:is(.dark blockquote) { | ||
background-color: darkslateblue !important; | ||
border-color: cornflowerblue !important; | ||
color: floralwhite !important; | ||
} | ||
|
||
.bouton { | ||
padding: 1em; | ||
border-radius: 10px; | ||
border: solid 1px; | ||
border-color: burlywood; | ||
background-color: floralwhite; | ||
font-variant: bold; | ||
font-weight: bold; | ||
} | ||
|
||
.btn { | ||
padding: 1em; | ||
border-radius: 10px; | ||
border: solid 1px; | ||
border-color: burlywood; | ||
background-color: burlywood; | ||
font-variant: bold; | ||
font-weight: bold; | ||
color: darkslateblue; | ||
} | ||
|
||
:is(.dark .btn) { | ||
padding: 1em; | ||
border-radius: 10px; | ||
border: solid 1px; | ||
border-color: cornflowerblue; | ||
background-color: cornflowerblue; | ||
font-variant: bold; | ||
font-weight: bold; | ||
} | ||
|
||
:is(.dark .bouton) { | ||
padding: 1em; | ||
border-radius: 10px; | ||
border: solid 1px; | ||
border-color: floralwhite; | ||
background-color: darkslateblue; | ||
font-variant: bold; | ||
font-weight: bold; | ||
color: floralwhite; | ||
} | ||
|
||
:is(.dark a) { | ||
color: floralwhite; | ||
} | ||
|
||
:is(.dark .pagetitle) { | ||
background-color: darkslateblue; | ||
color: floralwhite; | ||
} | ||
|
||
.pagetitle { | ||
padding: 1em; | ||
// border-radius: 2%; | ||
// border: solid 1px; | ||
// border-color: burlywood !important; | ||
background-color: floralwhite; | ||
font-variant: bold; | ||
font-weight: bold; | ||
color: darkslateblue; | ||
} | ||
|
||
footer { | ||
background-color: cornsilk !important; | ||
border-top: solid 1px; | ||
border-color: burlywood; | ||
} | ||
|
||
:is(.dark footer) { | ||
background-color: darkslateblue !important; | ||
border-color: floralwhite; | ||
border-bottom: solid 1px; | ||
color: floralwhite; | ||
} | ||
|
||
header { | ||
background-color: cornsilk !important; | ||
border-color: burlywood; | ||
border-bottom: solid 1px; | ||
} | ||
|
||
:is(.dark header) { | ||
background-color: darkslateblue !important; | ||
border-color: floralwhite; | ||
border-bottom: solid 1px; | ||
color: floralwhite; | ||
} | ||
|
||
h1{ | ||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 { | ||
font-size: 3rem; | ||
color: DarkSlateBlue; | ||
} | ||
|
||
h2{ | ||
font-size: 1rem; | ||
:is(.dark) h1, | ||
:is(.dark) h2, | ||
:is(.dark) h3, | ||
:is(.dark) h4, | ||
:is(.dark) h5, | ||
:is(.dark) h6 { | ||
color: floralwhite; | ||
} | ||
h3{ | ||
font-size: 1rem; | ||
|
||
h1 { | ||
font-size: 3rem; | ||
} | ||
h4{ | ||
|
||
h2, h3, h4 { | ||
font-size: 1rem; | ||
} | ||
h5{ | ||
|
||
h5 { | ||
font-size: 1rem; | ||
color: DarkSlateBlue; | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,28 +1,32 @@ | ||
############# English navigation ############## | ||
|
||
# main menu | ||
[[main]] | ||
name = "Home" | ||
url = "" | ||
weight = 1 | ||
|
||
[[main]] | ||
name = "About" | ||
url = "about/" | ||
weight = 2 | ||
|
||
# [[main]] | ||
# name = "Authors" | ||
# url = "authors/" | ||
# weight = 2 | ||
|
||
[[main]] | ||
name = "Rules" | ||
url = "rules/" | ||
weight = 3 | ||
|
||
[[main]] | ||
parent = "Rules" | ||
# parent = "Pages" | ||
name = "Categories" | ||
url = "categories/" | ||
|
||
[[main]] | ||
parent = "Rules" | ||
# parent = "Pages" | ||
name = "Tags" | ||
url = "tags/" | ||
|
||
[[main]] | ||
parent = "Rules" | ||
name = "Steps" | ||
url = "steps/" |
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
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 |
---|---|---|
@@ -1,3 +1,13 @@ | ||
--- | ||
title: "Authors" | ||
|
||
--- | ||
|
||
|
||
[edrlab.org](https://www.edrlab.org/about/) | ||
|
||
<span lang="fr">Groupe Normes & Standards de la [Commission Numérique du Syndicat national de l'édition](https://www.sne.fr/numerique-2/). </span> | ||
|
||
|
||
[OPQUAST](https://www.opquast.com/a-propos/) | ||
|
Oops, something went wrong.