just adding stuff
This commit is contained in:
parent
3c7ff79348
commit
1475a68b45
|
@ -2,20 +2,20 @@ body {
|
|||
/* white to black linear noise gradient spanning from top to bottom */
|
||||
min-height: 100vh;
|
||||
background-image:
|
||||
url('noise.svg'),
|
||||
url('../svg/noise.svg'),
|
||||
linear-gradient(to bottom right, #2e3551, #0d747d);
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: inter;
|
||||
src: url("./assets/fonts/inter/Inter-Regular.ttf");
|
||||
src: url("../fonts/inter/Inter-Regular.woff");
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
@font-face{
|
||||
font-family: inter;
|
||||
src: url("./assets/fonts/inter/Inter-Medium.ttf");
|
||||
src: url("../fonts/inter/Inter-Medium.woff");
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
@ -23,7 +23,7 @@ body {
|
|||
|
||||
@font-face{
|
||||
font-family: inter;
|
||||
src: url("./assets/fonts/inter/Inter-Bold.ttf");
|
||||
src: url("../fonts/inter/Inter-Bold.woff");
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
Open *demo.html* to see a list of all the glyphs in your font along with their codes/ligatures.
|
||||
|
||||
To use the generated font in desktop programs, you can install the TTF font. In order to copy the character associated with each icon, refer to the text box at the bottom right corner of each glyph in demo.html. The character inside this text box may be invisible; but it can still be copied. See this guide for more info: https://icomoon.io/#docs/local-fonts
|
||||
|
||||
You won't need any of the files located under the *demo-files* directory when including the generated font in your own projects.
|
||||
|
||||
You can import *selection.json* back to the IcoMoon app using the *Import Icons* button (or via Main Menu → Manage Projects) to retrieve your icon selection.
|
|
@ -0,0 +1,164 @@
|
|||
body {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: sans-serif;
|
||||
font-size: 1em;
|
||||
line-height: 1.5;
|
||||
color: #555;
|
||||
background: #fff;
|
||||
}
|
||||
h1 {
|
||||
font-size: 1.5em;
|
||||
font-weight: normal;
|
||||
}
|
||||
small {
|
||||
font-size: .66666667em;
|
||||
}
|
||||
a {
|
||||
color: #e74c3c;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover, a:focus {
|
||||
box-shadow: 0 1px #e74c3c;
|
||||
}
|
||||
.bshadow0, input {
|
||||
box-shadow: inset 0 -2px #e7e7e7;
|
||||
}
|
||||
input:hover {
|
||||
box-shadow: inset 0 -2px #ccc;
|
||||
}
|
||||
input, fieldset {
|
||||
font-family: sans-serif;
|
||||
font-size: 1em;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
}
|
||||
input {
|
||||
color: inherit;
|
||||
line-height: 1.5;
|
||||
height: 1.5em;
|
||||
padding: .25em 0;
|
||||
}
|
||||
input:focus {
|
||||
outline: none;
|
||||
box-shadow: inset 0 -2px #449fdb;
|
||||
}
|
||||
.glyph {
|
||||
font-size: 16px;
|
||||
width: 15em;
|
||||
padding-bottom: 1em;
|
||||
margin-right: 4em;
|
||||
margin-bottom: 1em;
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
}
|
||||
.liga {
|
||||
width: 80%;
|
||||
width: calc(100% - 2.5em);
|
||||
}
|
||||
.talign-right {
|
||||
text-align: right;
|
||||
}
|
||||
.talign-center {
|
||||
text-align: center;
|
||||
}
|
||||
.bgc1 {
|
||||
background: #f1f1f1;
|
||||
}
|
||||
.fgc1 {
|
||||
color: #999;
|
||||
}
|
||||
.fgc0 {
|
||||
color: #000;
|
||||
}
|
||||
p {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.mvm {
|
||||
margin-top: .75em;
|
||||
margin-bottom: .75em;
|
||||
}
|
||||
.mtn {
|
||||
margin-top: 0;
|
||||
}
|
||||
.mtl, .mal {
|
||||
margin-top: 1.5em;
|
||||
}
|
||||
.mbl, .mal {
|
||||
margin-bottom: 1.5em;
|
||||
}
|
||||
.mal, .mhl {
|
||||
margin-left: 1.5em;
|
||||
margin-right: 1.5em;
|
||||
}
|
||||
.mhmm {
|
||||
margin-left: 1em;
|
||||
margin-right: 1em;
|
||||
}
|
||||
.mls {
|
||||
margin-left: .25em;
|
||||
}
|
||||
.ptl {
|
||||
padding-top: 1.5em;
|
||||
}
|
||||
.pbs, .pvs {
|
||||
padding-bottom: .25em;
|
||||
}
|
||||
.pvs, .pts {
|
||||
padding-top: .25em;
|
||||
}
|
||||
.unit {
|
||||
float: left;
|
||||
}
|
||||
.unitRight {
|
||||
float: right;
|
||||
}
|
||||
.size1of2 {
|
||||
width: 50%;
|
||||
}
|
||||
.size1of1 {
|
||||
width: 100%;
|
||||
}
|
||||
.clearfix:before, .clearfix:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
.clearfix:after {
|
||||
clear: both;
|
||||
}
|
||||
.hidden-true {
|
||||
display: none;
|
||||
}
|
||||
.textbox0 {
|
||||
width: 3em;
|
||||
background: #f1f1f1;
|
||||
padding: .25em .5em;
|
||||
line-height: 1.5;
|
||||
height: 1.5em;
|
||||
}
|
||||
#testDrive {
|
||||
display: block;
|
||||
padding-top: 24px;
|
||||
line-height: 1.5;
|
||||
}
|
||||
.fs0 {
|
||||
font-size: 16px;
|
||||
}
|
||||
.fs1 {
|
||||
font-size: 32px;
|
||||
}
|
||||
.fs2 {
|
||||
font-size: 28px;
|
||||
}
|
||||
.fs3 {
|
||||
font-size: 32px;
|
||||
}
|
||||
.fs4 {
|
||||
font-size: 24px;
|
||||
}
|
||||
.fs5 {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
|
@ -0,0 +1,30 @@
|
|||
if (!('boxShadow' in document.body.style)) {
|
||||
document.body.setAttribute('class', 'noBoxShadow');
|
||||
}
|
||||
|
||||
document.body.addEventListener("click", function(e) {
|
||||
var target = e.target;
|
||||
if (target.tagName === "INPUT" &&
|
||||
target.getAttribute('class').indexOf('liga') === -1) {
|
||||
target.select();
|
||||
}
|
||||
});
|
||||
|
||||
(function() {
|
||||
var fontSize = document.getElementById('fontSize'),
|
||||
testDrive = document.getElementById('testDrive'),
|
||||
testText = document.getElementById('testText');
|
||||
function updateTest() {
|
||||
testDrive.innerHTML = testText.value || String.fromCharCode(160);
|
||||
if (window.icomoonLiga) {
|
||||
window.icomoonLiga(testDrive);
|
||||
}
|
||||
}
|
||||
function updateSize() {
|
||||
testDrive.style.fontSize = fontSize.value + 'px';
|
||||
}
|
||||
fontSize.addEventListener('change', updateSize, false);
|
||||
testText.addEventListener('input', updateTest, false);
|
||||
testText.addEventListener('change', updateTest, false);
|
||||
updateSize();
|
||||
}());
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 378 KiB |
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load Diff
|
@ -1 +0,0 @@
|
|||
25968bc5-b2a0-47c5-8285-d12c50f998c7
|
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.
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.
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.
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.
Binary file not shown.
|
@ -1,43 +0,0 @@
|
|||
Copyright (c) 2016-2018 The Inter UI Project Authors (me@rsms.me)
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
@ -0,0 +1,200 @@
|
|||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: normal;
|
||||
font-weight: 100;
|
||||
font-display: swap;
|
||||
src: url("Inter-Thin.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-Thin.woff?v=3.19") format("woff");
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: italic;
|
||||
font-weight: 100;
|
||||
font-display: swap;
|
||||
src: url("Inter-ThinItalic.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-ThinItalic.woff?v=3.19") format("woff");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: normal;
|
||||
font-weight: 200;
|
||||
font-display: swap;
|
||||
src: url("Inter-ExtraLight.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-ExtraLight.woff?v=3.19") format("woff");
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: italic;
|
||||
font-weight: 200;
|
||||
font-display: swap;
|
||||
src: url("Inter-ExtraLightItalic.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-ExtraLightItalic.woff?v=3.19") format("woff");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
font-display: swap;
|
||||
src: url("Inter-Light.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-Light.woff?v=3.19") format("woff");
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: italic;
|
||||
font-weight: 300;
|
||||
font-display: swap;
|
||||
src: url("Inter-LightItalic.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-LightItalic.woff?v=3.19") format("woff");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url("Inter-Regular.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-Regular.woff?v=3.19") format("woff");
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url("Inter-Italic.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-Italic.woff?v=3.19") format("woff");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: normal;
|
||||
font-weight: 500;
|
||||
font-display: swap;
|
||||
src: url("Inter-Medium.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-Medium.woff?v=3.19") format("woff");
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: italic;
|
||||
font-weight: 500;
|
||||
font-display: swap;
|
||||
src: url("Inter-MediumItalic.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-MediumItalic.woff?v=3.19") format("woff");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: normal;
|
||||
font-weight: 600;
|
||||
font-display: swap;
|
||||
src: url("Inter-SemiBold.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-SemiBold.woff?v=3.19") format("woff");
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: italic;
|
||||
font-weight: 600;
|
||||
font-display: swap;
|
||||
src: url("Inter-SemiBoldItalic.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-SemiBoldItalic.woff?v=3.19") format("woff");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url("Inter-Bold.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-Bold.woff?v=3.19") format("woff");
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
font-display: swap;
|
||||
src: url("Inter-BoldItalic.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-BoldItalic.woff?v=3.19") format("woff");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: normal;
|
||||
font-weight: 800;
|
||||
font-display: swap;
|
||||
src: url("Inter-ExtraBold.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-ExtraBold.woff?v=3.19") format("woff");
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: italic;
|
||||
font-weight: 800;
|
||||
font-display: swap;
|
||||
src: url("Inter-ExtraBoldItalic.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-ExtraBoldItalic.woff?v=3.19") format("woff");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: normal;
|
||||
font-weight: 900;
|
||||
font-display: swap;
|
||||
src: url("Inter-Black.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-Black.woff?v=3.19") format("woff");
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Inter';
|
||||
font-style: italic;
|
||||
font-weight: 900;
|
||||
font-display: swap;
|
||||
src: url("Inter-BlackItalic.woff2?v=3.19") format("woff2"),
|
||||
url("Inter-BlackItalic.woff?v=3.19") format("woff");
|
||||
}
|
||||
|
||||
/* -------------------------------------------------------
|
||||
Variable font.
|
||||
Usage:
|
||||
|
||||
html { font-family: 'Inter', sans-serif; }
|
||||
@supports (font-variation-settings: normal) {
|
||||
html { font-family: 'Inter var', sans-serif; }
|
||||
}
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Inter var';
|
||||
font-weight: 100 900;
|
||||
font-display: swap;
|
||||
font-style: normal;
|
||||
font-named-instance: 'Regular';
|
||||
src: url("Inter-roman.var.woff2?v=3.19") format("woff2");
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'Inter var';
|
||||
font-weight: 100 900;
|
||||
font-display: swap;
|
||||
font-style: italic;
|
||||
font-named-instance: 'Italic';
|
||||
src: url("Inter-italic.var.woff2?v=3.19") format("woff2");
|
||||
}
|
||||
|
||||
|
||||
/* --------------------------------------------------------------------------
|
||||
[EXPERIMENTAL] Multi-axis, single variable font.
|
||||
|
||||
Slant axis is not yet widely supported (as of February 2019) and thus this
|
||||
multi-axis single variable font is opt-in rather than the default.
|
||||
|
||||
When using this, you will probably need to set font-variation-settings
|
||||
explicitly, e.g.
|
||||
|
||||
* { font-variation-settings: "slnt" 0deg }
|
||||
.italic { font-variation-settings: "slnt" 10deg }
|
||||
|
||||
*/
|
||||
@font-face {
|
||||
font-family: 'Inter var experimental';
|
||||
font-weight: 100 900;
|
||||
font-display: swap;
|
||||
font-style: oblique 0deg 10deg;
|
||||
src: url("Inter.var.woff2?v=3.19") format("woff2");
|
||||
}
|
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="18.546032"
|
||||
height="5.1606345"
|
||||
viewBox="0 0 23.94857 16.933333"
|
||||
version="1.1"
|
||||
id="svg3980">
|
||||
<defs
|
||||
id="defs3974" />
|
||||
<metadata
|
||||
id="metadata3977">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
id="layer1"
|
||||
transform="translate(-304.25003,-139.7)">
|
||||
<g
|
||||
id="g4600"
|
||||
transform="translate(210.39098)">
|
||||
<g
|
||||
id="g903"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,73.951042,140.62617)"
|
||||
style="fill:#e9d2d2;fill-opacity:1">
|
||||
<path
|
||||
d="m 37.441,-3.5 c 8.951,0 16.572,3.125 22.857,9.372 3.008,3.009 5.295,6.448 6.857,10.314 1.561,3.867 2.344,7.971 2.344,12.314 0,4.381 -0.773,8.486 -2.314,12.313 -1.543,3.828 -3.82,7.21 -6.828,10.143 -3.123,3.085 -6.666,5.448 -10.629,7.086 -3.961,1.638 -8.057,2.457 -12.285,2.457 -4.228,0 -8.276,-0.808 -12.143,-2.429 C 21.434,56.452 17.967,54.109 14.9,51.043 11.833,47.977 9.5,44.519 7.9,40.671 6.3,36.823 5.5,32.767 5.5,28.5 5.5,24.271 6.309,20.205 7.928,16.3 9.547,12.395 11.9,8.9 14.985,5.814 21.08,-0.394 28.565,-3.5 37.441,-3.5 Z m 0.116,5.772 c -7.314,0 -13.467,2.553 -18.458,7.657 -2.515,2.553 -4.448,5.419 -5.8,8.6 -1.354,3.181 -2.029,6.505 -2.029,9.972 0,3.429 0.675,6.734 2.029,9.913 1.353,3.183 3.285,6.021 5.8,8.516 2.514,2.496 5.351,4.399 8.515,5.715 3.161,1.314 6.476,1.971 9.943,1.971 3.428,0 6.75,-0.665 9.973,-1.999 3.219,-1.335 6.121,-3.257 8.713,-5.771 4.99,-4.876 7.484,-10.99 7.484,-18.344 0,-3.543 -0.648,-6.895 -1.943,-10.057 C 60.491,15.283 58.604,12.465 56.13,9.987 50.984,4.844 44.795,2.272 37.557,2.272 Z m -0.401,20.915 -4.287,2.229 c -0.458,-0.951 -1.019,-1.619 -1.685,-2 -0.667,-0.38 -1.286,-0.571 -1.858,-0.571 -2.856,0 -4.286,1.885 -4.286,5.657 0,1.714 0.362,3.084 1.085,4.113 0.724,1.029 1.791,1.544 3.201,1.544 1.867,0 3.181,-0.915 3.944,-2.743 l 3.942,2 c -0.838,1.563 -2,2.791 -3.486,3.686 -1.484,0.896 -3.123,1.343 -4.914,1.343 -2.857,0 -5.163,-0.875 -6.915,-2.629 -1.752,-1.752 -2.628,-4.19 -2.628,-7.313 0,-3.048 0.886,-5.466 2.657,-7.257 1.771,-1.79 4.009,-2.686 6.715,-2.686 3.963,-0.002 6.8,1.541 8.515,4.627 z m 18.457,0 -4.229,2.229 c -0.457,-0.951 -1.02,-1.619 -1.686,-2 -0.668,-0.38 -1.307,-0.571 -1.914,-0.571 -2.857,0 -4.287,1.885 -4.287,5.657 0,1.714 0.363,3.084 1.086,4.113 0.723,1.029 1.789,1.544 3.201,1.544 1.865,0 3.18,-0.915 3.941,-2.743 l 4,2 c -0.875,1.563 -2.057,2.791 -3.541,3.686 -1.486,0.896 -3.105,1.343 -4.857,1.343 -2.896,0 -5.209,-0.875 -6.941,-2.629 -1.736,-1.752 -2.602,-4.19 -2.602,-7.313 0,-3.048 0.885,-5.466 2.658,-7.257 1.77,-1.79 4.008,-2.686 6.713,-2.686 3.962,-0.002 6.783,1.541 8.458,4.627 z"
|
||||
id="path901"
|
||||
style="fill:#e9d2d2;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g888"
|
||||
style="fill:#e9d2d2;fill-opacity:1"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,96.277977,140.96761)">
|
||||
<path
|
||||
d="m 36.057231,-4.7909732 c 8.988,0 16.57,3.085 22.742,9.257 6.208,6.2100002 9.315,13.7910002 9.315,22.7430002 0,8.991 -3.049,16.476 -9.145,22.456 -6.476,6.363 -14.113,9.544 -22.912,9.544 -8.649,0 -16.153,-3.144 -22.514,-9.43 -6.2850001,-6.286 -9.4290001,-13.808 -9.4290001,-22.57 0,-8.761 3.144,-16.342 9.4290001,-22.7420002 6.172,-6.173 13.675,-9.258 22.514,-9.258 z m 0.114,5.77199996 c -7.276,0 -13.428,2.55300004 -18.457,7.65700004 -5.22,5.3340002 -7.8290001,11.5250002 -7.8290001,18.5720002 0,7.086 2.5900001,13.22 7.7700001,18.398 5.181,5.182 11.352,7.771 18.514,7.771 7.123,0 13.334,-2.607 18.629,-7.828 5.029,-4.838 7.543,-10.952 7.543,-18.343 0,-7.276 -2.553,-13.465 -7.656,-18.5710002 -5.104,-5.104 -11.276,-7.65600004 -18.514,-7.65600004 z m 8.572,18.28500024 v 13.085 h -3.656 v 15.542 h -9.944 v -15.541 h -3.656 v -13.086 c 0,-0.572 0.2,-1.057 0.599,-1.457 0.401,-0.399 0.887,-0.6 1.457,-0.6 h 13.144 c 0.533,0 1.01,0.2 1.428,0.6 0.417,0.4 0.628,0.886 0.628,1.457 z m -13.087,-8.228 c 0,-3.0080002 1.485,-4.5140002 4.458,-4.5140002 2.973,0 4.457,1.504 4.457,4.5140002 0,2.971 -1.486,4.457 -4.457,4.457 -2.971,0 -4.458,-1.486 -4.458,-4.457 z"
|
||||
id="path886"
|
||||
style="fill:#e9d2d2;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g918"
|
||||
transform="matrix(0.26458333,0,0,0.26458333,117.87188,140.62604)"
|
||||
style="fill:#e9d2d2;fill-opacity:1">
|
||||
<g
|
||||
id="g916"
|
||||
style="fill:#e9d2d2;fill-opacity:1">
|
||||
<path
|
||||
d="m 37.443,-3.5 c 8.951,0 16.531,3.105 22.742,9.315 6.208,6.172 9.315,13.733 9.315,22.685 0,8.954 -3.049,16.457 -9.145,22.514 C 53.918,57.338 46.279,60.5 37.443,60.5 28.794,60.5 21.29,57.357 14.929,51.071 8.644,44.786 5.5,37.264 5.5,28.501 5.5,19.778 8.644,12.216 14.929,5.816 21.138,-0.395 28.643,-3.5 37.443,-3.5 Z m 0.114,5.772 c -7.276,0 -13.428,2.572 -18.457,7.715 -5.22,5.296 -7.829,11.467 -7.829,18.513 0,7.125 2.59,13.257 7.77,18.4 5.181,5.182 11.352,7.771 18.514,7.771 7.123,0 13.334,-2.609 18.629,-7.828 5.029,-4.876 7.543,-10.99 7.543,-18.343 0,-7.313 -2.553,-13.485 -7.656,-18.513 C 51.004,4.842 44.832,2.272 37.557,2.272 Z M 23.271,23.985 c 0.609,-3.924 2.189,-6.962 4.742,-9.114 2.552,-2.152 5.656,-3.228 9.314,-3.228 5.027,0 9.029,1.62 12,4.856 2.971,3.238 4.457,7.391 4.457,12.457 0,4.915 -1.543,9 -4.627,12.256 -3.088,3.256 -7.086,4.886 -12.002,4.886 -3.619,0 -6.743,-1.085 -9.371,-3.257 -2.629,-2.172 -4.209,-5.257 -4.743,-9.257 H 31.1 c 0.19,3.886 2.533,5.829 7.029,5.829 2.246,0 4.057,-0.972 5.428,-2.914 1.373,-1.942 2.059,-4.534 2.059,-7.771 0,-3.391 -0.629,-5.971 -1.885,-7.743 -1.258,-1.771 -3.066,-2.657 -5.43,-2.657 -4.268,0 -6.667,1.885 -7.2,5.656 h 2.343 l -6.342,6.343 -6.343,-6.343 z"
|
||||
id="path914"
|
||||
style="fill:#e9d2d2;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.1 KiB |
Before Width: | Height: | Size: 421 B After Width: | Height: | Size: 421 B |
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<rss version="2.0">
|
||||
<channel>
|
||||
<title>edbrz9</title>
|
||||
<description>edbrz9's website</description>
|
||||
<lastBuildDate>Thu, 28 Octobre 2021 00:00:01 GMT</lastBuildDate>
|
||||
<link>http://www.example.org</link>
|
||||
<item>
|
||||
<title>Actualité N°1</title>
|
||||
<description>Ceci est ma première actualité</description>
|
||||
<pubDate>Sat, 07 Sep 2002 00:00:01 GMT</pubDate>
|
||||
<link>http://www.example.org/actu1</link>
|
||||
</item>
|
||||
<item>
|
||||
<title>Actualité N°2</title>
|
||||
<description>Ceci est ma seconde actualité</description>
|
||||
<pubDate>Sat, 07 Sep 2002 00:00:01 GMT</pubDate>
|
||||
<link>http://www.example.org/actu2</link>
|
||||
</item>
|
||||
</channel>
|
||||
</rss>
|
|
@ -0,0 +1,106 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>edbrz9</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="https://file.brz9.dev/web/css/normalize.css">
|
||||
<link rel="stylesheet" href="assets/fonts/byl-iconfont-v3.2/icons.css"/>
|
||||
<link rel="stylesheet" href="assets/css/style.css"/>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav>
|
||||
<section id="left-nav">
|
||||
<a href="/">
|
||||
<span class="byl-icon-home"></span>
|
||||
</a>
|
||||
</section>
|
||||
<section id="right-nav">
|
||||
<a href="/" class="islang">FR</a> /
|
||||
<a href="/">ENG</a>
|
||||
</section>
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
<main id="root">
|
||||
|
||||
<section class="main-centered">
|
||||
|
||||
<img class="avatar" src="assets/img/oim_pola.jpg"/>
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
<h3>Lorem Ipsum</h3>
|
||||
|
||||
<p>Donec lobortis nec lorem ac elementum. Proin risus purus, tincidunt et mi eu, porttitor ultricies diam. Nunc ultrices ligula lorem, id gravida libero porttitor non. Pellentesque mi felis, maximus nec neque nec, mollis condimentum sapien. Sed id leo vitae tortor porttitor pharetra condimentum eu justo. Maecenas interdum sit amet nisl eu consequat. Aenean ut nunc luctus, porta mi eget, imperdiet neque. Mauris consectetur nunc et urna pretium varius. Praesent et odio sit amet nulla suscipit pulvinar eget tincidunt justo. Mauris non efficitur ex, at tempus ipsum. Nullam ac sapien sed massa ultricies interdum. Sed sodales arcu sodales nisi pulvinar, at volutpat est efficitur. </p>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<section id="social">
|
||||
<a href="feed.xml">
|
||||
<span class="byl-icon-rss"></span>
|
||||
</a>
|
||||
<a href="https://www.instagram.com/edbrz9/"
|
||||
target="_blank">
|
||||
<span class="byl-icon-instagram"></span>
|
||||
</a>
|
||||
<a href="https://twitter.com/edbrz9"
|
||||
target="_blank">
|
||||
<span class="byl-icon-twitter"></span>
|
||||
</a>
|
||||
<a href="https://git.brz9.dev/explore/repos"
|
||||
target="_blank">
|
||||
<span class="byl-icon-git"></span>
|
||||
</a>
|
||||
<!--
|
||||
<a href="">
|
||||
<span class="byl-icon-mastodon"></span>
|
||||
</a>
|
||||
<a href="">
|
||||
<span class="byl-icon-tiktok"></span>
|
||||
</a>
|
||||
-->
|
||||
<a href="">
|
||||
<span class="byl-icon-bitcoin"></span>
|
||||
</a>
|
||||
<a href="">
|
||||
<span class="byl-icon-ethereum"></span>
|
||||
</a>
|
||||
<a href="">
|
||||
<span class="byl-icon-monero"></span>
|
||||
</a>
|
||||
<a href="">
|
||||
<span class=" "></span>
|
||||
</a>
|
||||
<a href="">
|
||||
<span class=" "></span>
|
||||
</a>
|
||||
|
||||
</section>
|
||||
|
||||
<section id ="mail">
|
||||
<p>ed<span class="132">ehbb</span>@<span class="lskd">dllls</span>brz9.dev</p>
|
||||
</section>
|
||||
|
||||
<section id="license">
|
||||
<a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">
|
||||
<img class="cc-link" src="assets/svg/edbz9-cc-by-sa.svg"/>
|
||||
</a>
|
||||
</section>
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
|
||||
<script src="assets/js/vue.min.js"></script>
|
||||
|
||||
<script src="assets/js/ed.brz9.js"></script>
|
||||
|
||||
</html>
|
||||
|
|
@ -0,0 +1,141 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<title>Title</title>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="https://file.brz9.dev/web/css/normalize.css">
|
||||
<link rel="stylesheet" href="assets/fonts/byl-iconfont-v3.2/icons.css"/>
|
||||
<link rel="stylesheet" href="assets/css/style.css"/>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav>
|
||||
<section id="left-nav">
|
||||
<a href="/">
|
||||
<span class="byl-icon-home"></span>
|
||||
</a> / <a href="">Discographie</a>
|
||||
</section>
|
||||
<section id="right-nav">
|
||||
<a href="/">FR</a> /
|
||||
<a href="/" class="islang">ENG</a>
|
||||
</section>
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
<main id="root">
|
||||
|
||||
<section class="main-centered">
|
||||
|
||||
<img class="avatar" src="assets/img/oim_pola.jpg"/>
|
||||
|
||||
</section>
|
||||
|
||||
|
||||
<p>Ceci est un <span class="screenbox">beau</span> bloc de texte {{ name }} avec un <a href="">lien</a>.</p>
|
||||
|
||||
|
||||
|
||||
<table>
|
||||
|
||||
<tr>
|
||||
<td> <ppbut audiourl="https://file.brz9.dev/cdn/ed.brz9.dev/disco/Phrydim.ogg"></ppbut> </td>
|
||||
<td>Monophonic Interzone - Llashram </td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
|
||||
<h3>🤔</h3>
|
||||
|
||||
<p>Proin sodales massa eu dolor lacinia, vel sagittis mauris vehicula. Nulla varius ligula sit amet lorem vulputate luctus. Aliquam varius molestie nunc, vitae tempus purus malesuada volutpat. Nam vitae massa lectus. Praesent id ipsum id metus lobortis porta eget sit amet lorem. Nam eu rutrum mi. In ac erat eget est euismod blandit. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia curae; Praesent in tortor sapien. Maecenas euismod rhoncus erat, sed bibendum sapien feugiat a.</p>
|
||||
<hr/>
|
||||
|
||||
<h3>Lorem Ipsum</h3>
|
||||
|
||||
<p>Donec lobortis nec lorem ac elementum. Proin risus purus, tincidunt et mi eu, porttitor ultricies diam. Nunc ultrices ligula lorem, id gravida libero porttitor non. Pellentesque mi felis, maximus nec neque nec, mollis condimentum sapien. Sed id leo vitae tortor porttitor pharetra condimentum eu justo. Maecenas interdum sit amet nisl eu consequat. Aenean ut nunc luctus, porta mi eget, imperdiet neque. Mauris consectetur nunc et urna pretium varius. Praesent et odio sit amet nulla suscipit pulvinar eget tincidunt justo. Mauris non efficitur ex, at tempus ipsum. Nullam ac sapien sed massa ultricies interdum. Sed sodales arcu sodales nisi pulvinar, at volutpat est efficitur. </p>
|
||||
|
||||
<img src="assets/img/incendie_ovh.jpg"/>
|
||||
<p>(crédit photo : SDIS du Bas-Rhin ©)</p>
|
||||
<a href="https://lafibre.info/ovh-datacenter/incendie-sur-un-site-ovh-a-strasbourg/"><span class="byl-icon-link"></span></a>
|
||||
|
||||
<footer>
|
||||
<span class="byl-icon-share"></span>
|
||||
<span class="byl-icon-twitter"></span>
|
||||
|
||||
|
||||
|
||||
<a href="https://twitter.com/intent/tweet?text=À lire sur @indignation_l https://file.brz9.dev/img/jc-car-cal-50.png"
|
||||
target="_blank"><span class="byl-icon-twitter social-share"></span></a>
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
|
||||
<section id="social">
|
||||
<a href="">
|
||||
<span class="byl-icon-rss"></span>
|
||||
</a>
|
||||
<a href="https://www.instagram.com/edbrz9/"
|
||||
target="_blank">
|
||||
<span class="byl-icon-instagram"></span>
|
||||
</a>
|
||||
<a href="https://twitter.com/edbrz9"
|
||||
target="_blank">
|
||||
<span class="byl-icon-twitter"></span>
|
||||
</a>
|
||||
<a href="https://git.brz9.dev/explore/repos"
|
||||
target="_blank">
|
||||
<span class="byl-icon-git"></span>
|
||||
</a>
|
||||
<!--
|
||||
<a href="">
|
||||
<span class="byl-icon-mastodon"></span>
|
||||
</a>
|
||||
<a href="">
|
||||
<span class="byl-icon-tiktok"></span>
|
||||
</a>
|
||||
-->
|
||||
<a href="">
|
||||
<span class="byl-icon-bitcoin"></span>
|
||||
</a>
|
||||
<a href="">
|
||||
<span class="byl-icon-ethereum"></span>
|
||||
</a>
|
||||
<a href="">
|
||||
<span class="byl-icon-monero"></span>
|
||||
</a>
|
||||
<a href="">
|
||||
<span class=" "></span>
|
||||
</a>
|
||||
<a href="">
|
||||
<span class=" "></span>
|
||||
</a>
|
||||
|
||||
</section>
|
||||
|
||||
<section id ="mail">
|
||||
<p>ed<span class="132">ehbb</span>@<span class="lskd">dllls</span>brz9.dev</p>
|
||||
</section>
|
||||
|
||||
<section id="license">
|
||||
<a href="https://creativecommons.org/licenses/by-sa/4.0/" target="_blank">
|
||||
<img class="cc-link" src="assets/svg/edbz9-cc-by-sa.svg"/>
|
||||
</a>
|
||||
</section>
|
||||
|
||||
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
|
||||
<script src="assets/js/vue.min.js"></script>
|
||||
|
||||
<script src="assets/js/ed.brz9.js"></script>
|
||||
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue