@@ -0,0 +1,24 @@ | |||
This is free and unencumbered software released into the public domain. | |||
Anyone is free to copy, modify, publish, use, compile, sell, or | |||
distribute this software, either in source code form or as a compiled | |||
binary, for any purpose, commercial or non-commercial, and by any | |||
means. | |||
In jurisdictions that recognize copyright laws, the author or authors | |||
of this software dedicate any and all copyright interest in the | |||
software to the public domain. We make this dedication for the benefit | |||
of the public at large and to the detriment of our heirs and | |||
successors. We intend this dedication to be an overt act of | |||
relinquishment in perpetuity of all present and future rights to this | |||
software under copyright law. | |||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | |||
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR | |||
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | |||
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | |||
OTHER DEALINGS IN THE SOFTWARE. | |||
For more information, please refer to <http://unlicense.org/> |
@@ -0,0 +1,214 @@ | |||
/* Copyright (c) 2018 "emsenn" <https://gitlab.com/emsenn> | |||
* SPDX-License-Identifier: Unlicense */ | |||
.container { | |||
position: relative; | |||
margin: 0; | |||
padding-bottom: 6rem; | |||
margin: auto; | |||
min-height: 100%; | |||
font-size: 1.2rem; | |||
line-height: 1.1; | |||
} | |||
.container ::selection { background-color: grey; } | |||
.header { | |||
text-align: center; | |||
width: 100%; | |||
overflow: hidden; | |||
border-bottom: 0.5rem dashed black; | |||
} | |||
.main { | |||
max-width: 75vw; | |||
margin: 0 auto; | |||
font-size: 1.2em; | |||
margin-bottom: 3em; | |||
} | |||
.footer { | |||
margin-top: 2em; | |||
padding: 2em 0 2em 0; | |||
position: absolute; | |||
right: 0; | |||
bottom: 0; | |||
left: 0; | |||
padding: 1rem; | |||
border-top: 0.5rem dashed black; | |||
} | |||
.nameplate { | |||
font-family: sans-serif; | |||
font-size: 4rem; | |||
} | |||
.nameplate > small { | |||
display: block; | |||
font-size: 0.5em; | |||
} | |||
.sectionHeader { | |||
font-family: sans-serif; | |||
font-size: 2em; | |||
margin-bottom: 0; | |||
} | |||
.admonition { | |||
max-width: 60vw; | |||
margin: auto; | |||
margin-top: 1em; | |||
padding: 1em; | |||
border: 0.2em solid black; | |||
} | |||
.admonition > .h2 { | |||
margin: 1em 0 0.5em 0; | |||
} | |||
.admonition p { margin: 0.5rem; } | |||
.blockQuote { | |||
padding: 0.5rem; | |||
border-left: 0.1em solid black; | |||
} | |||
.codeBlock { | |||
padding: 0.5em; | |||
font-size: 0.9em; | |||
border: 0.1em solid black; | |||
white-space: pre-wrap; | |||
overflow-x: scroll; | |||
text-overflow: clip; | |||
} | |||
.bulletList li { margin-bottom: 0.5em;} | |||
.bulletList li h3 { | |||
margin-bottom: 0; | |||
} | |||
.bulletList li p { | |||
margin-top: 0; | |||
} | |||
.hyperlink { | |||
text-decoration: none; | |||
color: inherit; | |||
display: inline-block; | |||
position: relative; | |||
border-bottom: 0.1rem dotted; | |||
} | |||
.hyperlink:visited { | |||
color: grey; | |||
} | |||
.hyperlink:visited::selection { color: black; } | |||
.hyperlink:focus, .hyperlink:hover { | |||
outline-style: none; | |||
border-bottom: 0.1rem solid; | |||
} | |||
.questionnaire { | |||
max-width: 30em; | |||
margin: 1em auto; | |||
padding: 1em; | |||
font-family: sans-serif; | |||
} | |||
.questionnaire ul { | |||
list-style:none; | |||
padding:0; margin:0; | |||
} | |||
.questionnaire li { | |||
display: block; | |||
border: 0.2em solid black; | |||
margin-bottom: 1em; | |||
} | |||
.questionnaire li:last-child { | |||
border:none; | |||
text-align: center; | |||
margin-bottom: 2em; | |||
} | |||
.questionnaire li > label { | |||
background: black; | |||
display: block; | |||
margin: 0 auto; | |||
color: white; | |||
font-size: 1.2em; | |||
padding: 0.2rem; | |||
} | |||
.questionnaire li > span { | |||
background: black; | |||
display: block; | |||
margin: 0 auto; | |||
text-align: center; | |||
color: white; | |||
font-size: 1em; | |||
padding: 0.2rem; | |||
} | |||
.questionnaire li > input, .questionnaire li > textarea { | |||
font-family: serif; | |||
box-sizing: border-box; | |||
-webkit-box-sizing: border-box; | |||
-moz-box-sizing: border-box; | |||
width: 90%; | |||
outline: none; | |||
border: none; | |||
height: 2em; | |||
font-size: 1.3em; | |||
margin-left: 1rem; | |||
left: 10%; | |||
} | |||
.questionnaire li > textarea { | |||
resize: none; | |||
max-width: 100%; | |||
width: 200em; | |||
height: 12em; | |||
} | |||
.questionnaire li > .-submitButton { | |||
border: none; | |||
background: black; | |||
color: white; | |||
font-family: sans-serif; | |||
font-weight: bold; | |||
padding: 0.5em 3em; | |||
text-align: center; | |||
text-decoration: none; | |||
display: inline-block; | |||
cursor: pointer; | |||
margin-bottom: 0; | |||
} | |||
.-advertisement { | |||
max-width: 40vw; | |||
margin: auto; | |||
} | |||
.-codeBlock__overflowBorder{ | |||
border-right: dashed; | |||
} | |||
.-colophon { | |||
padding-left: 2em; | |||
max-width: 50vw; | |||
} | |||
.-disclaimer { | |||
font-size: 0.5em; | |||
text-align: right; | |||
max-width: 20vw; | |||
letter-spacing: 0.05em; | |||
} | |||
.-invertColor { | |||
background-color: black; | |||
color: white; | |||
} | |||
.-invertColor ::selection { | |||
background-color: white; | |||
color: black; | |||
} | |||
.-invertColor .hyperlink:before { | |||
background: white; | |||
} | |||
.-invertColor .hyperlink:focus { | |||
outline: 0.1em solid white; | |||
} | |||
.-invertColor .admonition { border-color: white;} | |||
.-monospace { font-family: monospace; } |
@@ -0,0 +1,61 @@ | |||
/* Copyright (c) 2018 Jan "JayVii" <jayvii@posteo.de> | |||
* SPDX-License-Identifier: GPL-3.0 */ | |||
/* Dictionary {{{ */ | |||
div#dictionary{ | |||
margin: auto; | |||
height: 100%; | |||
max-width: 95%; | |||
min-width: 50%; | |||
margin-top: 100px; | |||
text-align: left; | |||
font-family: Times; | |||
} | |||
/* }}} */ | |||
/* Headline {{{ */ | |||
div#headline{ | |||
width: 90%; | |||
margin-left: 5%; | |||
margin-right: 5%; | |||
} | |||
a#headline{ | |||
padding: 5px; | |||
margin-top: 10px; | |||
float: left; | |||
color: #777777; | |||
text-decoration: none; | |||
border-radius: 5px; | |||
font-family: Sans; | |||
} | |||
a#headline:hover{ | |||
color: #ffffff; | |||
} | |||
a.navbar:hover{ | |||
background: #333333; | |||
} | |||
img.navbar{ | |||
height: 100%; | |||
width: 100%; | |||
} | |||
/* }}} */ | |||
/* Projects {{{ */ | |||
div.projects{ | |||
width: 350px; | |||
margin-left: auto; | |||
margin-right: auto; | |||
padding-top: 5%; | |||
} | |||
img.projects{ | |||
height: 100px; | |||
width: 100px; | |||
padding-left: 5px; | |||
padding-right: 5px; | |||
} | |||
/* }}} */ |
@@ -4,47 +4,50 @@ | |||
<!DOCTYPE html> | |||
<html> | |||
<head><!--metahead{{{--> | |||
<head><!--metahead-{{{--> | |||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |||
<title>JayVii</title> | |||
<link rev="made" href="mailto:jayvii@posteo.de" /> | |||
<meta name="description" content="JayVii / Landing-Page."> | |||
<link rel="icon" type="image/x-icon" href="./media/favicon.ico" /> | |||
<link rel="stylesheet" type="text/css" href="./style.css"/> | |||
<link rel="stylesheet" type="text/css" href="./css/brutstrap.css"/> | |||
<link rel="stylesheet" type="text/css" href="./css/custom.css"/> | |||
<script src="force_ssl.js"></script> | |||
</head><!--metahead}}}--> | |||
<body> | |||
<div id="site" class="border"><!--site--> | |||
<div id="header"><!--header{{{--> | |||
<div id="header-left"><!--header-left--> | |||
<a href="/git/jayvii.de-www/tree/master/LICENSES"><img src="./media/scale-balance.svg" alt="License" height="24" width="24"></a> | |||
<a href="/git/jayvii.de-www"><img src="./media/source-branch.svg" alt="Source" height="24" width="24"></a> | |||
</div><!--header-left--> | |||
<div id="header-right"><!--header-right--> | |||
<a href="mailto:jayviiATposteoDOTde"><img src="./media/email.svg" alt="Mail" height="24" width="24"></a> | |||
<a href="https://twitter.com/JayVii_de"><img src="./media/twitter.svg" alt="Twitter" height="24" width="24"></a> | |||
<a href="https://mastodon.social/@JayVii_de"><img src="./media/mastodon.svg" alt="Fediverse" height="24" width="24"></a> | |||
<a href="/git"><img src="./media/jv_git.svg" alt="Git" height="24" width="24"></a> | |||
</div><!--header-right--> | |||
</div><!--header}}}--> | |||
<div id="dictionary"><!--dictionary{{{--> | |||
<div id="dictionary-text"><!--dictionary-text--> | |||
</head><!--metahead-}}}--> | |||
<body class="container"> | |||
<div id="header" class="header -invertColor"><!--header-{{{--> | |||
<div id="headline" class="namespace"> | |||
<a href="." id="headline">JV//Site</a> | |||
<a href="mailto:jayviiATposteoDOTde" id="headline" class="navbar"><img src="./media/email.svg" class="navbar" alt="Mail"></a> | |||
<a href="https://twitter.com/JayVii_de" id="headline" class="navbar"><img src="./media/twitter.svg" class="navbar" alt="Twitter"></a> | |||
<a href="https://mastodon.social/@JayVii_de" id="headline" class="navbar"><img src="./media/mastodon.svg" class="navbar" alt="Fediverse"></a> | |||
<a href="/git" id="headline" class="navbar"><img src="./media/jv_git.svg" class="navbar" alt="Git"></a> | |||
<a href="/git/jayvii.de-www/tree/master/LICENSES" id="headline" class="navbar"><img src="./media/scale-balance.svg" class="navbar" alt="License"></a> | |||
<a href="/git/jayvii.de-www" id="headline" class="navbar"><img src="./media/source-branch.svg" class="navbar" alt="Source"></a> | |||
</div> | |||
</div><!--header-}}}--> | |||
<div id="main" class="main"><!--main-content-{{{--> | |||
<div id="dictionary" class="blockQuote"><!--dictionary--> | |||
<p><strong>jayvii</strong> <em>/dʒeɪ:wiː/n</em><br> | |||
<small><strong>1:</strong></small> a <a href="https://www.jef.de">federalist*</a> & passionate european | |||
<small><strong>2:</strong></small> an <a href="/git">opensource enthusiast</a> & <a href="/git?tab=repositories&q=[R]">R-scripter</a> | |||
<small><strong>3:</strong></small> an occasional <a href="https://twitter.com/JayVii_de">tweeter</a> & <a href="https://mastodon.social/@JayVii_de">tooter</a> | |||
<small><strong>1:</strong></small> a <a class="hyperlink" href="https://www.jef.de">federalist</a> & passionate european | |||
<small><strong>2:</strong></small> an <a class="hyperlink" href="/git">opensource enthusiast</a> & <a class="hyperlink" href="/git?tab=repositories&q=[R]">R-scripter</a> | |||
<small><strong>3:</strong></small> an occasional <a class="hyperlink" href="https://twitter.com/JayVii_de">tweeter</a> & <a class="hyperlink" href="https://mastodon.social/@JayVii_de">tooter</a> | |||
<small><strong>4:</strong></small> an advocate of open science & open education</p> | |||
</div><!--dictionary-text--> | |||
</div><!--dictionary}}}--> | |||
</div><!--dictionary--> | |||
<div class="projects"><!--projects--> | |||
<a href="./feeds.html"><img class="projects" src="./media/feed.png" alt="Feeds" height="100" width="100"></a> | |||
<a href="./blog/"><img class="projects" src="./media/blog.png" alt="Blog" height="100" width="100"></a> | |||
<a href="./gallery/"><img class="projects" src="./media/gallery.png" alt="Photo Gallery" height="100" width="100"></a> | |||
</div><!--projects--> | |||
<div id="projects"><!--projects{{{--> | |||
<a href="./feeds.html"><img class="projects" src="./media/feed.png" alt="Feeds" height="100" width="100"></a> | |||
<a href="./blog/"><img class="projects" src="./media/blog.png" alt="Blog" height="100" width="100"></a> | |||
<a href="./gallery/"><img class="projects" src="./media/gallery.png" alt="Photo Gallery" height="100" width="100"></a> | |||
</div><!--projects}}}--> | |||
</div><!--main-content-}}}--> | |||
</div><!--site--> | |||
</body> | |||
</html> |
@@ -1 +1 @@ | |||
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24"><path d="M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z" /></svg> | |||
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M20,8L12,13L4,8V6L12,11L20,6M20,4H4C2.89,4 2,4.89 2,6V18A2,2 0 0,0 4,20H20A2,2 0 0,0 22,18V6C22,4.89 21.1,4 20,4Z" /></svg> |
@@ -1 +1 @@ | |||
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24"><path d="M2.6,10.59L8.38,4.8L10.07,6.5C9.83,7.35 10.22,8.28 11,8.73V14.27C10.4,14.61 10,15.26 10,16A2,2 0 0,0 12,18A2,2 0 0,0 14,16C14,15.26 13.6,14.61 13,14.27V9.41L15.07,11.5C15,11.65 15,11.82 15,12A2,2 0 0,0 17,14A2,2 0 0,0 19,12A2,2 0 0,0 17,10C16.82,10 16.65,10 16.5,10.07L13.93,7.5C14.19,6.57 13.71,5.55 12.78,5.16C12.35,5 11.9,4.96 11.5,5.07L9.8,3.38L10.59,2.6C11.37,1.81 12.63,1.81 13.41,2.6L21.4,10.59C22.19,11.37 22.19,12.63 21.4,13.41L13.41,21.4C12.63,22.19 11.37,22.19 10.59,21.4L2.6,13.41C1.81,12.63 1.81,11.37 2.6,10.59Z" /></svg> | |||
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M2.6,10.59L8.38,4.8L10.07,6.5C9.83,7.35 10.22,8.28 11,8.73V14.27C10.4,14.61 10,15.26 10,16A2,2 0 0,0 12,18A2,2 0 0,0 14,16C14,15.26 13.6,14.61 13,14.27V9.41L15.07,11.5C15,11.65 15,11.82 15,12A2,2 0 0,0 17,14A2,2 0 0,0 19,12A2,2 0 0,0 17,10C16.82,10 16.65,10 16.5,10.07L13.93,7.5C14.19,6.57 13.71,5.55 12.78,5.16C12.35,5 11.9,4.96 11.5,5.07L9.8,3.38L10.59,2.6C11.37,1.81 12.63,1.81 13.41,2.6L21.4,10.59C22.19,11.37 22.19,12.63 21.4,13.41L13.41,21.4C12.63,22.19 11.37,22.19 10.59,21.4L2.6,13.41C1.81,12.63 1.81,11.37 2.6,10.59Z" /></svg> |
@@ -1 +1 @@ | |||
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24"><path d="M19.5,15.5A0.5,0.5 0 0,1 19,16A0.5,0.5 0 0,1 18.5,15.5V8.5C18.5,6.57 16.43,5 14.5,5H6A4,4 0 0,0 2,9V19H6V15H11V19H15V14.5A0.5,0.5 0 0,1 15.5,14A0.5,0.5 0 0,1 16,14.5V16A3,3 0 0,0 19,19A3,3 0 0,0 22,16V14H19.5V15.5Z" /></svg> | |||
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M19.5,15.5A0.5,0.5 0 0,1 19,16A0.5,0.5 0 0,1 18.5,15.5V8.5C18.5,6.57 16.43,5 14.5,5H6A4,4 0 0,0 2,9V19H6V15H11V19H15V14.5A0.5,0.5 0 0,1 15.5,14A0.5,0.5 0 0,1 16,14.5V16A3,3 0 0,0 19,19A3,3 0 0,0 22,16V14H19.5V15.5Z" /></svg> |
@@ -1 +1 @@ | |||
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24"><path d="M12,3C10.73,3 9.6,3.8 9.18,5H3V7H4.95L2,14C1.53,16 3,17 5.5,17C8,17 9.56,16 9,14L6.05,7H9.17C9.5,7.85 10.15,8.5 11,8.83V20H2V22H22V20H13V8.82C13.85,8.5 14.5,7.85 14.82,7H17.95L15,14C14.53,16 16,17 18.5,17C21,17 22.56,16 22,14L19.05,7H21V5H14.83C14.4,3.8 13.27,3 12,3M12,5A1,1 0 0,1 13,6A1,1 0 0,1 12,7A1,1 0 0,1 11,6A1,1 0 0,1 12,5M5.5,10.25L7,14H4L5.5,10.25M18.5,10.25L20,14H17L18.5,10.25Z" /></svg> | |||
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M12,3C10.73,3 9.6,3.8 9.18,5H3V7H4.95L2,14C1.53,16 3,17 5.5,17C8,17 9.56,16 9,14L6.05,7H9.17C9.5,7.85 10.15,8.5 11,8.83V20H2V22H22V20H13V8.82C13.85,8.5 14.5,7.85 14.82,7H17.95L15,14C14.53,16 16,17 18.5,17C21,17 22.56,16 22,14L19.05,7H21V5H14.83C14.4,3.8 13.27,3 12,3M12,5A1,1 0 0,1 13,6A1,1 0 0,1 12,7A1,1 0 0,1 11,6A1,1 0 0,1 12,5M5.5,10.25L7,14H4L5.5,10.25M18.5,10.25L20,14H17L18.5,10.25Z" /></svg> |
@@ -1 +1 @@ | |||
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24"><path d="M13,14C9.64,14 8.54,15.35 8.18,16.24C9.25,16.7 10,17.76 10,19A3,3 0 0,1 7,22A3,3 0 0,1 4,19C4,17.69 4.83,16.58 6,16.17V7.83C4.83,7.42 4,6.31 4,5A3,3 0 0,1 7,2A3,3 0 0,1 10,5C10,6.31 9.17,7.42 8,7.83V13.12C8.88,12.47 10.16,12 12,12C14.67,12 15.56,10.66 15.85,9.77C14.77,9.32 14,8.25 14,7A3,3 0 0,1 17,4A3,3 0 0,1 20,7C20,8.34 19.12,9.5 17.91,9.86C17.65,11.29 16.68,14 13,14M7,18A1,1 0 0,0 6,19A1,1 0 0,0 7,20A1,1 0 0,0 8,19A1,1 0 0,0 7,18M7,4A1,1 0 0,0 6,5A1,1 0 0,0 7,6A1,1 0 0,0 8,5A1,1 0 0,0 7,4M17,6A1,1 0 0,0 16,7A1,1 0 0,0 17,8A1,1 0 0,0 18,7A1,1 0 0,0 17,6Z" /></svg> | |||
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M13,14C9.64,14 8.54,15.35 8.18,16.24C9.25,16.7 10,17.76 10,19A3,3 0 0,1 7,22A3,3 0 0,1 4,19C4,17.69 4.83,16.58 6,16.17V7.83C4.83,7.42 4,6.31 4,5A3,3 0 0,1 7,2A3,3 0 0,1 10,5C10,6.31 9.17,7.42 8,7.83V13.12C8.88,12.47 10.16,12 12,12C14.67,12 15.56,10.66 15.85,9.77C14.77,9.32 14,8.25 14,7A3,3 0 0,1 17,4A3,3 0 0,1 20,7C20,8.34 19.12,9.5 17.91,9.86C17.65,11.29 16.68,14 13,14M7,18A1,1 0 0,0 6,19A1,1 0 0,0 7,20A1,1 0 0,0 8,19A1,1 0 0,0 7,18M7,4A1,1 0 0,0 6,5A1,1 0 0,0 7,6A1,1 0 0,0 8,5A1,1 0 0,0 7,4M17,6A1,1 0 0,0 16,7A1,1 0 0,0 17,8A1,1 0 0,0 18,7A1,1 0 0,0 17,6Z" /></svg> |
@@ -1 +1 @@ | |||
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24"><path d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z" /></svg> | |||
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="24" height="24" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z" /></svg> |
@@ -1,169 +0,0 @@ | |||
/* Copyright (c) 2018 Jan "JayVii" <jayvii@posteo.de> | |||
* SPDX-License-Identifier: GPL-3.0 */ | |||
/* General {{{ */ | |||
body{ | |||
height: 100%; | |||
margin: 0%; | |||
padding: 0%; | |||
background: #ffffff; | |||
color: #000000; | |||
overflow: auto; | |||
font-family: Sans; | |||
font-size: 140%; | |||
-webkit-font-smoothing:antialiased; | |||
-moz-font-smoothing:antialiased; | |||
-ms-font-smoothing:antialiased; | |||
-o-font-smoothing:antialiased; | |||
font-smoothing:antialiased; | |||
} | |||
/* }}} */ | |||
/* Border-Class {{{ */ | |||
.border{ | |||
height: 100%; | |||
width: 96%; | |||
padding: 0px; | |||
margin-left: 2%; | |||
margin-right: 2%; | |||
display: inline-block; | |||
} | |||
/* }}} */ | |||
/* Search {{{ */ | |||
.search{ | |||
width: 50%; | |||
height: 18px; | |||
padding: 5px; | |||
margin-top: 7%; | |||
margin-bottom: 5%; | |||
margin-left: 25%; | |||
margin-right: 25%; | |||
border: 1px solid #000000; | |||
text-align: center} | |||
.search:hover{ | |||
border:1px solid #999999} | |||
.search:focus{ | |||
border:1px solid #999999} | |||
/* }}} */ | |||
/* Site {{{ */ | |||
/*div#site{ | |||
background-image: linear-gradient(to bottom, rgba(255,255,255,255), rgba(0,0,0,0.1)); | |||
padding: 0px}*/ | |||
/* }}} */ | |||
/* Dictionary {{{ */ | |||
div#dictionary{ | |||
border-left: thick solid #b3b3b3; | |||
margin: auto; | |||
margin-top: 15%; | |||
margin-bottom: 10%; | |||
height: 100%; | |||
max-width: 100%; | |||
min-width: 50%; | |||
margin-left: 20%; | |||
margin-right: 20%} | |||
div#dictionary-text{ | |||
margin: 1%; | |||
font-family: Times; | |||
text-align: left; | |||
color: #000000} | |||
/* }}} */ | |||
/* Text {{{ */ | |||
div#text{ | |||
font-family: Times; | |||
font-size: 80%; | |||
height: 100%; | |||
width: 50%; | |||
text-align: center; | |||
margin-left: 25%; | |||
margin-right: 25%; | |||
margin-top: 5%; | |||
margin-bottom: 5%} | |||
/* }}} */ | |||
/* FAQ {{{ */ | |||
div#faq{ | |||
font-family: Sans; | |||
font-size: 60%; | |||
height: 100%; | |||
width: 40%; | |||
text-align: left; | |||
margin-left: 30%; | |||
margin-right: 30%; | |||
margin-top: 5%; | |||
margin-bottom: 2%} | |||
/* }}} */ | |||
/* Feeds {{{ */ | |||
div#feeds{ | |||
padding: 0%; | |||
text-align: center; | |||
color: #606060; | |||
height: 100%; | |||
width: 70%; | |||
margin-top: 1%; | |||
margin-left: 15%; | |||
margin-right: 15%; | |||
margin-bottom: 5%} | |||
/* }}} */ | |||
/* Header {{{ */ | |||
div#header{ | |||
border-bottom: thin solid #606060; | |||
height: 40px; | |||
} | |||
div#header-left{ | |||
opacity: 0.5; | |||
padding-top: 5px; | |||
float: left; | |||
left: 0; | |||
display: inline-block; | |||
} | |||
div#header-left:hover{ | |||
opacity: 1; | |||
} | |||
div#header-right{ | |||
opacity: 0.5; | |||
padding-top: 5px; | |||
float: right; | |||
right: 0; | |||
display: inline-block; | |||
} | |||
div#header-right:hover{ | |||
opacity: 1; | |||
} | |||
/* }}} */ | |||
/* Projects {{{ */ | |||
div#projects{ | |||
max-width: 380px; | |||
min-width: 100px; | |||
margin-left: auto; | |||
margin-right: auto} | |||
.projects{ | |||
padding: 10px} | |||
/* }}} */ | |||
/* URLs {{{ */ | |||
a{ | |||
color: #606060; | |||
text-decoration: none} | |||
a:hover{ | |||
color: #999999} | |||
/* }}} */ | |||
/* text {{{ */ | |||
p{ | |||
color: #000000; | |||
text-decoration: none} | |||
h2{ | |||
color: #000000; | |||
text-decoration: none} | |||
small { | |||
font-size: 50%} | |||
/* }}} */ | |||