parent
a5f0de5ae0
commit
961ea75e13
4 changed files with 15 additions and 15 deletions
|
@ -1,6 +1,6 @@
|
|||
# clear-typography
|
||||
# Moineau
|
||||
|
||||
**Clear-Typography** est un projet de feuille de style minimale inspirée des sites [bettermotherfuckingwebsite](http://bettermotherfuckingwebsite.com/) et [thebestmotherfucking.website](https://thebestmotherfucking.website/). Son but est d'être utilisé en remplacement du style par défaut de navigateur web pour des pages web "brutes", tout en restant agréable et fonctionnel.
|
||||
**Moineau** est un projet de feuille de style minimale inspirée des sites [bettermotherfuckingwebsite](http://bettermotherfuckingwebsite.com/) et [thebestmotherfucking.website](https://thebestmotherfucking.website/). Son but est d'être utilisé en remplacement du style par défaut de navigateur web pour des pages web "brutes", tout en restant agréable et fonctionnel.
|
||||
|
||||
Son but est d'avoir un style agréable à l'oeil et fonctionnel, assez minimaliste, utilisant les balises et propriété de l'HTML brut. Il n'y a pas de classe utilisé, ni de fonctionnalité de layout (à l'exception d'un support des navbar via `<nav>` qui donne des navbar horizontales).
|
||||
|
||||
|
@ -8,7 +8,7 @@ Si le projet utilise surtout les balises standard du HTML, quelques utilitaires
|
|||
|
||||
## Fonctionnalités
|
||||
|
||||
Clear-typography supporte les fonctionnalités suivantes de base :
|
||||
moineau supporte les fonctionnalités suivantes de base :
|
||||
|
||||
- Feuille de style simple et légère (TBD ko)
|
||||
- Responsive (en tout cas le plus possible)
|
||||
|
|
10
generate.js
10
generate.js
|
@ -12,11 +12,11 @@ function parse(inFile, outFile) {
|
|||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Clear-Typography.css</title>
|
||||
<link href="css/clear-typography.min.css" rel="stylesheet">
|
||||
<title>moineau.css</title>
|
||||
<link href="css/moineau.min.css" rel="stylesheet">
|
||||
<link
|
||||
rel="icon"
|
||||
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🐤</text></svg>"
|
||||
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🐦</text></svg>"
|
||||
/>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -25,7 +25,7 @@ function parse(inFile, outFile) {
|
|||
<ul>
|
||||
<li><a href="/">Accueil</a></li>
|
||||
<li><a href="/exemples.html">Exemples</a></li>
|
||||
<li><a href="https://git.kobold.cafe/kazhnuz/clear-typography">Sources</a></li>
|
||||
<li><a href="https://git.kobold.cafe/kazhnuz/moineau">Sources</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
@ -36,7 +36,7 @@ function parse(inFile, outFile) {
|
|||
</main>
|
||||
<hr>
|
||||
<footer class="flex">
|
||||
<div><small>Clear-Typography</small></div>
|
||||
<div><small>moineau</small></div>
|
||||
<div><small>CC BY <a href="https://kazhnuz.space/">Kazhnuz</a></small></div>
|
||||
</footer>
|
||||
</body>
|
||||
|
|
14
package.json
14
package.json
|
@ -1,14 +1,14 @@
|
|||
{
|
||||
"name": "clear-typography.css",
|
||||
"name": "moineau.css",
|
||||
"version": "2.99.0",
|
||||
"description": "A minimal and simple css stylesheet, inspired by motherfuckingwebsite",
|
||||
"main": "scss/clear-typography.scss",
|
||||
"main": "scss/moineau.scss",
|
||||
"scripts": {
|
||||
"scss": "sass --watch scss/clear-typography.scss dist/css/clear-typography.css",
|
||||
"scss-no-source-map": "sass --watch --no-source-map scss/clear-typography.scss dist/css/clear-typography.css",
|
||||
"minify": "sass --watch scss/clear-typography.scss --style compressed dist/css/clear-typography.min.css",
|
||||
"minify-no-source-map": "sass --watch --no-source-map scss/clear-typography.scss --style compressed dist/css/clear-typography.min.css",
|
||||
"build": "sass scss/clear-typography.scss dist/css/clear-typography.css && sass scss/clear-typography.scss --style compressed dist/css/clear-typography.min.css",
|
||||
"scss": "sass --watch scss/moineau.scss dist/css/moineau.css",
|
||||
"scss-no-source-map": "sass --watch --no-source-map scss/moineau.scss dist/css/moineau.css",
|
||||
"minify": "sass --watch scss/moineau.scss --style compressed dist/css/moineau.min.css",
|
||||
"minify-no-source-map": "sass --watch --no-source-map scss/moineau.scss --style compressed dist/css/moineau.min.css",
|
||||
"build": "sass scss/moineau.scss dist/css/moineau.css && sass scss/moineau.scss --style compressed dist/css/moineau.min.css",
|
||||
"serve": "http-server ./dist & npm run site & npm run minify",
|
||||
"site": "node generate.js"
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue