Initial commit

This commit is contained in:
Romain de Laage 2020-05-06 18:15:40 +02:00
commit db791bd0c8
Signed by: rdelaage
GPG Key ID: 534845FADDF0C329
24 changed files with 116 additions and 0 deletions

11
.htaccess Normal file
View File

@ -0,0 +1,11 @@
AddType application/vnd.ms-fontobject .eot
AddType application/x-font-opentype .otf
AddType image/svg+xml .svg
AddType application/x-font-ttf .ttf
AddType application/font-woff .woff
AddType application/font-woff2 .woff2
<FilesMatch "\.(ttf|otf|eot|woff|woff2)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>

5
Adonay.css Normal file
View File

@ -0,0 +1,5 @@
@font-face{
font-family: Adonay;
src: url("https://css.rdelaage.ovh/Adonay.ttf") format("TrueType"),
url("https://css.rdelaage.ovh/Adonay.otf") format("OpenType");
}

BIN
Adonay.otf Executable file

Binary file not shown.

BIN
Adonay.ttf Executable file

Binary file not shown.

BIN
FantasqueSansMono-Bold.otf Normal file

Binary file not shown.

BIN
FantasqueSansMono-Bold.ttf Normal file

Binary file not shown.

BIN
FantasqueSansMono-Bold.woff Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

28
FantasqueSansMono.css Normal file
View File

@ -0,0 +1,28 @@
@font-face{
font-family: FantasqueSansMono;
src: url("https://css.rdelaage.ovh/FantasqueSansMono-Regular.ttf") format("TrueType"),
url("https://css.rdelaage.ovh/FantasqueSansMono-Regular.otf") format("OpenType"),
url("https://css.rdelaage.ovh/FantasqueSansMono-Regular.woff") format("woff"),
url("https://css.rdelaage.ovh/FantasqueSansMono-Regular.woff2") format("woff2");
}
@font-face{
font-family: FantasqueSansMono-Bold;
src: url("https://css.rdelaage.ovh/FantasqueSansMono-Bold.ttf") format("TrueType"),
url("https://css.rdelaage.ovh/FantasqueSansMono-Bold.otf") format("OpenType"),
url("https://css.rdelaage.ovh/FantasqueSansMono-Bold.woff") format("woff"),
url("https://css.rdelaage.ovh/FantasqueSansMono-Bold.woff2") format("woff2");
}
@font-face{
font-family: FantasqueSansMono-Italic;
src: url("https://css.rdelaage.ovh/FantasqueSansMono-Italic.ttf") format("TrueType"),
url("https://css.rdelaage.ovh/FantasqueSansMono-Italic.otf") format("OpenType"),
url("https://css.rdelaage.ovh/FantasqueSansMono-Italic.woff") format("woff"),
url("https://css.rdelaage.ovh/FantasqueSansMono-Italic.woff2") format("woff2");
}
@font-face{
font-family: FantasqueSansMono-BoldItalic;
src: url("https://css.rdelaage.ovh/FantasqueSansMono-BoldItalic.ttf") format("TrueType"),
url("https://css.rdelaage.ovh/FantasqueSansMono-BoldItalic.otf") format("OpenType"),
url("https://css.rdelaage.ovh/FantasqueSansMono-BoldItalic.woff") format("woff"),
url("https://css.rdelaage.ovh/FantasqueSansMono-BoldItalic.woff2") format("woff2");
}

BIN
GreatVibes-Regular.otf Normal file

Binary file not shown.

4
GreatVibes.css Normal file
View File

@ -0,0 +1,4 @@
@font-face{
font-family: GreatVibes;
src: url("https://css.rdelaage.ovh/GreatVibes-Regular.otf") format("OpenType");
}

68
grade.css Normal file
View File

@ -0,0 +1,68 @@
/*
Simple Grade system in HTML and CSS
You can use it simply by add this stylesheet in your HTML page and using
<span class="grade-X"></span> where X is an integer between 0 and 5 included
Written by Romain de Laage
MIT Licence
*/
*{
--colored: #10A010;
--uncolored: #C0C0C0;
}
.grade-0::before{
content: "";
color: var(--colored);
}
.grade-0::after{
content: "■■■■■";
color: var(--uncolored);
}
.grade-1::before{
content: "■";
color: var(--colored);
}
.grade-1::after{
content: "■■■■";
color: var(--uncolored);
}
.grade-2::before{
content: "■■";
color: var(--colored);
}
.grade-2::after{
content: "■■■";
color: var(--uncolored);
}
.grade-3::before{
content: "■■■";
color: var(--colored);
}
.grade-3::after{
content: "■■";
color: var(--uncolored);
}
.grade-4::before{
content: "■■■■";
color: var(--colored);
}
.grade-4::after{
content: "■";
color: var(--uncolored);
}
.grade-5::before{
content: "■■■■■";
color: var(--colored);
}
.grade-5::after{
content: "";
color: var(--uncolored);
}