Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
a2b03f8d02 |
1
.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
venv/
|
|
28
README.md
@ -1,28 +0,0 @@
|
|||||||
# Decentrala
|
|
||||||
|
|
||||||
Redisign of dmz.rs .
|
|
||||||
|
|
||||||
# STILL NOT COMPLETED
|
|
||||||
|
|
||||||
### TODO:
|
|
||||||
|
|
||||||
- [x] create themes switcher
|
|
||||||
- [x] "demo"
|
|
||||||
- [x] propagate to all pages
|
|
||||||
- [x] store theme to localStorage
|
|
||||||
- [x] read "user agent" for default theme
|
|
||||||
- [x] invert images and icons
|
|
||||||
- update projects section
|
|
||||||
- create blogging system
|
|
||||||
- create xmpp bot that connects to events section.
|
|
||||||
- [ ] make responsive
|
|
||||||
- create menus for smaller screens
|
|
||||||
- [x] created one menu
|
|
||||||
- this might be enough
|
|
||||||
- [x] adjust the mesh depending on the screen size
|
|
||||||
- no mesh on small screens
|
|
||||||
- tweak other random issues with layout
|
|
||||||
- make webring system
|
|
||||||
- make english version (localisation)
|
|
||||||
|
|
||||||
<!-- there is no place like ~/home -->
|
|
11
blog.py
@ -1,11 +0,0 @@
|
|||||||
# just testing markdown library for now
|
|
||||||
|
|
||||||
from markdown import markdown as to_markdown
|
|
||||||
|
|
||||||
blog = ""
|
|
||||||
|
|
||||||
with open('blogs/Lorem Ipsum.md','rt') as file:
|
|
||||||
blog = file.read()
|
|
||||||
|
|
||||||
with open('blogs/Lorem Ipsum.html', 'wt') as file:
|
|
||||||
file.write(to_markdown(blog))
|
|
@ -1,43 +0,0 @@
|
|||||||
<h1>Nulla possent lacrimas huius</h1>
|
|
||||||
<h2>Fratres quoque</h2>
|
|
||||||
<p>Lorem markdownum pariter: lata per tuae quo salus rorant septemfluus mecum
|
|
||||||
summisque feres potes Ulixes. Aeacus Tritonida reicere non convocat pariter
|
|
||||||
neque arma refovet quoque stabunt in. Velamina inrita, silvestribus, ut sarcina
|
|
||||||
memori, bellaque dummodo.</p>
|
|
||||||
<p>Factis dixit macies coissent! Nactasque molliter quam in memorant velamine;
|
|
||||||
praemia mundi <em>illo</em> Achille <strong>de</strong>.</p>
|
|
||||||
<h2>Velut Procrin</h2>
|
|
||||||
<p>Vobis <a href="http://www.palmae.net/aquis-inmota.html">grave</a> fessos ita Belides; poena
|
|
||||||
hora oculis celebrandaque audita guttur ad custodia exprobravit. Pacis monuere
|
|
||||||
et crimen loquor <em>contigit quae</em>! Nondum iudex, auro moratur rogaberis manet.
|
|
||||||
Faciem in dolor adusque, sum soror pectoris in reppulit superest caesis, Hebrum
|
|
||||||
e natura sonabunt. Incensaque An monitae, in animoque vulnerat terra cavo
|
|
||||||
torquet qui humili perque, cristis alii fruitur adacto.</p>
|
|
||||||
<ul>
|
|
||||||
<li>Est velavit idem</li>
|
|
||||||
<li>Naupliades tenebant instanti ense iactura ut nutantem</li>
|
|
||||||
<li>Miserarum corpore habet</li>
|
|
||||||
</ul>
|
|
||||||
<h2>Ad utque sic Charybdis iamque sequenti genitore</h2>
|
|
||||||
<p>Hesperien arida. Tibi caelo clavigeram saxoque capillos doleamne faveas testes
|
|
||||||
senex <strong>rudente lacrimis</strong> insula Cnosiacaeque? Dant ablato adulterium gemino,
|
|
||||||
pluvialibus una, dependent iactura illum redit atque dixi pondera. Eumque
|
|
||||||
sanguis errare, formasque parabat volubilibus satis creaverat dextera Iuppiter
|
|
||||||
te sero, est. Opem duceret quam tum pollentibus ramumque tauri; at Saturnia
|
|
||||||
erigitur imitamine ferens adunca delapsaque viminis, terras.</p>
|
|
||||||
<h2>Denique ostendit femina tamen</h2>
|
|
||||||
<p>Telum in ab utque ut et mihi <strong>auras Midan</strong> meo genus membra comites ne. Orbis
|
|
||||||
via necis. Romana deus, sub frangunt furor crepuscula equorum Teleboasque templa
|
|
||||||
virgineumque belua obsita est. Fragorem Somnus; ducebas placido oscula.</p>
|
|
||||||
<blockquote>
|
|
||||||
<p>Inmota manifesta producit, inquit verbisque fluctus iamque, quo fuerat ipse
|
|
||||||
nostra, iussit <strong>nec tenebat</strong>. Pars procul, pietate crinales meus <em>totiens</em>
|
|
||||||
haustus frondes, per sedebat. Domum vincite.</p>
|
|
||||||
</blockquote>
|
|
||||||
<h2>De curaque quoque reddat numina quae veniam</h2>
|
|
||||||
<p>Fessus iacit tantum elimat a medios vinoque finita adspergine liquerat munere
|
|
||||||
vultibus Atridae pecus positoque reluxit. Veniebat videtur laesae quod vacca,
|
|
||||||
lolium neu Perseus fraude nominibus contraria.</p>
|
|
||||||
<p>Parat <strong>ferus</strong> in actis terebrata animaeque <strong>quoque</strong>, deos et morte agitantem
|
|
||||||
ore. Proelia casus Gryneus. Quis mihi <em>ille cur</em> Assyrius per siquis, ille
|
|
||||||
Hecabe Arethusa, erigite perfectis.</p>
|
|
@ -1,53 +0,0 @@
|
|||||||
# Nulla possent lacrimas huius
|
|
||||||
|
|
||||||
## Fratres quoque
|
|
||||||
|
|
||||||
Lorem markdownum pariter: lata per tuae quo salus rorant septemfluus mecum
|
|
||||||
summisque feres potes Ulixes. Aeacus Tritonida reicere non convocat pariter
|
|
||||||
neque arma refovet quoque stabunt in. Velamina inrita, silvestribus, ut sarcina
|
|
||||||
memori, bellaque dummodo.
|
|
||||||
|
|
||||||
Factis dixit macies coissent! Nactasque molliter quam in memorant velamine;
|
|
||||||
praemia mundi *illo* Achille **de**.
|
|
||||||
|
|
||||||
## Velut Procrin
|
|
||||||
|
|
||||||
Vobis [grave](http://www.palmae.net/aquis-inmota.html) fessos ita Belides; poena
|
|
||||||
hora oculis celebrandaque audita guttur ad custodia exprobravit. Pacis monuere
|
|
||||||
et crimen loquor *contigit quae*! Nondum iudex, auro moratur rogaberis manet.
|
|
||||||
Faciem in dolor adusque, sum soror pectoris in reppulit superest caesis, Hebrum
|
|
||||||
e natura sonabunt. Incensaque An monitae, in animoque vulnerat terra cavo
|
|
||||||
torquet qui humili perque, cristis alii fruitur adacto.
|
|
||||||
|
|
||||||
- Est velavit idem
|
|
||||||
- Naupliades tenebant instanti ense iactura ut nutantem
|
|
||||||
- Miserarum corpore habet
|
|
||||||
|
|
||||||
## Ad utque sic Charybdis iamque sequenti genitore
|
|
||||||
|
|
||||||
Hesperien arida. Tibi caelo clavigeram saxoque capillos doleamne faveas testes
|
|
||||||
senex **rudente lacrimis** insula Cnosiacaeque? Dant ablato adulterium gemino,
|
|
||||||
pluvialibus una, dependent iactura illum redit atque dixi pondera. Eumque
|
|
||||||
sanguis errare, formasque parabat volubilibus satis creaverat dextera Iuppiter
|
|
||||||
te sero, est. Opem duceret quam tum pollentibus ramumque tauri; at Saturnia
|
|
||||||
erigitur imitamine ferens adunca delapsaque viminis, terras.
|
|
||||||
|
|
||||||
## Denique ostendit femina tamen
|
|
||||||
|
|
||||||
Telum in ab utque ut et mihi **auras Midan** meo genus membra comites ne. Orbis
|
|
||||||
via necis. Romana deus, sub frangunt furor crepuscula equorum Teleboasque templa
|
|
||||||
virgineumque belua obsita est. Fragorem Somnus; ducebas placido oscula.
|
|
||||||
|
|
||||||
> Inmota manifesta producit, inquit verbisque fluctus iamque, quo fuerat ipse
|
|
||||||
> nostra, iussit **nec tenebat**. Pars procul, pietate crinales meus *totiens*
|
|
||||||
> haustus frondes, per sedebat. Domum vincite.
|
|
||||||
|
|
||||||
## De curaque quoque reddat numina quae veniam
|
|
||||||
|
|
||||||
Fessus iacit tantum elimat a medios vinoque finita adspergine liquerat munere
|
|
||||||
vultibus Atridae pecus positoque reluxit. Veniebat videtur laesae quod vacca,
|
|
||||||
lolium neu Perseus fraude nominibus contraria.
|
|
||||||
|
|
||||||
Parat **ferus** in actis terebrata animaeque **quoque**, deos et morte agitantem
|
|
||||||
ore. Proelia casus Gryneus. Quis mihi *ille cur* Assyrius per siquis, ille
|
|
||||||
Hecabe Arethusa, erigite perfectis.
|
|
35
chat.html
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel="icon" type="image/x-icon" href="/static/d.png">
|
||||||
|
<link rel="stylesheet" href="./static/reset.css">
|
||||||
|
<link rel="stylesheet" href="./static/main.css">
|
||||||
|
<title>Decentrala</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="header">
|
||||||
|
<h1 class="logo">DECENTRALA</h1>
|
||||||
|
</div>
|
||||||
|
<main>
|
||||||
|
<ul class="nav">
|
||||||
|
<li><a href="/dogadjaji.html"><span class="leadingsign"> > </span>DOGAĐAJI</a></li>
|
||||||
|
<li><a href="/forum.html"><span class="leadingsign"> > </span>FORUM</a></li>
|
||||||
|
<li><a href="/chat.html"><span class="leadingsign"> > </span>CHAT</a></li>
|
||||||
|
<li><a href="/nalog.html"><span class="leadingsign"> > </span>NALOG</a></li>
|
||||||
|
<li><a href="/onama.html"><span class="leadingsign"> > </span>O NAMA</a></li>
|
||||||
|
<li><a href="/kontakt.html"><span class="leadingsign"> > </span>KONTAKT</a></li>
|
||||||
|
</ul>
|
||||||
|
<h2>Chat</h2>
|
||||||
|
<p> Za koriscenje XMPP (Jabber) mozete koristiti <a target="blank" href="https://gajim.org/download/">Gajim</a> na racunaru , <a target="blank" href="https://conversations.im/">Conversations</a> na Andoroid-u (ne pravite nalog na conversations.im serveru, mozete na dmz.rs ili nekom drugom) i <a target="blank" href="https://monal-im.org/">Monal</a> na Apple proizvodima. <p>
|
||||||
|
<p> Mozete nas naci u XMPP grupi <a href="xmpp:decentrala@conference.dmz.rs?join"> decentrala@conference.dmz.rs </a> <p>
|
||||||
|
<div class="back">
|
||||||
|
<ul class="nav">
|
||||||
|
<a href="../"><li>Nazad</li></a>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -1,12 +0,0 @@
|
|||||||
datum, vreme, lokacija, tema
|
|
||||||
03-05-2023, 12:00, Cvijeta Zuzoric https://www.openstreetmap.org/node/256367543, Otvaranje izlozbe (Q&A)
|
|
||||||
03-05-2023, 18:00, KC Grad https://www.openstreetmap.org/node/4118716889, Linux install fest
|
|
||||||
04-05-2023, 17:00, Cvijeta Zuzoric https://www.openstreetmap.org/node/256367543, ULUS izlozba (Q&A)
|
|
||||||
04-05-2023, 18:00, Polyhedra https://www.openstreetmap.org/node/4856556781, Uvod u racunarske mreze
|
|
||||||
04-05-2023, 21:00, n/a, Online sastanak sa Zajednicom za slobodnu tehnologiju iz Kikinde
|
|
||||||
05-05-2023, 15:30, Cvijeta Zuzoric https://www.openstreetmap.org/node/256367543, ULUS izlozba (Q&A)
|
|
||||||
06-05-2023, 12:00, Cvijeta Zuzoric https://www.openstreetmap.org/node/256367543, ULUS izlozba (Q&A)
|
|
||||||
07-05-2023, 16:00, Cvijeta Zuzoric https://www.openstreetmap.org/node/256367543, ULUS izlozba (diskusija)
|
|
||||||
08-05-2023, 19:00, DC Krov https://www.openstreetmap.org/node/10594728522, Linux install day
|
|
||||||
09-05-2023, 19:00, DC Krov https://www.openstreetmap.org/node/10594728522, Cryptoparty - Uvod u privatnost
|
|
||||||
11-05-2023, 18:00, Polyhedra https://www.openstreetmap.org/node/4856556781, Uvod u racunarske mreze
|
|
|
37
dogadjaji.html
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel="icon" type="image/x-icon" href="/static/d.png">
|
||||||
|
<link rel="stylesheet" href="./static/reset.css">
|
||||||
|
<link rel="stylesheet" href="./static/main.css">
|
||||||
|
<title>Decentrala</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<marquee scrollamount='10'>
|
||||||
|
<a href="/dogadjaji.html">RADIONICE SVAKOG UTORKA U 19H U DC KROVU</a>
|
||||||
|
</marquee>
|
||||||
|
<div class="container">
|
||||||
|
<div class="header">
|
||||||
|
<h1 class="logo">DECENTRALA</h1>
|
||||||
|
</div>
|
||||||
|
<main>
|
||||||
|
<ul class="nav">
|
||||||
|
<li><a href="/dogadjaji.html"><span class="leadingsign"> > </span>DOGAĐAJI</a></li>
|
||||||
|
<li><a href="/forum.html"><span class="leadingsign"> > </span>FORUM</a></li>
|
||||||
|
<li><a href="/chat.html"><span class="leadingsign"> > </span>CHAT</a></li>
|
||||||
|
<li><a href="/nalog.html"><span class="leadingsign"> > </span>NALOG</a></li>
|
||||||
|
<li><a href="/onama.html"><span class="leadingsign"> > </span>O NAMA</a></li>
|
||||||
|
<li><a href="/kontakt.html"><span class="leadingsign"> > </span>KONTAKT</a></li>
|
||||||
|
</ul>
|
||||||
|
<h2>Dogadjaji</h2>
|
||||||
|
<p> > Svakog utorka u DC Krovu (Beograd, Kraljice Marije 47, zadnji sprat) u 19h radionica Uvod u mreze <p>
|
||||||
|
<div class="back">
|
||||||
|
<ul class="nav">
|
||||||
|
<a href="../"><li>Nazad</li></a>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
35
forum.html
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel="icon" type="image/x-icon" href="/static/d.png">
|
||||||
|
<link rel="stylesheet" href="./static/reset.css">
|
||||||
|
<link rel="stylesheet" href="./static/main.css">
|
||||||
|
<title>Decentrala</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="header">
|
||||||
|
<h1 class="logo">DECENTRALA</h1>
|
||||||
|
</div>
|
||||||
|
<main>
|
||||||
|
<ul class="nav">
|
||||||
|
<li><a href="/dogadjaji.html"><span class="leadingsign"> > </span>DOGAĐAJI</a></li>
|
||||||
|
<li><a href="/forum.html"><span class="leadingsign"> > </span>FORUM</a></li>
|
||||||
|
<li><a href="/chat.html"><span class="leadingsign"> > </span>CHAT</a></li>
|
||||||
|
<li><a href="/nalog.html"><span class="leadingsign"> > </span>NALOG</a></li>
|
||||||
|
<li><a href="/onama.html"><span class="leadingsign"> > </span>O NAMA</a></li>
|
||||||
|
<li><a href="/kontakt.html"><span class="leadingsign"> > </span>KONTAKT</a></li>
|
||||||
|
</ul>
|
||||||
|
<h2>Forum</h2>
|
||||||
|
<p> Forum je na <a href="https://forum.dmz.rs">forum.dmz.rs</a> <p>
|
||||||
|
<p> Nalog na forumu nije povezan sa nalogom na xmpp i mail serveru <p>
|
||||||
|
<div class="back">
|
||||||
|
<ul class="nav">
|
||||||
|
<a href="../"><li>Nazad</li></a>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
<svg id="svg5" width="40" height="40" version="1.1" viewBox="0 0 10.583 10.583" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g id="layer1" fill="#fff">
|
|
||||||
<path id="path140" d="m5.2917 0a5.2917 5.2917 0 0 0-5.2917 5.2917 5.2917 5.2917 0 0 0 5.2917 5.2917 5.2917 5.2917 0 0 0 5.2917-5.2917 5.2917 5.2917 0 0 0-5.2917-5.2917zm0 0.66146a4.6302 4.6302 0 0 1 4.6302 4.6302 4.6302 4.6302 0 0 1-4.6302 4.6302 4.6302 4.6302 0 0 1-4.6302-4.6302 4.6302 4.6302 0 0 1 4.6302-4.6302z" stroke-width=".3554"/>
|
|
||||||
<g id="text2158" stroke-width=".35534" aria-label="cc">
|
|
||||||
<path id="path290" d="m3.175 7.3025q-0.35983 0-0.64911-0.10583-0.28222-0.10583-0.48683-0.30339-0.19756-0.19756-0.31044-0.47978-0.10583-0.28222-0.10583-0.62794v-0.98778q0-0.34572 0.10583-0.62794 0.11289-0.28222 0.31044-0.47978 0.20461-0.19756 0.48683-0.30339 0.28928-0.10583 0.64911-0.10583 0.64206 0 1.0513 0.35278 0.41628 0.34572 0.50094 0.9525h-0.635q-0.049389-0.33867-0.30339-0.53622-0.24694-0.20461-0.61383-0.20461-0.42333 0-0.67028 0.254-0.24694 0.254-0.24694 0.6985v0.98778q0 0.4445 0.23989 0.6985 0.24694 0.254 0.67733 0.254 0.36689 0 0.61383-0.19756 0.254-0.20461 0.30339-0.54328h0.635q-0.091722 0.61383-0.508 0.95956-0.40922 0.34572-1.0442 0.34572z"/>
|
|
||||||
<path id="path292" d="m7.4083 7.3025q-0.35983 0-0.64911-0.10583-0.28222-0.10583-0.48683-0.30339-0.19756-0.19756-0.31044-0.47978-0.10583-0.28222-0.10583-0.62794v-0.98778q0-0.34572 0.10583-0.62794 0.11289-0.28222 0.31044-0.47978 0.20461-0.19756 0.48683-0.30339 0.28928-0.10583 0.64911-0.10583 0.64206 0 1.0513 0.35278 0.41628 0.34572 0.50094 0.9525h-0.635q-0.049389-0.33867-0.30339-0.53622-0.24694-0.20461-0.61383-0.20461-0.42333 0-0.67028 0.254-0.24694 0.254-0.24694 0.6985v0.98778q0 0.4445 0.23989 0.6985 0.24694 0.254 0.67733 0.254 0.36689 0 0.61383-0.19756 0.254-0.20461 0.30339-0.54328h0.635q-0.091722 0.61383-0.508 0.95956-0.40922 0.34572-1.0442 0.34572z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
<svg id="svg5" width="40" height="40" version="1.1" viewBox="0 0 10.583 10.583" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g id="layer1" fill="#181715">
|
|
||||||
<path id="path140" d="m5.2917 0a5.2917 5.2917 0 0 0-5.2917 5.2917 5.2917 5.2917 0 0 0 5.2917 5.2917 5.2917 5.2917 0 0 0 5.2917-5.2917 5.2917 5.2917 0 0 0-5.2917-5.2917zm0 0.66146a4.6302 4.6302 0 0 1 4.6302 4.6302 4.6302 4.6302 0 0 1-4.6302 4.6302 4.6302 4.6302 0 0 1-4.6302-4.6302 4.6302 4.6302 0 0 1 4.6302-4.6302z" stroke-width=".3554"/>
|
|
||||||
<g id="text2158" stroke-width=".35534" aria-label="cc">
|
|
||||||
<path id="path290" d="m3.175 7.3025q-0.35983 0-0.64911-0.10583-0.28222-0.10583-0.48683-0.30339-0.19756-0.19756-0.31044-0.47978-0.10583-0.28222-0.10583-0.62794v-0.98778q0-0.34572 0.10583-0.62794 0.11289-0.28222 0.31044-0.47978 0.20461-0.19756 0.48683-0.30339 0.28928-0.10583 0.64911-0.10583 0.64206 0 1.0513 0.35278 0.41628 0.34572 0.50094 0.9525h-0.635q-0.049389-0.33867-0.30339-0.53622-0.24694-0.20461-0.61383-0.20461-0.42333 0-0.67028 0.254-0.24694 0.254-0.24694 0.6985v0.98778q0 0.4445 0.23989 0.6985 0.24694 0.254 0.67733 0.254 0.36689 0 0.61383-0.19756 0.254-0.20461 0.30339-0.54328h0.635q-0.091722 0.61383-0.508 0.95956-0.40922 0.34572-1.0442 0.34572z"/>
|
|
||||||
<path id="path292" d="m7.4083 7.3025q-0.35983 0-0.64911-0.10583-0.28222-0.10583-0.48683-0.30339-0.19756-0.19756-0.31044-0.47978-0.10583-0.28222-0.10583-0.62794v-0.98778q0-0.34572 0.10583-0.62794 0.11289-0.28222 0.31044-0.47978 0.20461-0.19756 0.48683-0.30339 0.28928-0.10583 0.64911-0.10583 0.64206 0 1.0513 0.35278 0.41628 0.34572 0.50094 0.9525h-0.635q-0.049389-0.33867-0.30339-0.53622-0.24694-0.20461-0.61383-0.20461-0.42333 0-0.67028 0.254-0.24694 0.254-0.24694 0.6985v0.98778q0 0.4445 0.23989 0.6985 0.24694 0.254 0.67733 0.254 0.36689 0 0.61383-0.19756 0.254-0.20461 0.30339-0.54328h0.635q-0.091722 0.61383-0.508 0.95956-0.40922 0.34572-1.0442 0.34572z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.9 KiB |
BIN
img/favicon.ico
Before Width: | Height: | Size: 134 KiB |
@ -1,3 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
<svg id="svg5" width="40" height="40" version="1.1" viewBox="0 0 10.583 10.583" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g id="layer1" fill="#fff"><path id="path234" d="m5.2917 0c-2.9225 0-5.2917 2.3692-5.2917 5.2917s2.3692 5.2917 5.2917 5.2917 5.2917-2.3692 5.2917-5.2917-2.3692-5.2917-5.2917-5.2917zm0 0.66146c2.5572 1e-7 4.6302 2.073 4.6302 4.6302 1e-7 2.5572-2.073 4.6302-4.6302 4.6302-2.5572 1e-7 -4.6302-2.073-4.6302-4.6302-3e-8 -0.62533 0.12396-1.2217 0.34865-1.7659 0.69415-1.6812 2.3497-2.8643 4.2816-2.8643z" stroke-width=".43932"/><path id="rect1196" d="m5.2725 1.2965c-0.19651 0.0047-0.39147 0.082448-0.54208 0.23306l-0.58704 0.58756 0.012403 0.012919 0.13642 0.13591 0.8139 0.81442a0.62532 0.62532 0 0 1 0.20412-0.03514 0.62532 0.62532 0 0 1 0.62528 0.62528 0.62532 0.62532 0 0 1-0.03514 0.20412l0.88315 0.88315a0.62532 0.62532 0 0 1 0.21084-0.037207 0.62532 0.62532 0 0 1 0.62528 0.62528 0.62532 0.62532 0 0 1-0.62528 0.62528 0.62532 0.62532 0 0 1-0.62528-0.62528 0.62532 0.62532 0 0 1 0.024288-0.17002l-0.82631-0.82631v2.1063a0.62532 0.62532 0 0 1 0.36845 0.56999 0.62532 0.62532 0 0 1-0.62528 0.62528 0.62532 0.62532 0 0 1-0.62528-0.62528 0.62532 0.62532 0 0 1 0.36845-0.56947v-2.2164a0.62532 0.62532 0 0 1-0.36845-0.56947 0.62532 0.62532 0 0 1 0.025838-0.17725l-0.95911-0.95911 0.001033-5.168e-4 -0.013435-0.013436-2.2097 2.2102c-0.31094 0.31094-0.31094 0.81147 0 1.1224l3.2008 3.2008c0.31094 0.31094 0.81147 0.31094 1.1224 0l3.2008-3.2008c0.31094-0.31094 0.31094-0.81147 0-1.1224l-3.2008-3.2008c-0.15547-0.15547-0.35831-0.23306-0.56121-0.23306-0.00634 0-0.012782-1.515e-4 -0.019121 0z" stroke-width=".37293"/></g></svg>
|
|
Before Width: | Height: | Size: 1.7 KiB |
@ -1,3 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
<svg id="svg5" width="40" height="40" version="1.1" viewBox="0 0 10.583 10.583" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g id="layer1" fill="#181715"><path id="path234" d="m5.2917 0a5.2917 5.2917 0 0 0-5.2917 5.2917 5.2917 5.2917 0 0 0 5.2917 5.2917 5.2917 5.2917 0 0 0 5.2917-5.2917 5.2917 5.2917 0 0 0-5.2917-5.2917zm0 0.66146a4.6302 4.6302 0 0 1 4.6302 4.6302 4.6302 4.6302 0 0 1-4.6302 4.6302 4.6302 4.6302 0 0 1-4.6302-4.6302 4.6302 4.6302 0 0 1 4.6302-4.6302z" stroke-width=".43932"/><path id="rect1196" d="m5.2725 1.2965c-0.19651 0.0047-0.39147 0.082448-0.54208 0.23306l-0.58704 0.58756 0.012403 0.012919 0.13642 0.13591 0.8139 0.81442a0.62532 0.62532 0 0 1 0.20412-0.03514 0.62532 0.62532 0 0 1 0.62528 0.62528 0.62532 0.62532 0 0 1-0.03514 0.20412l0.88315 0.88315a0.62532 0.62532 0 0 1 0.21084-0.037207 0.62532 0.62532 0 0 1 0.62528 0.62528 0.62532 0.62532 0 0 1-0.62528 0.62528 0.62532 0.62532 0 0 1-0.62528-0.62528 0.62532 0.62532 0 0 1 0.024288-0.17002l-0.82631-0.82631v2.1063a0.62532 0.62532 0 0 1 0.36845 0.56999 0.62532 0.62532 0 0 1-0.62528 0.62528 0.62532 0.62532 0 0 1-0.62528-0.62528 0.62532 0.62532 0 0 1 0.36845-0.56947v-2.2164a0.62532 0.62532 0 0 1-0.36845-0.56947 0.62532 0.62532 0 0 1 0.025838-0.17725l-0.95911-0.95911 0.001033-5.168e-4 -0.013435-0.013436-2.2097 2.2102c-0.31094 0.31094-0.31094 0.81147 0 1.1224l3.2008 3.2008c0.31094 0.31094 0.81147 0.31094 1.1224 0l3.2008-3.2008c0.31094-0.31094 0.31094-0.81147 0-1.1224l-3.2008-3.2008c-0.15547-0.15547-0.35831-0.23306-0.56121-0.23306-0.00634 0-0.012782-1.515e-4 -0.019121 0z" stroke-width=".37293"/></g></svg>
|
|
Before Width: | Height: | Size: 1.7 KiB |
@ -1,3 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
<svg id="svg1332" width="40" height="40" version="1.1" viewBox="0 0 10.583 10.583" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g id="layer1" fill="#fff"><path id="rect1756" d="m4.3183 1.9766c-1.1726 0-2.1167 0.82603-2.1167 1.8521v1.4382c0 0.13426 0.015785 0.26518 0.046509 0.39119-0.036015 0.37794 0.017995 0.87014 0.23719 1.5084 0.78289 2.2797 4.0194 1.1705 4.0194 1.1705s-0.021792-0.0096-0.045475-0.55449c-2.1752 0.49248-2.4572-0.32707-2.481-0.68678 0.11059 0.01549 0.2243 0.02326 0.34003 0.02326h1.9467c1.1726 0 2.1167-0.82603 2.1167-1.8521v-1.4382c0-1.0261-0.94404-1.8521-2.1167-1.8521zm0.03359 1.0878a1.0208 1.0208 0 0 1 0.96118 0.67644 1.0208 1.0208 0 0 1 0.96015-0.67644 1.0208 1.0208 0 0 1 1.0211 1.0206 1.0208 1.0208 0 0 1-5.168e-4 0.00672h5.168e-4v1.9053h-0.6873v-0.65216h0.00413v-1.0997h-0.00672a0.47585 0.47463 0 0 0-0.47594-0.46664 0.47585 0.47463 0 0 0-0.47594 0.47439 0.47585 0.47463 0 0 0 0.00672 0.076481v1.002h-0.68523v-0.4377a1.0208 1.0208 0 0 1-0.00258 0.00207v-0.678h-0.00672a0.47585 0.47463 0 0 0-0.47594-0.46716 0.47585 0.47463 0 0 0-0.47542 0.47491 0.47585 0.47463 0 0 0 0.0062 0.075964v0.74827a1.0208 1.0208 0 0 1-0.00103-5.168e-4v0.9555h-0.6873v-1.8702h0.00155a1.0208 1.0208 0 0 1-0.00155-0.049609 1.0208 1.0208 0 0 1 1.0206-1.0206z" stroke-width=".35534"/><path id="path2228" d="m5.2917 0a5.2917 5.2917 0 0 0-5.2917 5.2917 5.2917 5.2917 0 0 0 5.2917 5.2917 5.2917 5.2917 0 0 0 5.2917-5.2917 5.2917 5.2917 0 0 0-5.2917-5.2917zm0 0.66146a4.6302 4.6302 0 0 1 4.6302 4.6302 4.6302 4.6302 0 0 1-4.6302 4.6302 4.6302 4.6302 0 0 1-4.6302-4.6302 4.6302 4.6302 0 0 1 4.6302-4.6302z" stroke-width=".38059"/></g></svg>
|
|
Before Width: | Height: | Size: 1.7 KiB |
@ -1,3 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
<svg id="svg1332" width="40" height="40" version="1.1" viewBox="0 0 10.583 10.583" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g id="layer1" fill="#181715"><path id="rect1756" d="m4.3183 1.9766c-1.1726 0-2.1167 0.82603-2.1167 1.8521v1.4382c0 0.13426 0.015785 0.26518 0.046509 0.39119-0.036015 0.37794 0.017995 0.87014 0.23719 1.5084 0.78289 2.2797 4.0194 1.1705 4.0194 1.1705s-0.021792-0.0096-0.045475-0.55449c-2.1752 0.49248-2.4572-0.32707-2.481-0.68678 0.11059 0.01549 0.2243 0.02326 0.34003 0.02326h1.9467c1.1726 0 2.1167-0.82603 2.1167-1.8521v-1.4382c0-1.0261-0.94404-1.8521-2.1167-1.8521zm0.03359 1.0878a1.0208 1.0208 0 0 1 0.96118 0.67644 1.0208 1.0208 0 0 1 0.96015-0.67644 1.0208 1.0208 0 0 1 1.0211 1.0206 1.0208 1.0208 0 0 1-5.168e-4 0.00672h5.168e-4v1.9053h-0.6873v-0.65216h0.00413v-1.0997h-0.00672a0.47585 0.47463 0 0 0-0.47594-0.46664 0.47585 0.47463 0 0 0-0.47594 0.47439 0.47585 0.47463 0 0 0 0.00672 0.076481v1.002h-0.68523v-0.4377a1.0208 1.0208 0 0 1-0.00258 0.00207v-0.678h-0.00672a0.47585 0.47463 0 0 0-0.47594-0.46716 0.47585 0.47463 0 0 0-0.47542 0.47491 0.47585 0.47463 0 0 0 0.0062 0.075964v0.74827a1.0208 1.0208 0 0 1-0.00103-5.168e-4v0.9555h-0.6873v-1.8702h0.00155a1.0208 1.0208 0 0 1-0.00155-0.049609 1.0208 1.0208 0 0 1 1.0206-1.0206z" stroke-width=".35534"/><path id="path2228" d="m5.2917 0a5.2917 5.2917 0 0 0-5.2917 5.2917 5.2917 5.2917 0 0 0 5.2917 5.2917 5.2917 5.2917 0 0 0 5.2917-5.2917 5.2917 5.2917 0 0 0-5.2917-5.2917zm0 0.66146a4.6302 4.6302 0 0 1 4.6302 4.6302 4.6302 4.6302 0 0 1-4.6302 4.6302 4.6302 4.6302 0 0 1-4.6302-4.6302 4.6302 4.6302 0 0 1 4.6302-4.6302z" stroke-width=".38059"/></g></svg>
|
|
Before Width: | Height: | Size: 1.7 KiB |
@ -1,23 +0,0 @@
|
|||||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="500" height="700"
|
|
||||||
background-color="rgba(0,0,0,0)">
|
|
||||||
<line x1="500" x2="475" y1="0" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="450" y1="35" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="425" y1="70" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="400" y1="105" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="375" y1="140" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="350" y1="175" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="325" y1="210" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="300" y1="245" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="275" y1="280" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="250" y1="315" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="225" y1="350" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="200" y1="385" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="175" y1="420" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="150" y1="455" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="125" y1="490" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="100" y1="525" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="75" y1="560" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="50" y1="595" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="25" y1="630" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
<line x1="500" x2="0" y1="665" y2="700" stroke="rgba(255,255,255,1)" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,23 +0,0 @@
|
|||||||
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="500" height="700"
|
|
||||||
background-color="rgba(0,0,0,0)">
|
|
||||||
<line x1="500" x2="475" y1="0" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="450" y1="35" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="425" y1="70" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="400" y1="105" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="375" y1="140" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="350" y1="175" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="325" y1="210" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="300" y1="245" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="275" y1="280" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="250" y1="315" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="225" y1="350" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="200" y1="385" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="175" y1="420" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="150" y1="455" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="125" y1="490" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="100" y1="525" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="75" y1="560" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="50" y1="595" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="25" y1="630" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
<line x1="500" x2="0" y1="665" y2="700" stroke="rgba(24, 23, 21, 1)" />
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.6 KiB |
@ -1,63 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
width="40"
|
|
||||||
height="40"
|
|
||||||
viewBox="0 0 10.583333 10.583333"
|
|
||||||
version="1.1"
|
|
||||||
id="svg2421"
|
|
||||||
sodipodi:docname="srce-dark.svg"
|
|
||||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview2423"
|
|
||||||
pagecolor="#505050"
|
|
||||||
bordercolor="#eeeeee"
|
|
||||||
borderopacity="1"
|
|
||||||
inkscape:showpageshadow="0"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#505050"
|
|
||||||
inkscape:document-units="mm"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="7.967789"
|
|
||||||
inkscape:cx="4.2044286"
|
|
||||||
inkscape:cy="19.892595"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1048"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="layer1"
|
|
||||||
inkscape:pageshadow="0" />
|
|
||||||
<defs
|
|
||||||
id="defs2418" />
|
|
||||||
<g
|
|
||||||
inkscape:label="Layer 1"
|
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer1">
|
|
||||||
<path
|
|
||||||
id="path2477"
|
|
||||||
style="fill:#ffffff;stroke-width:0.355037"
|
|
||||||
d="M 5.2916667 0 A 5.2916665 5.2916665 0 0 0 0 5.2916667 A 5.2916665 5.2916665 0 0 0 5.2916667 10.583333 A 5.2916665 5.2916665 0 0 0 10.583333 5.2916667 A 5.2916665 5.2916665 0 0 0 5.2916667 0 z M 5.2916667 0.66145833 A 4.6302085 4.6302085 0 0 1 9.921875 5.2916667 A 4.6302085 4.6302085 0 0 1 5.2916667 9.921875 A 4.6302085 4.6302085 0 0 1 0.66145833 5.2916667 A 4.6302085 4.6302085 0 0 1 5.2916667 0.66145833 z " />
|
|
||||||
<text
|
|
||||||
xml:space="preserve"
|
|
||||||
style="font-size:7.05556px;font-family:'JetBrains Mono';-inkscape-font-specification:'JetBrains Mono, Normal';fill:#181715;fill-opacity:1;stroke-width:0.355335"
|
|
||||||
x="-2.7021213"
|
|
||||||
y="4.7616987"
|
|
||||||
id="text3068"><tspan
|
|
||||||
sodipodi:role="line"
|
|
||||||
id="tspan3066"
|
|
||||||
style="fill:#181715;fill-opacity:1;stroke-width:0.355335"
|
|
||||||
x="-2.7021213"
|
|
||||||
y="4.7616987" /></text>
|
|
||||||
<path
|
|
||||||
id="path3659"
|
|
||||||
style="fill:#ffffff;fill-opacity:1;stroke-width:0.384877"
|
|
||||||
d="m 2.4853365,3.1439096 a 1.984375,1.984375 0 0 0 0,2.80633 l 2.806331,2.8063301 2.8063299,-2.8063301 a 1.984375,1.984375 0 0 0 0,-2.80633 1.984375,1.984375 0 0 0 -2.8063299,0 1.984375,1.984375 0 0 0 -2.806331,0 z" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.5 KiB |
@ -1,62 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
width="40"
|
|
||||||
height="40"
|
|
||||||
viewBox="0 0 10.583333 10.583333"
|
|
||||||
version="1.1"
|
|
||||||
id="svg2421"
|
|
||||||
sodipodi:docname="srce.svg"
|
|
||||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview2423"
|
|
||||||
pagecolor="#505050"
|
|
||||||
bordercolor="#eeeeee"
|
|
||||||
borderopacity="1"
|
|
||||||
inkscape:showpageshadow="0"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#505050"
|
|
||||||
inkscape:document-units="mm"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="7.967789"
|
|
||||||
inkscape:cx="4.2044286"
|
|
||||||
inkscape:cy="19.892595"
|
|
||||||
inkscape:window-width="1362"
|
|
||||||
inkscape:window-height="764"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="layer1" />
|
|
||||||
<defs
|
|
||||||
id="defs2418" />
|
|
||||||
<g
|
|
||||||
inkscape:label="Layer 1"
|
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer1">
|
|
||||||
<path
|
|
||||||
id="path2477"
|
|
||||||
style="fill:#181715;stroke-width:0.355037"
|
|
||||||
d="M 5.2916667 0 A 5.2916665 5.2916665 0 0 0 0 5.2916667 A 5.2916665 5.2916665 0 0 0 5.2916667 10.583333 A 5.2916665 5.2916665 0 0 0 10.583333 5.2916667 A 5.2916665 5.2916665 0 0 0 5.2916667 0 z M 5.2916667 0.66145833 A 4.6302085 4.6302085 0 0 1 9.921875 5.2916667 A 4.6302085 4.6302085 0 0 1 5.2916667 9.921875 A 4.6302085 4.6302085 0 0 1 0.66145833 5.2916667 A 4.6302085 4.6302085 0 0 1 5.2916667 0.66145833 z " />
|
|
||||||
<text
|
|
||||||
xml:space="preserve"
|
|
||||||
style="font-size:7.05556px;font-family:'JetBrains Mono';-inkscape-font-specification:'JetBrains Mono, Normal';fill:#181715;fill-opacity:1;stroke-width:0.355335"
|
|
||||||
x="-2.7021213"
|
|
||||||
y="4.7616987"
|
|
||||||
id="text3068"><tspan
|
|
||||||
sodipodi:role="line"
|
|
||||||
id="tspan3066"
|
|
||||||
style="fill:#181715;fill-opacity:1;stroke-width:0.355335"
|
|
||||||
x="-2.7021213"
|
|
||||||
y="4.7616987" /></text>
|
|
||||||
<path
|
|
||||||
id="path3659"
|
|
||||||
style="fill:#181715;fill-opacity:1;stroke-width:0.384877"
|
|
||||||
d="m 2.4853365,3.1439096 a 1.984375,1.984375 0 0 0 0,2.80633 l 2.806331,2.8063301 2.8063299,-2.8063301 a 1.984375,1.984375 0 0 0 0,-2.80633 1.984375,1.984375 0 0 0 -2.8063299,0 1.984375,1.984375 0 0 0 -2.806331,0 z" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 2.5 KiB |
@ -1,43 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
width="40"
|
|
||||||
height="40"
|
|
||||||
viewBox="0 0 10 10"
|
|
||||||
version="1.1"
|
|
||||||
id="svg5"
|
|
||||||
sodipodi:docname="strelica-closed-dark.svg"
|
|
||||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview6"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#111111"
|
|
||||||
borderopacity="1"
|
|
||||||
inkscape:pageshadow="0"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="20.975"
|
|
||||||
inkscape:cx="20"
|
|
||||||
inkscape:cy="20"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1048"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="layer1" />
|
|
||||||
<defs
|
|
||||||
id="defs2" />
|
|
||||||
<g
|
|
||||||
id="layer1">
|
|
||||||
<path
|
|
||||||
id="rect288"
|
|
||||||
style="fill:#ffffff;stroke-width:0.345614"
|
|
||||||
d="M 0 0 L 0 1.25 L 8.1494141 1.25 L 2.5751953 10 L 4.0571289 10 L 8.75 2.6333008 L 8.75 10 L 10 10 L 10 1.25 L 10 0.67138672 L 10 0 L 8.9458008 0 L 8.75 0 L 0 0 z " />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,21 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
width="40"
|
|
||||||
height="40"
|
|
||||||
viewBox="0 0 10 10"
|
|
||||||
version="1.1"
|
|
||||||
id="svg5"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs2" />
|
|
||||||
<g
|
|
||||||
id="layer1">
|
|
||||||
<path
|
|
||||||
id="rect288"
|
|
||||||
style="fill:#181715;stroke-width:0.345614"
|
|
||||||
d="M 0 0 L 0 1.25 L 8.1494141 1.25 L 2.5751953 10 L 4.0571289 10 L 8.75 2.6333008 L 8.75 10 L 10 10 L 10 1.25 L 10 0.67138672 L 10 0 L 8.9458008 0 L 8.75 0 L 0 0 z " />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 602 B |
@ -1,43 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
width="40"
|
|
||||||
height="40"
|
|
||||||
viewBox="0 0 10 10"
|
|
||||||
version="1.1"
|
|
||||||
id="svg5"
|
|
||||||
sodipodi:docname="strelica-opened-dark.svg"
|
|
||||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview6"
|
|
||||||
pagecolor="#ffffff"
|
|
||||||
bordercolor="#111111"
|
|
||||||
borderopacity="1"
|
|
||||||
inkscape:pageshadow="0"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="1"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="20.975"
|
|
||||||
inkscape:cx="20"
|
|
||||||
inkscape:cy="20"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1048"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="layer1" />
|
|
||||||
<defs
|
|
||||||
id="defs2" />
|
|
||||||
<g
|
|
||||||
id="layer1">
|
|
||||||
<path
|
|
||||||
id="rect288"
|
|
||||||
style="fill:#ffffff;stroke-width:0.345614"
|
|
||||||
d="M 0 0 L 0 1.25 L 2.8071289 1.25 L 2.8071289 10 L 4.0571289 10 L 4.0571289 1.25 L 8.75 1.25 L 10 1.25 L 10 0 L 8.75 0 L 0 0 z " />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.3 KiB |
@ -1,21 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
width="40"
|
|
||||||
height="40"
|
|
||||||
viewBox="0 0 10 10"
|
|
||||||
version="1.1"
|
|
||||||
id="svg5"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<defs
|
|
||||||
id="defs2" />
|
|
||||||
<g
|
|
||||||
id="layer1">
|
|
||||||
<path
|
|
||||||
id="rect288"
|
|
||||||
style="fill:#181715;stroke-width:0.345614"
|
|
||||||
d="M 0 0 L 0 1.25 L 2.8071289 1.25 L 2.8071289 10 L 4.0571289 10 L 4.0571289 1.25 L 8.75 1.25 L 10 1.25 L 10 0 L 8.75 0 L 0 0 z " />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 566 B |
@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
<svg id="svg2421" width="40" height="40" version="1.1" viewBox="0 0 10.583 10.583" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g id="layer1">
|
|
||||||
<path id="path2477" d="m5.2917 0a5.2917 5.2917 0 0 0-5.2917 5.2917 5.2917 5.2917 0 0 0 5.2917 5.2917 5.2917 5.2917 0 0 0 5.2917-5.2917 5.2917 5.2917 0 0 0-5.2917-5.2917zm0 0.66146a4.6302 4.6302 0 0 1 4.6302 4.6302 4.6302 4.6302 0 0 1-4.6302 4.6302 4.6302 4.6302 0 0 1-4.6302-4.6302 4.6302 4.6302 0 0 1 4.6302-4.6302z" fill="#fff" stroke-width=".35504"/>
|
|
||||||
<g id="text3068" fill="#181715" stroke-width=".35534" aria-label="w">
|
|
||||||
<path id="path698" d="m2.4342 2.3813h0.84666l0.51858 3.9899q0.021167 0.1905 0.042333 0.42333 0.021167 0.23283 0.042333 0.43392 0.021167 0.23283 0.042333 0.46567h0.11642q0.021167-0.23283 0.052916-0.46567 0.021167-0.20108 0.052917-0.43392t0.0635-0.42333l0.61383-3.9899h0.91016l0.61383 3.9899q0.03175 0.20108 0.0635 0.43392t0.052917 0.43392q0.03175 0.23283 0.052917 0.45508h0.127q0.021167-0.23283 0.042333-0.46567 0.021167-0.20108 0.052916-0.42333 0.03175-0.23283 0.052917-0.43392l0.52916-3.9899h0.8255l-0.8255 5.8208h-1.3017l-0.60325-4.1169q-0.021167-0.17992-0.042333-0.37042-0.010583-0.20108-0.021167-0.37042 0-0.1905 0-0.381h-0.13758q0 0.1905-0.010583 0.381-0.010583 0.16933-0.021167 0.37042-0.010583 0.1905-0.042333 0.37042l-0.62441 4.1169h-1.27z" fill="#fff"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.4 KiB |
@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
<svg id="svg2421" width="40" height="40" version="1.1" viewBox="0 0 10.583 10.583" xmlns="http://www.w3.org/2000/svg">
|
|
||||||
<g id="layer1" fill="#181715">
|
|
||||||
<path id="path2477" d="m5.2917 0a5.2917 5.2917 0 0 0-5.2917 5.2917 5.2917 5.2917 0 0 0 5.2917 5.2917 5.2917 5.2917 0 0 0 5.2917-5.2917 5.2917 5.2917 0 0 0-5.2917-5.2917zm0 0.66146a4.6302 4.6302 0 0 1 4.6302 4.6302 4.6302 4.6302 0 0 1-4.6302 4.6302 4.6302 4.6302 0 0 1-4.6302-4.6302 4.6302 4.6302 0 0 1 4.6302-4.6302z" stroke-width=".35504"/>
|
|
||||||
<g id="text3068" stroke-width=".35534" aria-label="w">
|
|
||||||
<path id="path698" d="m2.4342 2.3813h0.84666l0.51858 3.9899q0.021167 0.1905 0.042333 0.42333 0.021167 0.23283 0.042333 0.43392 0.021167 0.23283 0.042333 0.46567h0.11642q0.021167-0.23283 0.052916-0.46567 0.021167-0.20108 0.052917-0.43392t0.0635-0.42333l0.61383-3.9899h0.91016l0.61383 3.9899q0.03175 0.20108 0.0635 0.43392t0.052917 0.43392q0.03175 0.23283 0.052917 0.45508h0.127q0.021167-0.23283 0.042333-0.46567 0.021167-0.20108 0.052916-0.42333 0.03175-0.23283 0.052917-0.43392l0.52916-3.9899h0.8255l-0.8255 5.8208h-1.3017l-0.60325-4.1169q-0.021167-0.17992-0.042333-0.37042-0.010583-0.20108-0.021167-0.37042 0-0.1905 0-0.381h-0.13758q0 0.1905-0.010583 0.381-0.010583 0.16933-0.021167 0.37042-0.010583 0.1905-0.042333 0.37042l-0.62441 4.1169h-1.27z"/>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.4 KiB |
@ -1,60 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
width="40"
|
|
||||||
height="40"
|
|
||||||
viewBox="0 0 10.583333 10.583333"
|
|
||||||
version="1.1"
|
|
||||||
id="svg2421"
|
|
||||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
|
||||||
sodipodi:docname="www-dark.svg"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview2423"
|
|
||||||
pagecolor="#505050"
|
|
||||||
bordercolor="#eeeeee"
|
|
||||||
borderopacity="1"
|
|
||||||
inkscape:showpageshadow="0"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#505050"
|
|
||||||
inkscape:document-units="mm"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="11.268155"
|
|
||||||
inkscape:cx="19.39093"
|
|
||||||
inkscape:cy="17.793507"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="1048"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="32"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="layer1"
|
|
||||||
inkscape:pageshadow="0" />
|
|
||||||
<defs
|
|
||||||
id="defs2418" />
|
|
||||||
<g
|
|
||||||
inkscape:label="Layer 1"
|
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer1">
|
|
||||||
<path
|
|
||||||
id="path2477"
|
|
||||||
style="fill:#ffffff;stroke-width:0.355037"
|
|
||||||
d="M 5.2916667 0 A 5.2916665 5.2916665 0 0 0 0 5.2916667 A 5.2916665 5.2916665 0 0 0 5.2916667 10.583333 A 5.2916665 5.2916665 0 0 0 10.583333 5.2916667 A 5.2916665 5.2916665 0 0 0 5.2916667 0 z M 5.2916667 0.66145833 A 4.6302085 4.6302085 0 0 1 9.921875 5.2916667 A 4.6302085 4.6302085 0 0 1 5.2916667 9.921875 A 4.6302085 4.6302085 0 0 1 0.66145833 5.2916667 A 4.6302085 4.6302085 0 0 1 5.2916667 0.66145833 z " />
|
|
||||||
<path
|
|
||||||
d="M 1.6086655,4.1275011 H 1.9473319 L 2.154765,5.7234664 q 0.00847,0.0762 0.016933,0.1693332 0.00847,0.093133 0.016933,0.1735665 0.00847,0.093133 0.016933,0.1862666 h 0.046567 q 0.00847,-0.093133 0.021167,-0.1862666 0.00847,-0.080433 0.021167,-0.1735665 0.0127,-0.093133 0.0254,-0.1693332 L 2.565398,4.1275011 h 0.3640664 l 0.2455331,1.5959653 q 0.0127,0.080433 0.0254,0.1735666 0.0127,0.093133 0.021167,0.1735665 0.0127,0.093133 0.021167,0.1820332 h 0.0508 q 0.00847,-0.093133 0.016933,-0.1862666 0.00847,-0.080433 0.021167,-0.1693331 0.0127,-0.093133 0.021167,-0.1735666 L 3.5644639,4.1275011 H 3.8946636 L 3.5644639,6.4558325 H 3.0437643 L 2.8024645,4.8090672 q -0.00847,-0.071967 -0.016933,-0.1481665 -0.00423,-0.080433 -0.00847,-0.1481666 0,-0.0762 0,-0.1523999 h -0.055033 q 0,0.0762 -0.00423,0.1523999 -0.00423,0.067733 -0.00847,0.1481666 -0.00423,0.0762 -0.016933,0.1481665 L 2.4426315,6.4558325 H 1.9346319 Z"
|
|
||||||
id="path503"
|
|
||||||
style="font-size:4.23333px;font-family:'JetBrains Mono';-inkscape-font-specification:'JetBrains Mono, Normal';fill:#ffffff;stroke-width:0.355335" />
|
|
||||||
<path
|
|
||||||
d="m 4.148665,4.1275011 h 0.3386664 l 0.2074331,1.5959653 q 0.00847,0.0762 0.016933,0.1693332 0.00847,0.093133 0.016933,0.1735665 0.00847,0.093133 0.016933,0.1862666 h 0.046567 q 0.00847,-0.093133 0.021167,-0.1862666 0.00847,-0.080433 0.021167,-0.1735665 0.0127,-0.093133 0.0254,-0.1693332 L 5.1053975,4.1275011 H 5.4694639 L 5.714997,5.7234664 q 0.0127,0.080433 0.0254,0.1735666 0.0127,0.093133 0.021167,0.1735665 0.0127,0.093133 0.021167,0.1820332 h 0.0508 Q 5.842001,6.1594997 5.850464,6.0663661 5.858934,5.9859331 5.871631,5.897033 5.884331,5.8039 5.892798,5.7234664 L 6.1044633,4.1275011 H 6.4346631 L 6.1044633,6.4558325 H 5.5837638 L 5.342464,4.8090672 Q 5.333994,4.7371002 5.325531,4.6609007 5.321301,4.5804677 5.317061,4.5127341 q 0,-0.0762 0,-0.1523999 H 5.262028 q 0,0.0762 -0.00423,0.1523999 -0.00423,0.067733 -0.00847,0.1481666 -0.00423,0.0762 -0.016933,0.1481665 L 4.982631,6.4558325 H 4.4746314 Z"
|
|
||||||
id="path505"
|
|
||||||
style="font-size:4.23333px;font-family:'JetBrains Mono';-inkscape-font-specification:'JetBrains Mono, Normal';fill:#ffffff;stroke-width:0.355335" />
|
|
||||||
<path
|
|
||||||
d="M 6.6886645,4.1275011 H 7.0273309 L 7.234764,5.7234664 q 0.00847,0.0762 0.016933,0.1693332 0.00847,0.093133 0.016933,0.1735665 0.00847,0.093133 0.016933,0.1862666 H 7.33213 q 0.00847,-0.093133 0.021167,-0.1862666 0.00847,-0.080433 0.021167,-0.1735665 0.0127,-0.093133 0.0254,-0.1693332 L 7.645397,4.1275011 h 0.3640664 l 0.2455331,1.5959653 q 0.0127,0.080433 0.0254,0.1735666 0.0127,0.093133 0.021167,0.1735665 0.0127,0.093133 0.021167,0.1820332 h 0.0508 q 0.00847,-0.093133 0.016933,-0.1862666 0.00847,-0.080433 0.021167,-0.1693331 0.0127,-0.093133 0.021167,-0.1735666 L 8.6444628,4.1275011 H 8.9746626 L 8.6444628,6.4558325 H 8.1237633 L 7.8824635,4.8090672 q -0.00847,-0.071967 -0.016933,-0.1481665 -0.00423,-0.080433 -0.00847,-0.1481666 0,-0.0762 0,-0.1523999 h -0.055033 q 0,0.0762 -0.00423,0.1523999 -0.00423,0.067733 -0.00847,0.1481666 -0.00423,0.0762 -0.016933,0.1481665 L 7.5226304,6.4558325 H 7.0146309 Z"
|
|
||||||
id="path507"
|
|
||||||
style="font-size:4.23333px;font-family:'JetBrains Mono';-inkscape-font-specification:'JetBrains Mono, Normal';fill:#ffffff;stroke-width:0.355335" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 5.0 KiB |
@ -1,59 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
|
||||||
width="40"
|
|
||||||
height="40"
|
|
||||||
viewBox="0 0 10.583333 10.583333"
|
|
||||||
version="1.1"
|
|
||||||
id="svg2421"
|
|
||||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
|
||||||
sodipodi:docname="www.svg"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
|
||||||
xmlns:svg="http://www.w3.org/2000/svg">
|
|
||||||
<sodipodi:namedview
|
|
||||||
id="namedview2423"
|
|
||||||
pagecolor="#505050"
|
|
||||||
bordercolor="#eeeeee"
|
|
||||||
borderopacity="1"
|
|
||||||
inkscape:showpageshadow="0"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#505050"
|
|
||||||
inkscape:document-units="mm"
|
|
||||||
showgrid="false"
|
|
||||||
inkscape:zoom="11.268155"
|
|
||||||
inkscape:cx="19.435302"
|
|
||||||
inkscape:cy="17.793507"
|
|
||||||
inkscape:window-width="1362"
|
|
||||||
inkscape:window-height="764"
|
|
||||||
inkscape:window-x="112"
|
|
||||||
inkscape:window-y="3"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:current-layer="layer1" />
|
|
||||||
<defs
|
|
||||||
id="defs2418" />
|
|
||||||
<g
|
|
||||||
inkscape:label="Layer 1"
|
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer1">
|
|
||||||
<path
|
|
||||||
id="path2477"
|
|
||||||
style="fill:#181715;stroke-width:0.355037"
|
|
||||||
d="M 5.2916667 0 A 5.2916665 5.2916665 0 0 0 0 5.2916667 A 5.2916665 5.2916665 0 0 0 5.2916667 10.583333 A 5.2916665 5.2916665 0 0 0 10.583333 5.2916667 A 5.2916665 5.2916665 0 0 0 5.2916667 0 z M 5.2916667 0.66145833 A 4.6302085 4.6302085 0 0 1 9.921875 5.2916667 A 4.6302085 4.6302085 0 0 1 5.2916667 9.921875 A 4.6302085 4.6302085 0 0 1 0.66145833 5.2916667 A 4.6302085 4.6302085 0 0 1 5.2916667 0.66145833 z " />
|
|
||||||
<path
|
|
||||||
d="M 1.6086655,4.1275011 H 1.9473319 L 2.154765,5.7234664 q 0.00847,0.0762 0.016933,0.1693332 0.00847,0.093133 0.016933,0.1735665 0.00847,0.093133 0.016933,0.1862666 h 0.046567 q 0.00847,-0.093133 0.021167,-0.1862666 0.00847,-0.080433 0.021167,-0.1735665 0.0127,-0.093133 0.0254,-0.1693332 L 2.565398,4.1275011 h 0.3640664 l 0.2455331,1.5959653 q 0.0127,0.080433 0.0254,0.1735666 0.0127,0.093133 0.021167,0.1735665 0.0127,0.093133 0.021167,0.1820332 h 0.0508 q 0.00847,-0.093133 0.016933,-0.1862666 0.00847,-0.080433 0.021167,-0.1693331 0.0127,-0.093133 0.021167,-0.1735666 L 3.5644639,4.1275011 H 3.8946636 L 3.5644639,6.4558325 H 3.0437643 L 2.8024645,4.8090672 q -0.00847,-0.071967 -0.016933,-0.1481665 -0.00423,-0.080433 -0.00847,-0.1481666 0,-0.0762 0,-0.1523999 h -0.055033 q 0,0.0762 -0.00423,0.1523999 -0.00423,0.067733 -0.00847,0.1481666 -0.00423,0.0762 -0.016933,0.1481665 L 2.4426315,6.4558325 H 1.9346319 Z"
|
|
||||||
id="path503"
|
|
||||||
style="font-size:4.23333px;font-family:'JetBrains Mono';-inkscape-font-specification:'JetBrains Mono, Normal';fill:#181715;stroke-width:0.355335" />
|
|
||||||
<path
|
|
||||||
d="m 4.148665,4.1275011 h 0.3386664 l 0.2074331,1.5959653 q 0.00847,0.0762 0.016933,0.1693332 0.00847,0.093133 0.016933,0.1735665 0.00847,0.093133 0.016933,0.1862666 h 0.046567 q 0.00847,-0.093133 0.021167,-0.1862666 0.00847,-0.080433 0.021167,-0.1735665 0.0127,-0.093133 0.0254,-0.1693332 L 5.1053975,4.1275011 H 5.4694639 L 5.714997,5.7234664 q 0.0127,0.080433 0.0254,0.1735666 0.0127,0.093133 0.021167,0.1735665 0.0127,0.093133 0.021167,0.1820332 h 0.0508 Q 5.842001,6.1594997 5.850464,6.0663661 5.858934,5.9859331 5.871631,5.897033 5.884331,5.8039 5.892798,5.7234664 L 6.1044633,4.1275011 H 6.4346631 L 6.1044633,6.4558325 H 5.5837638 L 5.342464,4.8090672 Q 5.333994,4.7371002 5.325531,4.6609007 5.321301,4.5804677 5.317061,4.5127341 q 0,-0.0762 0,-0.1523999 H 5.262028 q 0,0.0762 -0.00423,0.1523999 -0.00423,0.067733 -0.00847,0.1481666 -0.00423,0.0762 -0.016933,0.1481665 L 4.982631,6.4558325 H 4.4746314 Z"
|
|
||||||
id="path505"
|
|
||||||
style="font-size:4.23333px;font-family:'JetBrains Mono';-inkscape-font-specification:'JetBrains Mono, Normal';fill:#181715;stroke-width:0.355335" />
|
|
||||||
<path
|
|
||||||
d="M 6.6886645,4.1275011 H 7.0273309 L 7.234764,5.7234664 q 0.00847,0.0762 0.016933,0.1693332 0.00847,0.093133 0.016933,0.1735665 0.00847,0.093133 0.016933,0.1862666 H 7.33213 q 0.00847,-0.093133 0.021167,-0.1862666 0.00847,-0.080433 0.021167,-0.1735665 0.0127,-0.093133 0.0254,-0.1693332 L 7.645397,4.1275011 h 0.3640664 l 0.2455331,1.5959653 q 0.0127,0.080433 0.0254,0.1735666 0.0127,0.093133 0.021167,0.1735665 0.0127,0.093133 0.021167,0.1820332 h 0.0508 q 0.00847,-0.093133 0.016933,-0.1862666 0.00847,-0.080433 0.021167,-0.1693331 0.0127,-0.093133 0.021167,-0.1735666 L 8.6444628,4.1275011 H 8.9746626 L 8.6444628,6.4558325 H 8.1237633 L 7.8824635,4.8090672 q -0.00847,-0.071967 -0.016933,-0.1481665 -0.00423,-0.080433 -0.00847,-0.1481666 0,-0.0762 0,-0.1523999 h -0.055033 q 0,0.0762 -0.00423,0.1523999 -0.00423,0.067733 -0.00847,0.1481666 -0.00423,0.0762 -0.016933,0.1481665 L 7.5226304,6.4558325 H 7.0146309 Z"
|
|
||||||
id="path507"
|
|
||||||
style="font-size:4.23333px;font-family:'JetBrains Mono';-inkscape-font-specification:'JetBrains Mono, Normal';fill:#181715;stroke-width:0.355335" />
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 5.0 KiB |
92
index.html
@ -1,78 +1,30 @@
|
|||||||
<!DOCTYPE html>
|
<!doctype html>
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<html>
|
||||||
<link rel="stylesheet" href="/styles/style.css">
|
<head>
|
||||||
<link rel="stylesheet" href="/styles/home.css">
|
<link rel="icon" type="image/x-icon" href="/static/d.png">
|
||||||
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
<link rel="stylesheet" href="./static/reset.css">
|
||||||
<script src="/scripts/main.js" defer></script>
|
<link rel="stylesheet" href="./static/main.css">
|
||||||
<title>Decentrala</title>
|
<title>Decentrala</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<marquee scrollamount='10'>
|
||||||
<a class="logo" href="/index.html">Decentrala</a>
|
<a href="/dogadjaji.html">RADIONICE SVAKOG UTORKA U 19H U DC KROVU</a>
|
||||||
<span>
|
</marquee>
|
||||||
<button id="theme-switcher">turn the lights off</button>
|
<div class="container">
|
||||||
<a class="account" href="/pages/account.html">Nalog</a>
|
<div class="header">
|
||||||
</span>
|
<h1 class="logo">DECENTRALA</h1>
|
||||||
</header>
|
|
||||||
<div id="main">
|
|
||||||
<h1>Dobrodosli!</h1>
|
|
||||||
<p>
|
|
||||||
Mi smo <em>Decentrala</em> - grupa entuzijasta okupljena oko ideja decentralizacije i slobodnog sirenja znanja.
|
|
||||||
Zvuci interesantno? Evo jos nekih stvari o nama:
|
|
||||||
</p>
|
|
||||||
<dl>
|
|
||||||
<dt>Znanje:</dt>
|
|
||||||
<dd>Sve nase radionice su besplatne i otvorene za sve zainteresovane, a ako imate nesto sto zelite da
|
|
||||||
podelite, najavite se na nasem <a href="https://forum.dmz.rs">Forumu</a> i odrzite radionicu kod nas!</dd>
|
|
||||||
<dt>Akcije:</dt>
|
|
||||||
<dd>Povremeno organizujemo razlicite akcije, hakatone, crypto-partije, izlozbe i slicne dogadjaje otvorene za sve
|
|
||||||
zainteresovane. </dd>
|
|
||||||
<dt>Servisi:</dt>
|
|
||||||
<dd>Na nasim serverima pokrecemo neke servise (email, git, wiki i druge) koji su otvoreni za sve i koje mozes
|
|
||||||
koristiti sa ili bez naseg naloga.</dd>
|
|
||||||
<dt>Ljudi:</dt>
|
|
||||||
<dd>Lorem ipsum dolor sit amet.</dd>
|
|
||||||
</dl>
|
|
||||||
<p>
|
|
||||||
Ako si procitao sve i i dalje si zainteresovan, mozes da napravis <a href="/pages/account.html">nalog</a> na nasem
|
|
||||||
serveru koji ce
|
|
||||||
ti omoguciti da koristis sve nase <a href="/pages/services.html">servise</a>, a ako prvo hoces da vidis kako to
|
|
||||||
sve izgleda u realnosti, mozes da dodjes na neki od nasih <a href="/pages/events.html">dogadjaja</a>, i tamo nas
|
|
||||||
upoznas!
|
|
||||||
</p>
|
|
||||||
<img id="mesh" src="/img/mesh-light.svg">
|
|
||||||
</div>
|
</div>
|
||||||
<footer>
|
<main>
|
||||||
<div id="sections-menu">
|
<ul class="nav">
|
||||||
<a href="/pages/events.html">Dogadjaji</a>
|
<li><a href="/dogadjaji.html"><span class="leadingsign"> > </span>DOGAĐAJI</a></li>
|
||||||
<a href="/pages/projects.html">Projekti</a>
|
<li><a href="/forum.html"><span class="leadingsign"> > </span>FORUM</a></li>
|
||||||
<a href="/pages/blog.html">Blog</a>
|
<li><a href="/chat.html"><span class="leadingsign"> > </span>CHAT</a></li>
|
||||||
<a href="/pages/services.html">Servisi</a>
|
<li><a href="/nalog.html"><span class="leadingsign"> > </span>NALOG</a></li>
|
||||||
<a href="/pages/contact.html">Kontakt</a>
|
<li><a href="/onama.html"><span class="leadingsign"> > </span>O NAMA</a></li>
|
||||||
|
<li><a href="/kontakt.html"><span class="leadingsign"> > </span>KONTAKT</a></li>
|
||||||
|
</ul>
|
||||||
|
</main>
|
||||||
</div>
|
</div>
|
||||||
<button id="sections-button" opened="false"><img src="/img/strelica-closed-light.svg" alt="OpenMenu"></button>
|
|
||||||
<span class="sections">
|
|
||||||
<a href="/pages/events.html">Dogadjaji</a>
|
|
||||||
<a href="/pages/projects.html">Projekti</a>
|
|
||||||
<a href="/pages/blog.html">Blog</a>
|
|
||||||
<a href="/pages/services.html">Servisi</a>
|
|
||||||
<a href="/pages/contact.html">Kontakt</a>
|
|
||||||
</span>
|
|
||||||
<span class="copyleft">
|
|
||||||
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img src="/img/cc-light.svg"
|
|
||||||
alt="CreativeCommons"></a>
|
|
||||||
<a href=""><img src="/img/w-light.svg" alt="Webring"></a>
|
|
||||||
<a href="https://gitea.dmz.rs/eline/decentrala-website-static-new"><img src="/img/git-light.svg"
|
|
||||||
alt="SourceCode"></a>
|
|
||||||
<a href="https://balkan.fedive.rs/@decentrala"><img src="/img/mastodon-light.svg" alt="Mastodon"></a>
|
|
||||||
<span>Decentrala © 2023</span>
|
|
||||||
</span>
|
|
||||||
</footer>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
36
kontakt.html
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel="icon" type="image/x-icon" href="/static/d.png">
|
||||||
|
<link rel="stylesheet" href="./static/reset.css">
|
||||||
|
<link rel="stylesheet" href="./static/main.css">
|
||||||
|
<title>Decentrala</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="header">
|
||||||
|
<h1 class="logo">DECENTRALA</h1>
|
||||||
|
</div>
|
||||||
|
<main>
|
||||||
|
<ul class="nav">
|
||||||
|
<li><a href="/dogadjaji.html"><span class="leadingsign"> > </span>DOGAĐAJI</a></li>
|
||||||
|
<li><a href="/forum.html"><span class="leadingsign"> > </span>FORUM</a></li>
|
||||||
|
<li><a href="/chat.html"><span class="leadingsign"> > </span>CHAT</a></li>
|
||||||
|
<li><a href="/nalog.html"><span class="leadingsign"> > </span>NALOG</a></li>
|
||||||
|
<li><a href="/onama.html"><span class="leadingsign"> > </span>O NAMA</a></li>
|
||||||
|
<li><a href="/kontakt.html"><span class="leadingsign"> > </span>KONTAKT</a></li>
|
||||||
|
</ul>
|
||||||
|
<h2>Kontakt</h2>
|
||||||
|
<p> Mozete nam poslati email na dmz@dmz.rs <p>
|
||||||
|
<p> Ili nas kontaktiraje na <a href="/forum.html">forumu</a> ili <a href="/chat.html">chat kanalu</a> <p>
|
||||||
|
<p> Takodje mozete i doci na neku od dogadjaja i upoznati nas uzivo <p>
|
||||||
|
<div class="back">
|
||||||
|
<ul class="nav">
|
||||||
|
<a href="../"><li>Nazad</li></a>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
40
nalog.html
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel="icon" type="image/x-icon" href="/static/d.png">
|
||||||
|
<link rel="stylesheet" href="./static/reset.css">
|
||||||
|
<link rel="stylesheet" href="./static/main.css">
|
||||||
|
<title>Decentrala</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="header">
|
||||||
|
<h1 class="logo">DECENTRALA</h1>
|
||||||
|
</div>
|
||||||
|
<main>
|
||||||
|
<ul class="nav">
|
||||||
|
<li><a href="/dogadjaji.html"><span class="leadingsign"> > </span>DOGAĐAJI</a></li>
|
||||||
|
<li><a href="/forum.html"><span class="leadingsign"> > </span>FORUM</a></li>
|
||||||
|
<li><a href="/chat.html"><span class="leadingsign"> > </span>CHAT</a></li>
|
||||||
|
<li><a href="/nalog.html"><span class="leadingsign"> > </span>NALOG</a></li>
|
||||||
|
<li><a href="/onama.html"><span class="leadingsign"> > </span>O NAMA</a></li>
|
||||||
|
<li><a href="/kontakt.html"><span class="leadingsign"> > </span>KONTAKT</a></li>
|
||||||
|
</ul>
|
||||||
|
<h2>Nalog</h2>
|
||||||
|
<p> Ako ste napravili nalog na dmz.rs mozete koristi nas xmpp i email server. <p>
|
||||||
|
<p> Za vise o XMPP pogledajte <a href="/chat.html">Chat</a> stranicu. <p>
|
||||||
|
<p> Za primer podesavanja na <a href="https://www.thunderbird.net/">Thundebird</a> mail klijentu mozete pogledati <a href="/static/img/mailsettings.png">sliku</a>. <p>
|
||||||
|
<ul class="nav">
|
||||||
|
<a href="/account/register/"><li>Registruj se</li></a>
|
||||||
|
<a href="/account/unregister/"><li>Izbrisi nalog</li></a>
|
||||||
|
<a href="/account/changepassword/"><li>Promeni lozinku</li></a>
|
||||||
|
</ul>
|
||||||
|
<div class="back">
|
||||||
|
<ul class="nav">
|
||||||
|
<a href="../"><li>Nazad</li></a>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</body>
|
||||||
|
</html>
|
52
onama.html
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
<!doctype html>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel="icon" type="image/x-icon" href="/static/d.png">
|
||||||
|
<link rel="stylesheet" href="./static/reset.css">
|
||||||
|
<link rel="stylesheet" href="./static/main.css">
|
||||||
|
<title>Decentrala</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="container">
|
||||||
|
<div class="header">
|
||||||
|
<h1 class="logo">DECENTRALA</h1>
|
||||||
|
</div>
|
||||||
|
<main>
|
||||||
|
<ul class="nav">
|
||||||
|
<li><a href="/dogadjaji.html"><span class="leadingsign"> > </span>DOGAĐAJI</a></li>
|
||||||
|
<li><a href="/forum.html"><span class="leadingsign"> > </span>FORUM</a></li>
|
||||||
|
<li><a href="/chat.html"><span class="leadingsign"> > </span>CHAT</a></li>
|
||||||
|
<li><a href="/nalog.html"><span class="leadingsign"> > </span>NALOG</a></li>
|
||||||
|
<li><a href="/onama.html"><span class="leadingsign"> > </span>O NAMA</a></li>
|
||||||
|
<li><a href="/kontakt.html"><span class="leadingsign"> > </span>KONTAKT</a></li>
|
||||||
|
</ul>
|
||||||
|
<h2>Sta je Decentrala</h2>
|
||||||
|
<p> Decentrala je zajednica okupljena oko decentralizacije tehnologija i sirenja znanja. <p>
|
||||||
|
<div id="onama">
|
||||||
|
<div class="box">
|
||||||
|
<h3> Znanje </h3>
|
||||||
|
<p> Svako moze drzati predavanje na bilo koju temu, samo se najavite na forumu. <p>
|
||||||
|
<p> Decentrala veruje da svako treba da ima pristup znanju, zbog cega su predavanja uvek besplatna i bez promocija. <p>
|
||||||
|
<p> Ako zelite nesto da podelite sa drugima sto ste naucili, prijavite se da drzite jedno ili vise predavanja! <p>
|
||||||
|
</div>
|
||||||
|
<div class="box">
|
||||||
|
<h3> Akcija </h3>
|
||||||
|
<p> Organizovanje dogadjaja programiranja ili instalacije servisa koje pomazu u decentralizaciji Interneta. <p>
|
||||||
|
<p> Organizujemo hackathone kao posebne dogadjaje na kojima se okupljamo da radimo na zajednickom cilju. <p>
|
||||||
|
</div>
|
||||||
|
<div class="box">
|
||||||
|
<h3> Druzenje </h3>
|
||||||
|
<p> Drustvene dogadjaje u cilju socijalizacije. <p>
|
||||||
|
<p> Ako zelite da se druzite sa ljudima zainteresovanim za ravnopravnost koriscenja tehnologija, slobodnog softvera, privatnost i bezbednost, posetite neku od okupljanja Decentrale. <p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="back">
|
||||||
|
<ul class="nav">
|
||||||
|
<a href="../"><li>Nazad</li></a>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</main>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -1,54 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="stylesheet" href="/styles/style.css">
|
|
||||||
<link rel="stylesheet" href="/styles/account.css">
|
|
||||||
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
|
||||||
<script src="/scripts/main.js" defer></script>
|
|
||||||
<title>Decentrala - Nalog</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<a class="logo" href="/index.html">Decentrala</a>
|
|
||||||
<span>
|
|
||||||
<button id="theme-switcher">turn the lights off</button>
|
|
||||||
<a class="account" href="/pages/account.html">Nalog</a>
|
|
||||||
</span>
|
|
||||||
</header>
|
|
||||||
<div id="main">
|
|
||||||
Ova stranica je trenutno u izradi...
|
|
||||||
<img id="mesh" src="/img/mesh-light.svg">
|
|
||||||
</div>
|
|
||||||
<footer>
|
|
||||||
<div id="sections-menu">
|
|
||||||
<a href="/pages/events.html">Dogadjaji</a>
|
|
||||||
<a href="/pages/projects.html">Projekti</a>
|
|
||||||
<a href="/pages/blog.html">Blog</a>
|
|
||||||
<a href="/pages/services.html">Servisi</a>
|
|
||||||
<a href="/pages/contact.html">Kontakt</a>
|
|
||||||
</div>
|
|
||||||
<button id="sections-button" opened="false"><img src="/img/strelica-closed-light.svg" alt="OpenMenu"></button>
|
|
||||||
<span class="sections">
|
|
||||||
<a href="/pages/events.html">Dogadjaji</a>
|
|
||||||
<a href="/pages/projects.html">Projekti</a>
|
|
||||||
<a href="/pages/blog.html">Blog</a>
|
|
||||||
<a href="/pages/services.html">Servisi</a>
|
|
||||||
<a href="/pages/contact.html">Kontakt</a>
|
|
||||||
</span>
|
|
||||||
<span class="copyleft">
|
|
||||||
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img src="/img/cc-light.svg"
|
|
||||||
alt="CreativeCommons"></a>
|
|
||||||
<a href=""><img src="/img/w-light.svg" alt="Webring"></a>
|
|
||||||
<a href="https://gitea.dmz.rs/eline/decentrala-website-static-new"><img src="/img/git-light.svg"
|
|
||||||
alt="SourceCode"></a>
|
|
||||||
<a href="https://balkan.fedive.rs/@decentrala"><img src="/img/mastodon-light.svg" alt="Mastodon"></a>
|
|
||||||
<span>Decentrala © 2023</span>
|
|
||||||
</span>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
@ -1,54 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="stylesheet" href="/styles/style.css">
|
|
||||||
<link rel="stylesheet" href="/styles/blog.css">
|
|
||||||
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
|
||||||
<script src="/scripts/main.js" defer></script>
|
|
||||||
<title>Decentrala - Blog</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<a class="logo" href="/index.html">Decentrala</a>
|
|
||||||
<span>
|
|
||||||
<button id="theme-switcher">turn the lights off</button>
|
|
||||||
<a class="account" href="/pages/account.html">Nalog</a>
|
|
||||||
</span>
|
|
||||||
</header>
|
|
||||||
<div id="main">
|
|
||||||
Ova stranica je trenutno u izradi...
|
|
||||||
<img id="mesh" src="/img/mesh-light.svg">
|
|
||||||
</div>
|
|
||||||
<footer>
|
|
||||||
<div id="sections-menu">
|
|
||||||
<a href="/pages/events.html">Dogadjaji</a>
|
|
||||||
<a href="/pages/projects.html">Projekti</a>
|
|
||||||
<a href="/pages/blog.html">Blog</a>
|
|
||||||
<a href="/pages/services.html">Servisi</a>
|
|
||||||
<a href="/pages/contact.html">Kontakt</a>
|
|
||||||
</div>
|
|
||||||
<button id="sections-button" opened="false"><img src="/img/strelica-closed-light.svg" alt="OpenMenu"></button>
|
|
||||||
<span class="sections">
|
|
||||||
<a href="/pages/events.html">Dogadjaji</a>
|
|
||||||
<a href="/pages/projects.html">Projekti</a>
|
|
||||||
<a href="/pages/blog.html">Blog</a>
|
|
||||||
<a href="/pages/services.html">Servisi</a>
|
|
||||||
<a href="/pages/contact.html">Kontakt</a>
|
|
||||||
</span>
|
|
||||||
<span class="copyleft">
|
|
||||||
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img src="/img/cc-light.svg"
|
|
||||||
alt="CreativeCommons"></a>
|
|
||||||
<a href=""><img src="/img/w-light.svg" alt="Webring"></a>
|
|
||||||
<a href="https://gitea.dmz.rs/eline/decentrala-website-static-new"><img src="/img/git-light.svg"
|
|
||||||
alt="SourceCode"></a>
|
|
||||||
<a href="https://balkan.fedive.rs/@decentrala"><img src="/img/mastodon-light.svg" alt="Mastodon"></a>
|
|
||||||
<span>Decentrala © 2023</span>
|
|
||||||
</span>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
@ -1,59 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="stylesheet" href="/styles/style.css">
|
|
||||||
<link rel="stylesheet" href="/styles/contact.css">
|
|
||||||
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
|
||||||
<script src="/scripts/main.js" defer></script>
|
|
||||||
<title>Decentrala - Kontakt</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<a class="logo" href="/index.html">Decentrala</a>
|
|
||||||
<span>
|
|
||||||
<button id="theme-switcher">turn the lights off</button>
|
|
||||||
<a class="account" href="/pages/account.html">Nalog</a>
|
|
||||||
</span>
|
|
||||||
</header>
|
|
||||||
<div id="main">
|
|
||||||
<h1>Kontakt</h1>
|
|
||||||
<p>Mozes nam poslati mail na <a href="mailto:dmz@dmz.rs">dmz@dmz.rs</a> ili se mozes pridruziti nasem <a
|
|
||||||
href="https://forum.dmz.rs">Forumu</a>.</p>
|
|
||||||
<p>Takodje smo i na <a href="https://balkan.fedive.rs/@decentrala">Fediversu!</a></p>
|
|
||||||
<p style="position: relative; top: 5rem;">U slucaju da nadjete <em>bug</em> na sajtu, bili bismo jako zahvalni
|
|
||||||
ako bi mogli da nam ga prijavite (npr. putem emaila).</p>
|
|
||||||
<img id="mesh" src="/img/mesh-light.svg">
|
|
||||||
</div>
|
|
||||||
<footer>
|
|
||||||
<div id="sections-menu">
|
|
||||||
<a href="/pages/events.html">Dogadjaji</a>
|
|
||||||
<a href="/pages/projects.html">Projekti</a>
|
|
||||||
<a href="/pages/blog.html">Blog</a>
|
|
||||||
<a href="/pages/services.html">Servisi</a>
|
|
||||||
<a href="/pages/contact.html">Kontakt</a>
|
|
||||||
</div>
|
|
||||||
<button id="sections-button" opened="false"><img src="/img/strelica-closed-light.svg" alt="OpenMenu"></button>
|
|
||||||
<span class="sections">
|
|
||||||
<a href="/pages/events.html">Dogadjaji</a>
|
|
||||||
<a href="/pages/projects.html">Projekti</a>
|
|
||||||
<a href="/pages/blog.html">Blog</a>
|
|
||||||
<a href="/pages/services.html">Servisi</a>
|
|
||||||
<a href="/pages/contact.html">Kontakt</a>
|
|
||||||
</span>
|
|
||||||
<span class="copyleft">
|
|
||||||
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img src="/img/cc-light.svg"
|
|
||||||
alt="CreativeCommons"></a>
|
|
||||||
<a href=""><img src="/img/w-light.svg" alt="Webring"></a>
|
|
||||||
<a href="https://gitea.dmz.rs/eline/decentrala-website-static-new"><img src="/img/git-light.svg"
|
|
||||||
alt="SourceCode"></a>
|
|
||||||
<a href="https://balkan.fedive.rs/@decentrala"><img src="/img/mastodon-light.svg" alt="Mastodon"></a>
|
|
||||||
<span>Decentrala © 2023</span>
|
|
||||||
</span>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
@ -1,102 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="stylesheet" href="/styles/style.css">
|
|
||||||
<link rel="stylesheet" href="/styles/events.css">
|
|
||||||
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
|
||||||
<script src="/scripts/main.js" defer></script>
|
|
||||||
<title>Decentrala - Dogadjaji</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<a class="logo" href="/index.html">Decentrala</a>
|
|
||||||
<span>
|
|
||||||
<button id="theme-switcher">turn the lights off</button>
|
|
||||||
<a class="account" href="/pages/account.html">Nalog</a>
|
|
||||||
</span>
|
|
||||||
</header>
|
|
||||||
<div id="main">
|
|
||||||
<h1>Dogadjaji</h1>
|
|
||||||
<!-- dogadjaji start -->
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<th>Datum</th>
|
|
||||||
<th>Vreme</th>
|
|
||||||
<th>Mesto</th>
|
|
||||||
<th>Tema</th>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td> Petak, 5. Maj 2023. </td>
|
|
||||||
<td> 15:30h </td>
|
|
||||||
<td> <a href="https://www.openstreetmap.org/node/256367543"> Cvijeta Zuzoric </a> </td>
|
|
||||||
<td> ULUS izlozba (Q&A) </td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td> Subota, 6. Maj 2023. </td>
|
|
||||||
<td> 12:00h </td>
|
|
||||||
<td> <a href="https://www.openstreetmap.org/node/256367543"> Cvijeta Zuzoric </a> </td>
|
|
||||||
<td> ULUS izlozba (Q&A) </td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td> Nedelja, 7. Maj 2023. </td>
|
|
||||||
<td> 16:00h </td>
|
|
||||||
<td> <a href="https://www.openstreetmap.org/node/256367543"> Cvijeta Zuzoric </a> </td>
|
|
||||||
<td> ULUS izlozba (diskusija) </td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td> Ponedeljak, 8. Maj 2023. </td>
|
|
||||||
<td> 19:00h </td>
|
|
||||||
<td> <a href="https://www.openstreetmap.org/node/10594728522"> DC Krov </a> </td>
|
|
||||||
<td> Linux install day </td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td> Utorak, 9. Maj 2023. </td>
|
|
||||||
<td> 19:00h </td>
|
|
||||||
<td> <a href="https://www.openstreetmap.org/node/10594728522"> DC Krov </a> </td>
|
|
||||||
<td> Cryptoparty - Uvod u privatnost </td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td> Cetvrtak, 11. Maj 2023. </td>
|
|
||||||
<td> 18:00h </td>
|
|
||||||
<td> <a href="https://www.openstreetmap.org/node/4856556781"> Polyhedra </a> </td>
|
|
||||||
<td> Uvod u racunarske mreze </td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
</table>
|
|
||||||
<!-- dogadjaji end -->
|
|
||||||
<img id="mesh" src="/img/mesh-light.svg">
|
|
||||||
</div>
|
|
||||||
<footer>
|
|
||||||
<div id="sections-menu">
|
|
||||||
<a href="/pages/events.html">Dogadjaji</a>
|
|
||||||
<a href="/pages/projects.html">Projekti</a>
|
|
||||||
<a href="/pages/blog.html">Blog</a>
|
|
||||||
<a href="/pages/services.html">Servisi</a>
|
|
||||||
<a href="/pages/contact.html">Kontakt</a>
|
|
||||||
</div>
|
|
||||||
<button id="sections-button" opened="false"><img src="/img/strelica-closed-light.svg" alt="OpenMenu"></button>
|
|
||||||
<span class="sections">
|
|
||||||
<a href="/pages/events.html">Dogadjaji</a>
|
|
||||||
<a href="/pages/projects.html">Projekti</a>
|
|
||||||
<a href="/pages/blog.html">Blog</a>
|
|
||||||
<a href="/pages/services.html">Servisi</a>
|
|
||||||
<a href="/pages/contact.html">Kontakt</a>
|
|
||||||
</span>
|
|
||||||
<span class="copyleft">
|
|
||||||
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img src="/img/cc-light.svg"
|
|
||||||
alt="CreativeCommons"></a>
|
|
||||||
<a href=""><img src="/img/w-light.svg" alt="Webring"></a>
|
|
||||||
<a href="https://gitea.dmz.rs/eline/decentrala-website-static-new"><img src="/img/git-light.svg"
|
|
||||||
alt="SourceCode"></a>
|
|
||||||
<a href="https://balkan.fedive.rs/@decentrala"><img src="/img/mastodon-light.svg" alt="Mastodon"></a>
|
|
||||||
<span>Decentrala © 2023</span>
|
|
||||||
</span>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
@ -1,54 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="stylesheet" href="/styles/style.css">
|
|
||||||
<link rel="stylesheet" href="/styles/projects.css">
|
|
||||||
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
|
||||||
<script src="/scripts/main.js" defer></script>
|
|
||||||
<title>Decentrala - Projekti</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<a class="logo" href="/index.html">Decentrala</a>
|
|
||||||
<span>
|
|
||||||
<button id="theme-switcher">turn the lights off</button>
|
|
||||||
<a class="account" href="/pages/account.html">Nalog</a>
|
|
||||||
</span>
|
|
||||||
</header>
|
|
||||||
<div id="main">
|
|
||||||
Ova stranica je trenutno u izradi...
|
|
||||||
<img id="mesh" src="/img/mesh-light.svg">
|
|
||||||
</div>
|
|
||||||
<footer>
|
|
||||||
<div id="sections-menu">
|
|
||||||
<a href="/pages/events.html">Dogadjaji</a>
|
|
||||||
<a href="/pages/projects.html">Projekti</a>
|
|
||||||
<a href="/pages/blog.html">Blog</a>
|
|
||||||
<a href="/pages/services.html">Servisi</a>
|
|
||||||
<a href="/pages/contact.html">Kontakt</a>
|
|
||||||
</div>
|
|
||||||
<button id="sections-button" opened="false"><img src="/img/strelica-closed-light.svg" alt="OpenMenu"></button>
|
|
||||||
<span class="sections">
|
|
||||||
<a href="/pages/events.html">Dogadjaji</a>
|
|
||||||
<a href="/pages/projects.html">Projekti</a>
|
|
||||||
<a href="/pages/blog.html">Blog</a>
|
|
||||||
<a href="/pages/services.html">Servisi</a>
|
|
||||||
<a href="/pages/contact.html">Kontakt</a>
|
|
||||||
</span>
|
|
||||||
<span class="copyleft">
|
|
||||||
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img src="/img/cc-light.svg"
|
|
||||||
alt="CreativeCommons"></a>
|
|
||||||
<a href=""><img src="/img/w-light.svg" alt="Webring"></a>
|
|
||||||
<a href="https://gitea.dmz.rs/eline/decentrala-website-static-new"><img src="/img/git-light.svg"
|
|
||||||
alt="SourceCode"></a>
|
|
||||||
<a href="https://balkan.fedive.rs/@decentrala"><img src="/img/mastodon-light.svg" alt="Mastodon"></a>
|
|
||||||
<span>Decentrala © 2023</span>
|
|
||||||
</span>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
@ -1,95 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="stylesheet" href="/styles/style.css">
|
|
||||||
<link rel="stylesheet" href="/styles/services.css">
|
|
||||||
<link rel="shortcut icon" href="/img/favicon.ico" type="image/x-icon">
|
|
||||||
<script src="/scripts/main.js" defer></script>
|
|
||||||
<title>Decentrala - Servisi</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<header>
|
|
||||||
<a class="logo" href="/index.html">Decentrala</a>
|
|
||||||
<span>
|
|
||||||
<button id="theme-switcher">turn the lights off</button>
|
|
||||||
<a class="account" href="/pages/account.html">Nalog</a>
|
|
||||||
</span>
|
|
||||||
</header>
|
|
||||||
<div id="main">
|
|
||||||
<h1>Servisi</h1>
|
|
||||||
<table>
|
|
||||||
<tr>
|
|
||||||
<th>Servis</th>
|
|
||||||
<th>Opis</th>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><a href="">Email</a></td>
|
|
||||||
<td>Email nalog koji mozes koristiti putem naseg <a href="/index.html">mail web interfejsa</a> ili na bilo kom
|
|
||||||
email
|
|
||||||
klijentu generalne namene, na primer <a href="https://www.thunderbird.net/">Thunderbird-u</a>. Bolji od
|
|
||||||
Gmail-a. </td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><a href="https://forum.dmz.rs/">Forum</a></td>
|
|
||||||
<td>Forum na kojem obicno organizujemo nase <a href="/pages/events.html">dogadjaje</a>. Bolji od Reddit-a.
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td>Chat</td>
|
|
||||||
<td>Odrzavamo svoj XMPP server, na kojem mozes napraviti nalog ili ako vec imas nalog mozes nas naci u grupi <a
|
|
||||||
href="decentrala@conference.dmz.rs">decentrala@conference.dmz.rs</a> . Bolji od WhatsApp-a.</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><a href="https://gitea.dmz.rs/">Git</a></td>
|
|
||||||
<td><a href="https://gitea.io/en-us/">Gitea</a> instanca na kojoj drzimo kod kao i ostale resurse za nase <a
|
|
||||||
href="/pages/projects.html">projekte</a>,
|
|
||||||
<a href="/pages/events.html">dogadjaje</a>, kao i neke nase random projekte kao i projekte nasih
|
|
||||||
prijatelja.
|
|
||||||
Ovo moze bit dom tvog sledeceg projekta. Bolji od Github-a.
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td><a href="https://wiki.dmz.rs/">Wiki</a></td>
|
|
||||||
<td><a href="https://js.wiki/">Wiki.js</a> instanca koju koristimo da dokumentujemo nase <a
|
|
||||||
href="/pages/projects.html">projekte</a> kao i
|
|
||||||
ostale <a href="/pages/events.html">dogadjaje</a>. </td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
<p>Ovo su neki od servisa koje trenutno odrzavamo na nasim serverima. Da bi koristio ove servise, <em>mozes</em> se
|
|
||||||
registrujes za svaki servis posebno, ali mozes i da da napravis <a href="/pages/account.html">nalog</a> na nasem
|
|
||||||
serveru i koristis sve servis sa istim nalogom.</p>
|
|
||||||
<img id="mesh" src="/img/mesh-light.svg">
|
|
||||||
</div>
|
|
||||||
<footer>
|
|
||||||
<div id="sections-menu">
|
|
||||||
<a href="/pages/events.html">Dogadjaji</a>
|
|
||||||
<a href="/pages/projects.html">Projekti</a>
|
|
||||||
<a href="/pages/blog.html">Blog</a>
|
|
||||||
<a href="/pages/services.html">Servisi</a>
|
|
||||||
<a href="/pages/contact.html">Kontakt</a>
|
|
||||||
</div>
|
|
||||||
<button id="sections-button" opened="false"><img src="/img/strelica-closed-light.svg" alt="OpenMenu"></button>
|
|
||||||
<span class="sections">
|
|
||||||
<a href="/pages/events.html">Dogadjaji</a>
|
|
||||||
<a href="/pages/projects.html">Projekti</a>
|
|
||||||
<a href="/pages/blog.html">Blog</a>
|
|
||||||
<a href="/pages/services.html">Servisi</a>
|
|
||||||
<a href="/pages/contact.html">Kontakt</a>
|
|
||||||
</span>
|
|
||||||
<span class="copyleft">
|
|
||||||
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/"><img src="/img/cc-light.svg"
|
|
||||||
alt="CreativeCommons"></a>
|
|
||||||
<a href=""><img src="/img/w-light.svg" alt="Webring"></a>
|
|
||||||
<a href="https://gitea.dmz.rs/eline/decentrala-website-static-new"><img src="/img/git-light.svg"
|
|
||||||
alt="SourceCode"></a>
|
|
||||||
<a href="https://balkan.fedive.rs/@decentrala"><img src="/img/mastodon-light.svg" alt="Mastodon"></a>
|
|
||||||
<span>Decentrala © 2023</span>
|
|
||||||
</span>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
130
prep.py
@ -1,130 +0,0 @@
|
|||||||
#! /usr/bin/env python
|
|
||||||
|
|
||||||
from datetime import datetime
|
|
||||||
from functools import cmp_to_key
|
|
||||||
|
|
||||||
days = [
|
|
||||||
"Ponedeljak",
|
|
||||||
"Utorak",
|
|
||||||
"Sreda",
|
|
||||||
"Cetvrtak",
|
|
||||||
"Petak",
|
|
||||||
"Subota",
|
|
||||||
"Nedelja",
|
|
||||||
]
|
|
||||||
|
|
||||||
months = [
|
|
||||||
"Januar",
|
|
||||||
"Februar",
|
|
||||||
"Mart",
|
|
||||||
"April",
|
|
||||||
"Maj",
|
|
||||||
"Jun",
|
|
||||||
"Jul",
|
|
||||||
"Avgust",
|
|
||||||
"Septembar",
|
|
||||||
"Oktobar",
|
|
||||||
"Novembar",
|
|
||||||
"Decembar",
|
|
||||||
]
|
|
||||||
|
|
||||||
today = datetime.today().date()
|
|
||||||
|
|
||||||
def parse_date(date):
|
|
||||||
return datetime.strptime(date,"%d-%m-%Y").date()
|
|
||||||
|
|
||||||
def compare_events(one, two):
|
|
||||||
one = parse_date(one.split(", ")[0])
|
|
||||||
two = parse_date(two.split(", ")[0])
|
|
||||||
if one>two:
|
|
||||||
return 1
|
|
||||||
elif one==two:
|
|
||||||
return 0
|
|
||||||
else:
|
|
||||||
return -1
|
|
||||||
|
|
||||||
def is_past_event(event):
|
|
||||||
return event < today
|
|
||||||
|
|
||||||
def load_events():
|
|
||||||
events = []
|
|
||||||
with open("dogadjaji.txt", "rt") as file:
|
|
||||||
file.readline()
|
|
||||||
for event in file.readlines():
|
|
||||||
event = event.strip()
|
|
||||||
if event != "":
|
|
||||||
events.append(event)
|
|
||||||
return events
|
|
||||||
|
|
||||||
def write_events(events):
|
|
||||||
with open("dogadjaji.txt", "wt") as file:
|
|
||||||
file.write("datum, vreme, lokacija, tema\n")
|
|
||||||
for event in events:
|
|
||||||
file.write(event+"\n")
|
|
||||||
|
|
||||||
def sort_events(events):
|
|
||||||
return sorted(events, key = cmp_to_key(compare_events))
|
|
||||||
|
|
||||||
|
|
||||||
events = load_events()
|
|
||||||
events = sort_events(events)
|
|
||||||
write_events(events)
|
|
||||||
|
|
||||||
start = "<table>\n<tr>\n<th>Datum</th>\n<th>Vreme</th>\n<th>Mesto</th>\n<th>Tema</th>\n</tr>\n"
|
|
||||||
end="\n</table>"
|
|
||||||
future_events = []
|
|
||||||
|
|
||||||
for event in events:
|
|
||||||
date, time, location, title = event.split(", ")
|
|
||||||
date = parse_date(date)
|
|
||||||
if is_past_event(date):
|
|
||||||
continue
|
|
||||||
date = days[date.weekday()]+", "+str(date.day)+". "+months[date.month-1]+" "+str(date.year)+"."
|
|
||||||
time = time+"h"
|
|
||||||
future_event = []
|
|
||||||
future_event.append("<td> "+date+" </td>")
|
|
||||||
future_event.append("<td> "+time+" </td>")
|
|
||||||
if "https://" in location:
|
|
||||||
place,link = location.split("https://")
|
|
||||||
future_event.append("<td> <a href=\"https://"+link+"\""+"> "+place.strip()+" </a> </td>")
|
|
||||||
else:
|
|
||||||
future_event.append("<td> "+location.strip()+" </td>")
|
|
||||||
future_event.append("<td> "+title+" </td>")
|
|
||||||
future_events.append("<tr>\n"+"\n".join(future_event)+"\n</tr>")
|
|
||||||
|
|
||||||
events = []
|
|
||||||
events.append(start)
|
|
||||||
|
|
||||||
for event in future_events:
|
|
||||||
events.append(event)
|
|
||||||
|
|
||||||
events.append(end)
|
|
||||||
|
|
||||||
with open("pages/dogadjaji.html","rt") as file:
|
|
||||||
html = file.readlines()
|
|
||||||
|
|
||||||
new_html = []
|
|
||||||
|
|
||||||
i=0
|
|
||||||
while i<len(html):
|
|
||||||
original_line = html[i]
|
|
||||||
line = original_line.strip()
|
|
||||||
if line == '<!-- dogadjaji start -->':
|
|
||||||
new_html.append(original_line)
|
|
||||||
for event in events:
|
|
||||||
new_html.append(event+"\n")
|
|
||||||
new_html.append(" <!-- dogadjaji end -->\n")
|
|
||||||
while line!='<!-- dogadjaji end -->':
|
|
||||||
i+=1
|
|
||||||
line=html[i].strip()
|
|
||||||
i+=1
|
|
||||||
while i<len(html):
|
|
||||||
new_html.append(html[i])
|
|
||||||
i+=1
|
|
||||||
else:
|
|
||||||
new_html.append(original_line)
|
|
||||||
i+=1
|
|
||||||
|
|
||||||
|
|
||||||
with open("pages/dogadjaji.html","wt") as file:
|
|
||||||
file.writelines(new_html)
|
|
@ -1,95 +0,0 @@
|
|||||||
const theme_switcher = document.getElementById("theme-switcher");
|
|
||||||
const imgs = document.getElementsByTagName("img");
|
|
||||||
const sections_button = document.getElementById("sections-button");
|
|
||||||
const sections_menu = document.getElementById("sections-menu");
|
|
||||||
const main = document.getElementById("main");
|
|
||||||
|
|
||||||
let theme = window.localStorage.getItem("theme");
|
|
||||||
|
|
||||||
if (theme !== null) {
|
|
||||||
if (theme === "light") {
|
|
||||||
changeToLightTheme();
|
|
||||||
} else {
|
|
||||||
changeToDarkTheme();
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
if (
|
|
||||||
window.matchMedia &&
|
|
||||||
window.matchMedia("(prefers-color-scheme: dark)").matches
|
|
||||||
) {
|
|
||||||
changeToDarkTheme();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
theme_switcher.addEventListener("click", () => {
|
|
||||||
if (theme_switcher.textContent.indexOf("off") !== -1) {
|
|
||||||
changeToDarkTheme();
|
|
||||||
} else {
|
|
||||||
changeToLightTheme();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
function changeToDarkTheme() {
|
|
||||||
theme_switcher.textContent = "turn the light on";
|
|
||||||
document.documentElement.style.setProperty("--border", "var(--dark-border)");
|
|
||||||
document.documentElement.style.setProperty("--text", "var(--dark-text)");
|
|
||||||
document.documentElement.style.setProperty("--bg", "var(--dark-bg)");
|
|
||||||
window.localStorage.setItem("theme", "dark");
|
|
||||||
for (let i = 0; i < imgs.length; i += 1) {
|
|
||||||
imgs[i].src = imgs[i].src.replace("-light", "-dark");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function changeToLightTheme() {
|
|
||||||
theme_switcher.textContent = "turn the light off";
|
|
||||||
document.documentElement.style.setProperty("--border", "var(--light-border)");
|
|
||||||
document.documentElement.style.setProperty("--text", "var(--light-text)");
|
|
||||||
document.documentElement.style.setProperty("--bg", "var(--light-bg)");
|
|
||||||
window.localStorage.setItem("theme", "light");
|
|
||||||
for (let i = 0; i < imgs.length; i += 1) {
|
|
||||||
imgs[i].src = imgs[i].src.replace("-dark", "-light");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function closeMenu() {
|
|
||||||
sections_button.setAttribute("opened", "false");
|
|
||||||
sections_button.children[0].src = sections_button.children[0].src.replace(
|
|
||||||
"opened",
|
|
||||||
"closed",
|
|
||||||
);
|
|
||||||
sections_menu.style.display = "none";
|
|
||||||
}
|
|
||||||
|
|
||||||
function openMenu() {
|
|
||||||
sections_button.setAttribute("opened", "true");
|
|
||||||
sections_button.children[0].src = sections_button.children[0].src.replace(
|
|
||||||
"closed",
|
|
||||||
"opened",
|
|
||||||
);
|
|
||||||
sections_menu.style.display = "flex";
|
|
||||||
sections_menu.style.flexDirection = "column";
|
|
||||||
}
|
|
||||||
|
|
||||||
sections_button.addEventListener("click", () => {
|
|
||||||
if (sections_button.getAttribute("opened") === "false") {
|
|
||||||
openMenu();
|
|
||||||
} else {
|
|
||||||
closeMenu();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
window.addEventListener("resize", () => {
|
|
||||||
if (sections_button.getAttribute("opened") === "true") {
|
|
||||||
closeMenu();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
main.addEventListener("click", (event) => {
|
|
||||||
if (sections_button.getAttribute("opened") === "true") {
|
|
||||||
closeMenu();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
DEBUG;
|
|
||||||
console.log(window.innerWidth);
|
|
||||||
console.log(window.innerHeight);
|
|
BIN
static/d.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
static/fonts/facade/Facade-Est.otf
Normal file
BIN
static/fonts/facade/Facade-Est.woff
Normal file
BIN
static/fonts/facade/Facade-Ouest.otf
Normal file
BIN
static/fonts/facade/Facade-Ouest.woff
Normal file
BIN
static/fonts/facade/Facade-Sud-Ouest.otf
Normal file
BIN
static/fonts/facade/Facade-Sud-Ouest.woff
Normal file
BIN
static/fonts/facade/Facade-Sud.otf
Normal file
BIN
static/fonts/facade/Facade-Sud.woff
Normal file
BIN
static/fonts/facade/FacadeGX.ttf
Normal file
1
static/fonts/jetbrains-mono/.uuid
Normal file
@ -0,0 +1 @@
|
|||||||
|
2f069ecf-a1fc-4aaf-924c-de17efcde7a8
|
BIN
static/fonts/jetbrains-mono/JetBrainsMono-Bold.ttf
Normal file
BIN
static/fonts/jetbrains-mono/JetBrainsMono-BoldItalic.ttf
Normal file
BIN
static/fonts/jetbrains-mono/JetBrainsMono-ExtraBold.ttf
Normal file
BIN
static/fonts/jetbrains-mono/JetBrainsMono-ExtraBoldItalic.ttf
Normal file
BIN
static/fonts/jetbrains-mono/JetBrainsMono-ExtraLight.ttf
Normal file
BIN
static/fonts/jetbrains-mono/JetBrainsMono-ExtraLightItalic.ttf
Normal file
BIN
static/fonts/jetbrains-mono/JetBrainsMono-Light.ttf
Normal file
BIN
static/fonts/jetbrains-mono/JetBrainsMono-LightItalic.ttf
Normal file
BIN
static/fonts/jetbrains-mono/JetBrainsMono-Medium.ttf
Normal file
BIN
static/fonts/jetbrains-mono/JetBrainsMono-MediumItalic.ttf
Normal file
BIN
static/fonts/jetbrains-mono/JetBrainsMono-Regular.ttf
Normal file
BIN
static/fonts/jetbrains-mono/JetBrainsMono-Thin.ttf
Normal file
BIN
static/fonts/jetbrains-mono/JetBrainsMono-ThinItalic.ttf
Normal file
BIN
static/fonts/sligoil/Sligoil-Micro.otf
Normal file
BIN
static/fonts/sligoil/Sligoil-Micro.woff
Normal file
BIN
static/fonts/sligoil/Sligoil-Micro.woff2
Normal file
BIN
static/img/mailsettings.png
Normal file
After Width: | Height: | Size: 41 KiB |
131
static/main.css
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
@font-face {
|
||||||
|
font-family: Facade;
|
||||||
|
src: url(fonts/facade/Facade-Sud.woff);
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: sligoil;
|
||||||
|
src: url(fonts/sligoil/Sligoil-Micro.woff);
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: jetbrains-mono;
|
||||||
|
src: url(fonts/jetbrains-mono/JetBrainsMono-Regular.ttf);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: rgb(0, 0, 0);
|
||||||
|
font-family: jetbrains-mono;
|
||||||
|
font-size: 3vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
margin: 2rem auto;
|
||||||
|
margin-left: 2vw;
|
||||||
|
margin-right: 1vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 0 auto;
|
||||||
|
font-family: facade;
|
||||||
|
font-size: 20vw;
|
||||||
|
color: #81fc54;
|
||||||
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
color: #81fc54;
|
||||||
|
}
|
||||||
|
|
||||||
|
main h2 {
|
||||||
|
font-family: sligoil;
|
||||||
|
font-size: 5vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
main h3 {
|
||||||
|
font-family: sligoil;
|
||||||
|
font-size: 4vw;
|
||||||
|
margin: 2rem auto;
|
||||||
|
margin-left: 2vw;
|
||||||
|
margin-right: 1vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
#about {
|
||||||
|
margin-bottom: 2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
font-family: sligoil;
|
||||||
|
text-decoration: underline;
|
||||||
|
color: #81fc54;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.back ul li {
|
||||||
|
text-align: right;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.back ul li:before {
|
||||||
|
content: "<";
|
||||||
|
padding-right: 5px;
|
||||||
|
color: #81fc54;
|
||||||
|
}
|
||||||
|
|
||||||
|
#onama p {
|
||||||
|
font-size: 2vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
|
float: left;
|
||||||
|
width: 25vw;
|
||||||
|
text-align: center;
|
||||||
|
padding: 1vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
marquee {
|
||||||
|
border-bottom: 0.1vw solid;
|
||||||
|
border-color: #81fc54;
|
||||||
|
}
|
||||||
|
|
||||||
|
marquee a {
|
||||||
|
color: #a19cff;
|
||||||
|
text-decoration: none;
|
||||||
|
font-family: sligoil;
|
||||||
|
font-size: 2vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
border-bottom: 0.1vw solid;
|
||||||
|
border-top: 0.1vw solid;
|
||||||
|
border-color: #81fc54;
|
||||||
|
padding: 0.5vw 5vw ;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav a {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #a19cff;
|
||||||
|
margin-right: 5vw;
|
||||||
|
font-size: 2vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav a:hover > .leadingsign {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leadingsign {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.leadingsign:hover {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
368
static/reset.css
Normal file
@ -0,0 +1,368 @@
|
|||||||
|
/* http://meyerweb.com/eric/tools/css/reset/
|
||||||
|
* v2.0-modified | 20110126
|
||||||
|
* License: none (public domain)
|
||||||
|
* */
|
||||||
|
|
||||||
|
html, body, div, span, applet, object, iframe,
|
||||||
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||||
|
a, abbr, acronym, address, big, cite, code,
|
||||||
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||||
|
small, strike, strong, sub, sup, tt, var,
|
||||||
|
b, u, i, center,
|
||||||
|
dl, dt, dd, ol, ul, li,
|
||||||
|
fieldset, form, label, legend,
|
||||||
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||||
|
article, aside, canvas, details, embed,
|
||||||
|
figure, figcaption, footer, header, hgroup,
|
||||||
|
menu, nav, output, ruby, section, summary,
|
||||||
|
time, mark, audio, video {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
border: 0;
|
||||||
|
font-size: 100%;
|
||||||
|
font: inherit;
|
||||||
|
vertical-align: baseline;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* make sure to set some focus styles for accessibility */
|
||||||
|
:focus {
|
||||||
|
outline: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* HTML5 display-role reset for older browsers */
|
||||||
|
article, aside, details, figcaption, figure,
|
||||||
|
footer, header, hgroup, menu, nav, section {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
line-height: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
ol, ul {
|
||||||
|
list-style: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote, q {
|
||||||
|
quotes: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote:before, blockquote:after,
|
||||||
|
q:before, q:after {
|
||||||
|
content: '';
|
||||||
|
content: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=search]::-webkit-search-cancel-button,
|
||||||
|
input[type=search]::-webkit-search-decoration,
|
||||||
|
input[type=search]::-webkit-search-results-button,
|
||||||
|
input[type=search]::-webkit-search-results-decoration {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
input[type=search] {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
-moz-appearance: none;
|
||||||
|
-webkit-box-sizing: content-box;
|
||||||
|
-moz-box-sizing: content-box;
|
||||||
|
box-sizing: content-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
overflow: auto;
|
||||||
|
vertical-align: top;
|
||||||
|
resize: vertical;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
|
||||||
|
* */
|
||||||
|
|
||||||
|
audio,
|
||||||
|
canvas,
|
||||||
|
video {
|
||||||
|
display: inline-block;
|
||||||
|
*display: inline;
|
||||||
|
*zoom: 1;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * Prevent modern browsers from displaying `audio` without controls.
|
||||||
|
* * Remove excess height in iOS 5 devices.
|
||||||
|
* */
|
||||||
|
|
||||||
|
audio:not([controls]) {
|
||||||
|
display: none;
|
||||||
|
height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
|
||||||
|
* * Known issue: no IE 6 support.
|
||||||
|
* */
|
||||||
|
|
||||||
|
[hidden] {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
|
||||||
|
* * `em` units.
|
||||||
|
* * 2. Prevent iOS text size adjust after orientation change, without disabling
|
||||||
|
* * user zoom.
|
||||||
|
* */
|
||||||
|
|
||||||
|
html {
|
||||||
|
font-size: 100%; /* 1 */
|
||||||
|
-webkit-text-size-adjust: 100%; /* 2 */
|
||||||
|
-ms-text-size-adjust: 100%; /* 2 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * Address `outline` inconsistency between Chrome and other browsers.
|
||||||
|
* */
|
||||||
|
|
||||||
|
a:focus {
|
||||||
|
outline: thin dotted;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * Improve readability when focused and also mouse hovered in all browsers.
|
||||||
|
* */
|
||||||
|
|
||||||
|
a:active,
|
||||||
|
a:hover {
|
||||||
|
outline: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
|
||||||
|
* * 2. Improve image quality when scaled in IE 7.
|
||||||
|
* */
|
||||||
|
|
||||||
|
img {
|
||||||
|
border: 0; /* 1 */
|
||||||
|
-ms-interpolation-mode: bicubic; /* 2 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
|
||||||
|
* */
|
||||||
|
|
||||||
|
figure {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * Correct margin displayed oddly in IE 6/7.
|
||||||
|
* */
|
||||||
|
|
||||||
|
form {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * Define consistent border, margin, and padding.
|
||||||
|
* */
|
||||||
|
|
||||||
|
fieldset {
|
||||||
|
border: 1px solid #c0c0c0;
|
||||||
|
margin: 0 2px;
|
||||||
|
padding: 0.35em 0.625em 0.75em;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * 1. Correct color not being inherited in IE 6/7/8/9.
|
||||||
|
* * 2. Correct text not wrapping in Firefox 3.
|
||||||
|
* * 3. Correct alignment displayed oddly in IE 6/7.
|
||||||
|
* */
|
||||||
|
|
||||||
|
legend {
|
||||||
|
border: 0; /* 1 */
|
||||||
|
padding: 0;
|
||||||
|
white-space: normal; /* 2 */
|
||||||
|
*margin-left: -7px; /* 3 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * 1. Correct font size not being inherited in all browsers.
|
||||||
|
* * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
|
||||||
|
* * and Chrome.
|
||||||
|
* * 3. Improve appearance and consistency in all browsers.
|
||||||
|
* */
|
||||||
|
|
||||||
|
button,
|
||||||
|
input,
|
||||||
|
select,
|
||||||
|
textarea {
|
||||||
|
font-size: 100%; /* 1 */
|
||||||
|
margin: 0; /* 2 */
|
||||||
|
vertical-align: baseline; /* 3 */
|
||||||
|
*vertical-align: middle; /* 3 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * Address Firefox 3+ setting `line-height` on `input` using `!important` in
|
||||||
|
* * the UA stylesheet.
|
||||||
|
* */
|
||||||
|
|
||||||
|
button,
|
||||||
|
input {
|
||||||
|
line-height: normal;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * Address inconsistent `text-transform` inheritance for `button` and `select`.
|
||||||
|
* * All other form control elements do not inherit `text-transform` values.
|
||||||
|
* * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
|
||||||
|
* * Correct `select` style inheritance in Firefox 4+ and Opera.
|
||||||
|
* */
|
||||||
|
|
||||||
|
button,
|
||||||
|
select {
|
||||||
|
text-transform: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
|
||||||
|
* * and `video` controls.
|
||||||
|
* * 2. Correct inability to style clickable `input` types in iOS.
|
||||||
|
* * 3. Improve usability and consistency of cursor style between image-type
|
||||||
|
* * `input` and others.
|
||||||
|
* * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
|
||||||
|
* * Known issue: inner spacing remains in IE 6.
|
||||||
|
* */
|
||||||
|
|
||||||
|
button,
|
||||||
|
html input[type="button"], /* 1 */
|
||||||
|
input[type="reset"],
|
||||||
|
input[type="submit"] {
|
||||||
|
-webkit-appearance: button; /* 2 */
|
||||||
|
cursor: pointer; /* 3 */
|
||||||
|
*overflow: visible; /* 4 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * Re-set default cursor for disabled elements.
|
||||||
|
* */
|
||||||
|
|
||||||
|
button[disabled],
|
||||||
|
html input[disabled] {
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * 1. Address box sizing set to content-box in IE 8/9.
|
||||||
|
* * 2. Remove excess padding in IE 8/9.
|
||||||
|
* * 3. Remove excess padding in IE 7.
|
||||||
|
* * Known issue: excess padding remains in IE 6.
|
||||||
|
* */
|
||||||
|
|
||||||
|
input[type="checkbox"],
|
||||||
|
input[type="radio"] {
|
||||||
|
box-sizing: border-box; /* 1 */
|
||||||
|
padding: 0; /* 2 */
|
||||||
|
*height: 13px; /* 3 */
|
||||||
|
*width: 13px; /* 3 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
|
||||||
|
* * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
|
||||||
|
* * (include `-moz` to future-proof).
|
||||||
|
* */
|
||||||
|
|
||||||
|
input[type="search"] {
|
||||||
|
-webkit-appearance: textfield; /* 1 */
|
||||||
|
-moz-box-sizing: content-box;
|
||||||
|
-webkit-box-sizing: content-box; /* 2 */
|
||||||
|
box-sizing: content-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * Remove inner padding and search cancel button in Safari 5 and Chrome
|
||||||
|
* * on OS X.
|
||||||
|
* */
|
||||||
|
|
||||||
|
input[type="search"]::-webkit-search-cancel-button,
|
||||||
|
input[type="search"]::-webkit-search-decoration {
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * Remove inner padding and border in Firefox 3+.
|
||||||
|
* */
|
||||||
|
|
||||||
|
button::-moz-focus-inner,
|
||||||
|
input::-moz-focus-inner {
|
||||||
|
border: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * 1. Remove default vertical scrollbar in IE 6/7/8/9.
|
||||||
|
* * 2. Improve readability and alignment in all browsers.
|
||||||
|
* */
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
overflow: auto; /* 1 */
|
||||||
|
vertical-align: top; /* 2 */
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* * Remove most spacing between table cells.
|
||||||
|
* */
|
||||||
|
|
||||||
|
table {
|
||||||
|
border-collapse: collapse;
|
||||||
|
border-spacing: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
html,
|
||||||
|
button,
|
||||||
|
input,
|
||||||
|
select,
|
||||||
|
textarea {
|
||||||
|
color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
::-moz-selection {
|
||||||
|
background: #b3d4fc;
|
||||||
|
text-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
::selection {
|
||||||
|
background: #b3d4fc;
|
||||||
|
text-shadow: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
fieldset {
|
||||||
|
border: 0;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
resize: vertical;
|
||||||
|
}
|
||||||
|
|
||||||
|
.chromeframe {
|
||||||
|
margin: 0.2em 0;
|
||||||
|
background: #ccc;
|
||||||
|
color: #000;
|
||||||
|
padding: 0.2em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
@ -1,4 +0,0 @@
|
|||||||
h1 {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
@ -1,3 +0,0 @@
|
|||||||
#mesh {
|
|
||||||
display: none;
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
h1 {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
@ -1,30 +0,0 @@
|
|||||||
table {
|
|
||||||
table-layout: fixed;
|
|
||||||
border-spacing: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
th,
|
|
||||||
td {
|
|
||||||
padding: 0 1rem 0 1rem;
|
|
||||||
text-align: left;
|
|
||||||
border-left: 2px solid var(--border);
|
|
||||||
}
|
|
||||||
|
|
||||||
th {
|
|
||||||
padding: 1rem 1rem 0 1rem;
|
|
||||||
border-bottom: 2px solid var(--border);
|
|
||||||
}
|
|
||||||
|
|
||||||
td:nth-child(odd) {
|
|
||||||
white-space: nowrap;
|
|
||||||
}
|
|
||||||
|
|
||||||
td {
|
|
||||||
padding: 0 1rem 1rem 1rem;
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
@ -1,16 +0,0 @@
|
|||||||
h1 {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
||||||
|
|
||||||
dl {
|
|
||||||
padding: 1rem 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
dt {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
dd {
|
|
||||||
margin: 0 0 1rem 1rem;
|
|
||||||
}
|
|
@ -1,27 +0,0 @@
|
|||||||
table {
|
|
||||||
table-layout: fixed;
|
|
||||||
border-spacing: 0;
|
|
||||||
margin-bottom: 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
th,
|
|
||||||
td {
|
|
||||||
padding: 0 1rem 0 1rem;
|
|
||||||
text-align: left;
|
|
||||||
border-left: 2px solid var(--border);
|
|
||||||
}
|
|
||||||
|
|
||||||
th {
|
|
||||||
padding: 1rem 1rem 0 1rem;
|
|
||||||
border-bottom: 2px solid var(--border);
|
|
||||||
}
|
|
||||||
|
|
||||||
td {
|
|
||||||
padding: 0 1rem 1rem 1rem;
|
|
||||||
vertical-align: top;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
margin-bottom: 2rem;
|
|
||||||
font-weight: normal;
|
|
||||||
}
|
|
168
styles/style.css
@ -1,168 +0,0 @@
|
|||||||
:root {
|
|
||||||
--light-text: #181715;
|
|
||||||
--light-bg: #ffffff;
|
|
||||||
--light-border: #181715;
|
|
||||||
--dark-text: #ffffff;
|
|
||||||
--dark-bg: #181715;
|
|
||||||
--dark-border: #ffffff;
|
|
||||||
|
|
||||||
--hightlight: #72dec2;
|
|
||||||
|
|
||||||
--border: var(--light-border);
|
|
||||||
--text: var(--light-text);
|
|
||||||
--bg: var(--light-bg);
|
|
||||||
}
|
|
||||||
|
|
||||||
@font-face {
|
|
||||||
font-family: "Iosevka";
|
|
||||||
src: url('/font/iosevka-regular.woff') format('woff');
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
html,
|
|
||||||
body {
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
color: var(--text);
|
|
||||||
background: var(--bg);
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: 1fr;
|
|
||||||
grid-template-rows: 5rem 1fr 5rem;
|
|
||||||
grid-column-gap: 0px;
|
|
||||||
grid-row-gap: 0px;
|
|
||||||
font-family: 'Iosevka';
|
|
||||||
}
|
|
||||||
|
|
||||||
header,
|
|
||||||
footer {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
align-items: center;
|
|
||||||
padding: 0 3rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
header {
|
|
||||||
grid-area: 1 / 1 / 2 / 2;
|
|
||||||
border-bottom: 2px solid var(--border);
|
|
||||||
}
|
|
||||||
|
|
||||||
footer {
|
|
||||||
grid-area: 3 / 1 / 4 / 2;
|
|
||||||
border-top: 2px solid var(--border);
|
|
||||||
}
|
|
||||||
|
|
||||||
#main {
|
|
||||||
grid-area: 2 / 1 / 3 / 2;
|
|
||||||
padding: 3rem 3rem 3rem 3rem;
|
|
||||||
font-size: 1.3rem;
|
|
||||||
line-height: 2rem;
|
|
||||||
max-width: 120ch;
|
|
||||||
overflow: auto;
|
|
||||||
}
|
|
||||||
|
|
||||||
a,
|
|
||||||
a:visited {
|
|
||||||
text-decoration: none;
|
|
||||||
color: var(--text);
|
|
||||||
}
|
|
||||||
|
|
||||||
#main a {
|
|
||||||
position: relative;
|
|
||||||
top: 0.2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
a:hover,
|
|
||||||
a:focus {
|
|
||||||
background-color: var(--hightlight);
|
|
||||||
text-decoration: line-through var(--text);
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
font-size: 3rem;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
.account,
|
|
||||||
.sections,
|
|
||||||
#sections-menu {
|
|
||||||
font-size: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
#mesh {
|
|
||||||
position: absolute;
|
|
||||||
bottom: 5rem;
|
|
||||||
right: 0;
|
|
||||||
user-select: none;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-height: 860px),
|
|
||||||
screen and (max-width: 1500px) {
|
|
||||||
#mesh {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media screen and (max-width: 1160px) {
|
|
||||||
.sections {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sections-button {
|
|
||||||
display: block !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#sections-button {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sections-menu a {
|
|
||||||
margin-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
#sections-menu {
|
|
||||||
border: 2px solid var(--border);
|
|
||||||
background-color: var(--bg);
|
|
||||||
position: absolute;
|
|
||||||
bottom: calc(5rem - 2px);
|
|
||||||
left: 0;
|
|
||||||
align-items: center;
|
|
||||||
padding: 2rem 3rem;
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
.copyleft a,
|
|
||||||
.sections a {
|
|
||||||
margin: 0 1rem 0 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.copyleft a:hover,
|
|
||||||
.copyleft a:focus {
|
|
||||||
background-color: var(--bg);
|
|
||||||
}
|
|
||||||
|
|
||||||
.copyleft {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
button {
|
|
||||||
font-style: italic;
|
|
||||||
font-weight: lighter;
|
|
||||||
border: none;
|
|
||||||
background: var(--bg);
|
|
||||||
color: var(--text);
|
|
||||||
margin: 0 2rem 0 0;
|
|
||||||
}
|
|