update diagram

This commit is contained in:
Kiara Grouwstra 2022-07-31 15:46:32 +02:00
parent 10b6bb5eba
commit 878029e579
49 changed files with 1241 additions and 19 deletions

View File

@ -26,10 +26,6 @@ make install
make diagram
```
## todo
- ditch `diagrams` for plain pygraphviz to hopefully annotate edges with SVG tooltips?
## diagram
![landscape](./bij1_it_landscape.png)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

View File

@ -9,14 +9,16 @@ from diagrams.elastic.elasticsearch import Beats, Elasticsearch, Kibana, Logstas
wordpress = "./resources/wordpress.png"
wings = "./resources/wings.png"
trello = "./resources/trello.jpg"
trello = "./resources/trello.png"
gitlab_logo = "./resources/gitlab.png"
github_logo = "./resources/github.png"
github_logo = "./resources/github.svg"
mailchimp = "./resources/mailchimp.png"
nginx = "./resources/nginx.png"
www = "./resources/www.png"
instagram = "./resources/instagram.jpg"
tiktok_logo = "./resources/tiktok.jpg"
instagram = "./resources/instagram.png"
tiktok_logo = "./resources/tiktok.svg"
youtube_logo = "./resources/youtube.png"
linkedin_logo = "./resources/linkedin.svg"
heroku = "./resources/heroku.png"
transip_logo = "./resources/transip.png"
greenhost_logo = "./resources/greenhost.png"
@ -30,11 +32,16 @@ with Diagram("BIJ1 IT landscape"):
fb = Facebook("facebook.com/www.bij1.org")
tw = Twitter("twitter.com/PolitiekBIJ1")
insta = Custom("instagram.com/politiek_bij1", instagram)
yt = Custom("youtube.com/c/BIJ1Politiek", youtube_logo)
vimeo = Custom("vimeo.com/bij1", "./resources/vimeo.svg")
linkedin = Custom("linkedin.com/company/bij1", linkedin_logo)
with Cluster("BIJ1 local socials"):
local_fb = Facebook("Local FBs")
local_tw = Twitter("Local Twitters")
local_insta = Custom("Local Instagrams", instagram)
local_yt = Custom("Local Youtubes", youtube_logo)
local_li = Custom("Local LinkedIns", linkedin_logo)
with Cluster("Radicaal socials"):
fb_radicaal = Facebook("facebook.com/pjo.radicaal")
@ -48,7 +55,7 @@ with Diagram("BIJ1 IT landscape"):
transip_intl = Custom("TransIP Clemencia Redmond", transip_logo)
greenhost = Custom("GreenHost BIJ1", greenhost_logo)
greenhost_pjo = Custom("GreenHost Radicaal", greenhost_logo)
hetzner = Custom("Hetzner", "./resources/hetzner.jpg")
hetzner = Custom("Hetzner", "./resources/hetzner.png")
wpengine = Custom("WpEngine", "./resources/wpengine.jpg")
email = Custom("transip.email (BIJ1)", email_logo)
email_intl = Custom("transip.email (Audre Lorde)", email_logo)
@ -118,14 +125,14 @@ with Diagram("BIJ1 IT landscape"):
greenhost >> kibana
with Cluster("Meetings"):
zoom = Custom("Zoom", "./resources/zoom.jpg")
jitsi = Custom("meet.bij1.org", "./resources/jitsi.jpg")
bbb = Custom("bigbluebutton.bij1.org", "./resources/bbb.png")
zoom = Custom("Zoom", "./resources/zoom.svg")
jitsi = Custom("meet.bij1.org", "./resources/jitsi.svg")
bbb = Custom("bigbluebutton.bij1.org", "./resources/bigbluebutton.svg")
bbb >> hetzner
ingang = Rails("vergadering.bij1.org/ingang/")
flowmailer = Custom("FlowMailer", "./resources/flowmailer.svg")
helios = Custom("stemmen.bij1.org", "./resources/helios.jpg")
coturn = Custom("turn.bij1.org", "./resources/webrtc.jpg")
helios = Custom("stemmen.bij1.org", "./resources/helios.png")
coturn = Custom("turn.bij1.org", "./resources/webrtc.png")
coturn >> bbb >> ingang >> helios
ingang >> flowmailer
@ -141,14 +148,16 @@ with Diagram("BIJ1 IT landscape"):
doemee_wp = Custom("doemee.bij1.org", wordpress)
doemee_wp >> wpengine
doemee_wp >> trello_vrijwilligers
radicaal = Custom("radicaal.bij1.org", "./resources/squarespace.jpg")
shop = Custom("shop.bij1.org", "./resources/woocommerce.jpg")
radicaal = Custom("radicaal.bij1.org", "./resources/squarespace.png")
shop = Custom("shop.bij1.org", "./resources/woocommerce.svg")
wings_bij1 = Custom("Wings", wings)
proxy >> bij1_wp
proxy >> greenhost
bij1_wp >> greenhost
staging_wp >> greenhost
shop >> bij1_wp
bij1_wp >> wings_bij1 # donations
with Cluster("Static"):
static = Custom("static.bij1.net", nginx)
@ -184,7 +193,7 @@ with Diagram("BIJ1 IT landscape"):
# kom = Custom("kom.bij1.org", www)
# kom >> transip
# keycloak = Custom("jij.bij1.org", "./resources/keycloak.jpg")
# keycloak = Custom("jij.bij1.org", "./resources/keycloak.svg")
cloud = Nextcloud("cloud.bij1.org")
cloud >> greenhost
# kom >> keycloak
@ -193,10 +202,10 @@ with Diagram("BIJ1 IT landscape"):
# what shouldn't be our cloud but currently is 😩
gdrive = Custom("Google Drive", "./resources/google-drive.png")
mega = Custom("Mega", "./resources/mega.jpg")
mega = Custom("Mega", "./resources/mega.svg")
with Cluster("CRM"):
civi = Custom("CiviCRM", "./resources/civicrm.jpg")
civi = Custom("CiviCRM", "./resources/civicrm.svg")
bij1algemeen = Php("bij1algemeen")
bij1rules = Php("bij1rules")
bij1migratie = Php("bij1migratie")
@ -216,3 +225,18 @@ with Diagram("BIJ1 IT landscape"):
mollie = Custom("Mollie", "./resources/mollie.jpg")
export_mollie = Nodejs("export-mollie")
mollie >> export_mollie >> bij1migratie
terraform = Custom("Terraform", "./resources/terraform.png")
terraform >> gitlab
canva = Custom("Canva", "./resources/canva.png")
snelstart = Custom("snelstart", "./resources/snelstart.svg")
with Cluster("link collections"):
linktree = Custom("Linktree", "./resources/linktree.png")
linktree >> local_insta
linkbee = Custom("links.bij1.org", "./resources/link.png")
wings_bij1 >> linkbee
linkbee >> insta

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

125
resources/bigbluebutton.svg Normal file
View File

@ -0,0 +1,125 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg viewBox="0 0 318 70" width="318" height="70" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" data-darkreader-mode="filter">
<head xmlns=""><style id="dark-reader-style" class="darkreader">@media screen {
/* Leading rule */
html {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
/* Reverse rule */
img,
video,
:not(object):not(body)&gt;embed,
object,
svg image,
[style*="background:url"],
[style*="background-image:url"],
[style*="background: url"],
[style*="background-image: url"],
[background],
twitterwidget,
.sr-reader,
.sr-backdrop {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
[style*="background:url"] *,
[style*="background-image:url"] *,
[style*="background: url"] *,
[style*="background-image: url"] *,
input,
[background] *,
img[src^="https://s0.wp.com/latex.php"],
twitterwidget .NaturalImage-image {
-webkit-filter: none !important;
filter: none !important;
}
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
/* Text contrast */
html {
text-shadow: 0 0 0 !important;
}
/* Full screen */
:-webkit-full-screen, :-webkit-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:-moz-full-screen, :-moz-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:fullscreen, :fullscreen * {
-webkit-filter: none !important;
filter: none !important;
}
/* Page background */
html {
background: rgb(0,0,0) !important;
}
/* Custom rules */
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
}</style></head><linearGradient id="a" gradientUnits="userSpaceOnUse" x1="-113.8594" x2="113.8594" y1="162.6079" y2="-162.6081">
<stop offset="0" stop-color="#283274"/>
<stop offset=".7088" stop-color="#283375"/>
<stop offset=".967" stop-color="#273f88"/>
</linearGradient>
<linearGradient id="b" gradientUnits="userSpaceOnUse" x1="-109.1797" x2="5.1006" y1="156.1684" y2="-7.0408">
<stop offset="0" stop-color="#bfc8e6"/>
<stop offset=".0772" stop-color="#b6bedd"/>
<stop offset=".2039" stop-color="#9fa4c9"/>
<stop offset=".3642" stop-color="#7f82ae"/>
<stop offset=".5519" stop-color="#585c92"/>
<stop offset=".7582" stop-color="#283375"/>
</linearGradient>
<g id="icon" transform="matrix(.16386290025 0 0 -.16386287048 34.99990975 35.000090944)">
<path d="m198.491 0c0-109.624-88.866-198.49-198.491-198.49-109.623 0-198.49 88.866-198.49 198.49 0 109.623 88.867 198.491 198.49 198.491 109.625 0 198.491-88.868 198.491-198.491z" fill="url(#a)" stroke="#5d6aa5" stroke-width="18"/>
<path d="m.543 190.26c50.3-.373 104.324-20.494 143.335-66.953-1.66-39.852-72.986-80.704-132.511-125.68-49.945-37.738-126.373-73.128-178.643-87.032-49.698 95.152-13.55 186.622 48.772 238.038 29.158 25.513 73.097 41.968 119.047 41.627z" fill="url(#b)"/>
<path d="m107.395-49.37c0-16.763-5.9-31.045-17.694-42.839-11.801-11.801-26.076-17.694-42.839-17.694h-72.175c-16.764 0-31.046 5.894-42.84 17.694-11.801 11.794-17.694 26.076-17.694 42.839v181.137c12.856 0 23.827-6.287 32.923-18.859 9.094-12.572 13.642-27.706 13.642-45.4v-116.878c0-9.312 4.656-13.969 13.97-13.969h72.175c9.312 0 13.969 4.656 13.969 13.969v55.412c0 9-4.656 13.656-13.969 13.97h-13.97c-18.007.626-33.221 5.326-45.633 14.107-12.42 8.774-18.626 19.594-18.626 32.457h78.229c16.763 0 31.038-5.901 42.839-17.694 11.794-11.801 17.694-26.076 17.694-42.84v-55.412z" fill="#757575"/>
<path d="m103.971-51.741c0-16.763-5.9-31.045-17.694-42.839-11.801-11.801-26.076-17.694-42.839-17.694h-72.175c-16.763 0-31.045 5.894-42.839 17.694-11.801 11.794-17.694 26.076-17.694 42.839v181.136c12.856 0 23.828-6.287 32.922-18.859s13.642-27.706 13.642-45.4v-116.877c0-9.313 4.656-13.969 13.969-13.969h72.175c9.312 0 13.969 4.656 13.969 13.969v55.412c0 9-4.656 13.656-13.969 13.969h-13.97c-18.007.625-33.221 5.326-45.633 14.107-12.419 8.774-18.625 19.594-18.625 32.457h78.229c16.763 0 31.038-5.901 42.839-17.694 11.794-11.801 17.694-26.076 17.694-42.839v-55.412z" fill="#fff"/>
</g>
<g id="text" fill="#414141">
<g transform="matrix(1.02366 0 0 1.01321 0 -1.55838)">
<path d="m77.8509 52.5987c1.1585.1448 3.0049.3258 5.4667.3258 4.4893 0 7.3494-.7603 9.0872-2.2446 1.3757-1.1947 2.317-2.8963 2.317-5.0685 0-3.3308-2.3532-5.3582-4.9237-6.0099v-.1086c2.6429-.9775 4.0549-3.0049 4.0549-5.2495 0-2.0999-1.0138-3.6928-2.5343-4.5979-1.6292-1.1223-3.6928-1.5568-6.9511-1.5568-2.5343 0-5.1048.2534-6.5167.5431zm4.4168-21.0344c.4707-.1086 1.231-.181 2.5343-.181 2.8239 0 4.5617 1.0499 4.5617 3.3669 0 2.0636-1.7016 3.5118-4.8151 3.5118h-2.2809zm0 9.9198h2.2085c3.0773 0 5.5754 1.1585 5.5754 4.0186 0 3.005-2.5705 4.0549-5.4306 4.0549-1.0137 0-1.774 0-2.3533-.1086z"/>
<path d="m102.976 52.6711v-17.6313h-4.4528v17.6313zm-2.208-24.9806c-1.4845 0-2.4982 1.0499-2.4982 2.4256 0 1.3034.9775 2.3895 2.4622 2.3895 1.556 0 2.534-1.0861 2.534-2.3895-.04-1.3757-.978-2.4256-2.498-2.4256z"/>
<path d="m123.757 40.1084c0-2.4257.07-3.8738.145-5.0686h-3.874l-.181 2.3533h-.07c-.833-1.4482-2.39-2.7515-5.105-2.7515-4.236 0-8.001 3.5118-8.001 9.3044 0 4.9961 3.114 8.6165 7.494 8.6165 2.353 0 4.127-1.0499 5.141-2.6067h.07v1.5206c0 3.8014-2.173 5.3219-5.069 5.3219-2.136 0-4.019-.6878-5.141-1.3395l-.977 3.3669c1.52.9051 3.91 1.412 6.154 1.412 2.426 0 4.996-.5069 6.807-2.136 1.846-1.6654 2.606-4.3083 2.606-8.0011zm-4.453 4.8513c0 .5068-.04 1.1223-.181 1.5568-.507 1.6291-1.955 2.7152-3.62 2.7152-2.788 0-4.309-2.4256-4.309-5.4305 0-3.5842 1.847-5.7564 4.345-5.7564 1.883 0 3.15 1.2309 3.62 2.8601.109.362.145.7602.145 1.1947z"/>
<path d="m128.717 52.5987c1.159.1448 3.005.3258 5.467.3258 4.489 0 7.349-.7603 9.087-2.2446 1.376-1.1947 2.317-2.8963 2.317-5.0685 0-3.3308-2.353-5.3582-4.924-6.0099v-.1086c2.643-.9775 4.055-3.0049 4.055-5.2495 0-2.0999-1.014-3.6928-2.534-4.5979-1.629-1.1223-3.693-1.5568-6.951-1.5568-2.534 0-5.105.2534-6.517.5431zm4.417-21.0344c.471-.1086 1.231-.181 2.534-.181 2.824 0 4.562 1.0499 4.562 3.3669 0 2.0636-1.702 3.5118-4.815 3.5118h-2.281zm0 9.9198h2.208c3.078 0 5.576 1.1585 5.576 4.0186 0 3.005-2.571 4.0549-5.431 4.0549-1.013 0-1.774 0-2.353-.1086z"/>
<path d="m149.389 52.6711h4.453v-25.7047h-4.453z"/>
<path d="m174.479 35.0398h-4.453v10.644c0 .5068-.07 1.0137-.254 1.3757-.434 1.1585-1.593 2.3895-3.403 2.3895-2.353 0-3.295-1.8826-3.295-4.8151v-9.5941h-4.453v10.3543c0 5.7564 2.933 7.6752 6.119 7.6752s4.924-1.8101 5.684-3.0411h.108l.218 2.6429h3.873c-.07-1.4482-.144-3.1859-.144-5.2858z"/>
<path d="m194.246 45.1045c.07-.3982.145-1.0499.145-1.8826 0-3.8738-1.883-8.5803-7.603-8.5803-5.648 0-8.617 4.5979-8.617 9.4854 0 5.3944 3.367 8.9061 9.088 8.9061 2.534 0 4.634-.4706 6.154-1.1223l-.652-3.0411c-1.375.4707-2.823.7965-4.887.7965-2.86 0-5.322-1.3758-5.431-4.5617zm-11.803-3.1135c.181-1.8102 1.34-4.3083 4.091-4.3083 2.969 0 3.693 2.6791 3.657 4.3083z"/>
<path d="m198.156 52.5987c1.158.1448 3.005.3258 5.467.3258 4.489 0 7.349-.7603 9.087-2.2446 1.375-1.1947 2.317-2.8963 2.317-5.0685 0-3.3308-2.353-5.3582-4.924-6.0099v-.1086c2.643-.9775 4.055-3.0049 4.055-5.2495 0-2.0999-1.014-3.6928-2.534-4.5979-1.63-1.1223-3.693-1.5568-6.951-1.5568-2.535 0-5.105.2534-6.517.5431zm4.417-21.0344c.47-.1086 1.231-.181 2.534-.181 2.824 0 4.562 1.0499 4.562 3.3669 0 2.0636-1.702 3.5118-4.815 3.5118h-2.281zm0 9.9198h2.208c3.077 0 5.576 1.1585 5.576 4.0186 0 3.005-2.571 4.0549-5.431 4.0549-1.014 0-1.774 0-2.353-.1086z"/>
<path d="m234.613 35.0398h-4.453v10.644c0 .5068-.07 1.0137-.254 1.3757-.434 1.1585-1.592 2.3895-3.403 2.3895-2.353 0-3.294-1.8826-3.294-4.8151v-9.5941h-4.453v10.3543c0 5.7564 2.932 7.6752 6.118 7.6752s4.924-1.8101 5.684-3.0411h.109l.217 2.6429h3.874c-.07-1.4482-.145-3.1859-.145-5.2858z"/>
<path d="m240.152 31.7453v3.2945h-2.498v3.3308h2.498v8.2907c0 2.317.435 3.9462 1.412 4.9599.833.9051 2.172 1.4481 3.838 1.4481 1.375 0 2.57-.2172 3.222-.4706l-.07-3.367c-.506.1449-.941.1811-1.737.1811-1.702 0-2.281-1.0862-2.281-3.2584v-7.7838h4.236v-3.3308h-4.236v-4.5254z"/>
<path d="m252.86 31.7453v3.2945h-2.498v3.3308h2.498v8.2907c0 2.317.434 3.9462 1.412 4.9599.832.9051 2.172 1.4481 3.837 1.4481 1.376 0 2.571-.2172 3.222-.4706l-.07-3.367c-.507.1449-.941.1811-1.738.1811-1.701 0-2.281-1.0862-2.281-3.2584v-7.7838h4.236v-3.3308h-4.236v-4.5254z"/>
<path d="m272.627 34.6416c-5.322 0-9.123 3.548-9.123 9.3406 0 5.684 3.873 9.0871 8.833 9.0871 4.49 0 9.051-2.8963 9.051-9.3767 0-5.3582-3.512-9.051-8.761-9.051zm-.109 3.2221c3.041 0 4.272 3.186 4.272 5.9375 0 3.5841-1.774 6.046-4.308 6.046-2.679 0-4.381-2.5705-4.381-5.9736 0-2.9325 1.268-6.0099 4.417-6.0099z"/>
<path d="m285.045 52.6711h4.453v-10.3905c0-.5068.07-1.0499.217-1.4119.471-1.3396 1.702-2.6067 3.476-2.6067 2.425 0 3.367 1.9188 3.367 4.4531v9.956h4.453v-10.4629c0-5.5754-3.186-7.5666-6.264-7.5666-2.932 0-4.851 1.6654-5.647 3.0411h-.109l-.217-2.6429h-3.874c.07 1.5206.145 3.2222.145 5.2496z"/>
<path d="m77.8509 52.5987c1.1585.1448 3.0049.3258 5.4667.3258 4.4893 0 7.3494-.7603 9.0872-2.2446 1.3757-1.1947 2.317-2.8963 2.317-5.0685 0-3.3308-2.3532-5.3582-4.9237-6.0099v-.1086c2.6429-.9775 4.0549-3.0049 4.0549-5.2495 0-2.0999-1.0138-3.6928-2.5343-4.5979-1.6292-1.1223-3.6928-1.5568-6.9511-1.5568-2.5343 0-5.1048.2534-6.5167.5431zm4.4168-21.0344c.4707-.1086 1.231-.181 2.5343-.181 2.8239 0 4.5617 1.0499 4.5617 3.3669 0 2.0636-1.7016 3.5118-4.8151 3.5118h-2.2809zm0 9.9198h2.2085c3.0773 0 5.5754 1.1585 5.5754 4.0186 0 3.005-2.5705 4.0549-5.4306 4.0549-1.0137 0-1.774 0-2.3533-.1086z"/>
<path d="m102.976 52.6711v-17.6313h-4.4528v17.6313zm-2.208-24.9806c-1.4845 0-2.4982 1.0499-2.4982 2.4256 0 1.3034.9775 2.3895 2.4622 2.3895 1.556 0 2.534-1.0861 2.534-2.3895-.04-1.3757-.978-2.4256-2.498-2.4256z"/>
<path d="m123.757 40.1084c0-2.4257.07-3.8738.145-5.0686h-3.874l-.181 2.3533h-.07c-.833-1.4482-2.39-2.7515-5.105-2.7515-4.236 0-8.001 3.5118-8.001 9.3044 0 4.9961 3.114 8.6165 7.494 8.6165 2.353 0 4.127-1.0499 5.141-2.6067h.07v1.5206c0 3.8014-2.173 5.3219-5.069 5.3219-2.136 0-4.019-.6878-5.141-1.3395l-.977 3.3669c1.52.9051 3.91 1.412 6.154 1.412 2.426 0 4.996-.5069 6.807-2.136 1.846-1.6654 2.606-4.3083 2.606-8.0011zm-4.453 4.8513c0 .5068-.04 1.1223-.181 1.5568-.507 1.6291-1.955 2.7152-3.62 2.7152-2.788 0-4.309-2.4256-4.309-5.4305 0-3.5842 1.847-5.7564 4.345-5.7564 1.883 0 3.15 1.2309 3.62 2.8601.109.362.145.7602.145 1.1947z"/>
<path d="m128.717 52.5987c1.159.1448 3.005.3258 5.467.3258 4.489 0 7.349-.7603 9.087-2.2446 1.376-1.1947 2.317-2.8963 2.317-5.0685 0-3.3308-2.353-5.3582-4.924-6.0099v-.1086c2.643-.9775 4.055-3.0049 4.055-5.2495 0-2.0999-1.014-3.6928-2.534-4.5979-1.629-1.1223-3.693-1.5568-6.951-1.5568-2.534 0-5.105.2534-6.517.5431zm4.417-21.0344c.471-.1086 1.231-.181 2.534-.181 2.824 0 4.562 1.0499 4.562 3.3669 0 2.0636-1.702 3.5118-4.815 3.5118h-2.281zm0 9.9198h2.208c3.078 0 5.576 1.1585 5.576 4.0186 0 3.005-2.571 4.0549-5.431 4.0549-1.013 0-1.774 0-2.353-.1086z"/>
<path d="m149.389 52.6711h4.453v-25.7047h-4.453z"/>
<path d="m174.479 35.0398h-4.453v10.644c0 .5068-.07 1.0137-.254 1.3757-.434 1.1585-1.593 2.3895-3.403 2.3895-2.353 0-3.295-1.8826-3.295-4.8151v-9.5941h-4.453v10.3543c0 5.7564 2.933 7.6752 6.119 7.6752s4.924-1.8101 5.684-3.0411h.108l.218 2.6429h3.873c-.07-1.4482-.144-3.1859-.144-5.2858z"/>
<path d="m194.246 45.1045c.07-.3982.145-1.0499.145-1.8826 0-3.8738-1.883-8.5803-7.603-8.5803-5.648 0-8.617 4.5979-8.617 9.4854 0 5.3944 3.367 8.9061 9.088 8.9061 2.534 0 4.634-.4706 6.154-1.1223l-.652-3.0411c-1.375.4707-2.823.7965-4.887.7965-2.86 0-5.322-1.3758-5.431-4.5617zm-11.803-3.1135c.181-1.8102 1.34-4.3083 4.091-4.3083 2.969 0 3.693 2.6791 3.657 4.3083z"/>
<path d="m198.156 52.5987c1.158.1448 3.005.3258 5.467.3258 4.489 0 7.349-.7603 9.087-2.2446 1.375-1.1947 2.317-2.8963 2.317-5.0685 0-3.3308-2.353-5.3582-4.924-6.0099v-.1086c2.643-.9775 4.055-3.0049 4.055-5.2495 0-2.0999-1.014-3.6928-2.534-4.5979-1.63-1.1223-3.693-1.5568-6.951-1.5568-2.535 0-5.105.2534-6.517.5431zm4.417-21.0344c.47-.1086 1.231-.181 2.534-.181 2.824 0 4.562 1.0499 4.562 3.3669 0 2.0636-1.702 3.5118-4.815 3.5118h-2.281zm0 9.9198h2.208c3.077 0 5.576 1.1585 5.576 4.0186 0 3.005-2.571 4.0549-5.431 4.0549-1.014 0-1.774 0-2.353-.1086z"/>
<path d="m234.613 35.0398h-4.453v10.644c0 .5068-.07 1.0137-.254 1.3757-.434 1.1585-1.592 2.3895-3.403 2.3895-2.353 0-3.294-1.8826-3.294-4.8151v-9.5941h-4.453v10.3543c0 5.7564 2.932 7.6752 6.118 7.6752s4.924-1.8101 5.684-3.0411h.109l.217 2.6429h3.874c-.07-1.4482-.145-3.1859-.145-5.2858z"/>
<path d="m240.152 31.7453v3.2945h-2.498v3.3308h2.498v8.2907c0 2.317.435 3.9462 1.412 4.9599.833.9051 2.172 1.4481 3.838 1.4481 1.375 0 2.57-.2172 3.222-.4706l-.07-3.367c-.506.1449-.941.1811-1.737.1811-1.702 0-2.281-1.0862-2.281-3.2584v-7.7838h4.236v-3.3308h-4.236v-4.5254z"/>
<path d="m252.86 31.7453v3.2945h-2.498v3.3308h2.498v8.2907c0 2.317.434 3.9462 1.412 4.9599.832.9051 2.172 1.4481 3.837 1.4481 1.376 0 2.571-.2172 3.222-.4706l-.07-3.367c-.507.1449-.941.1811-1.738.1811-1.701 0-2.281-1.0862-2.281-3.2584v-7.7838h4.236v-3.3308h-4.236v-4.5254z"/>
<path d="m272.627 34.6416c-5.322 0-9.123 3.548-9.123 9.3406 0 5.684 3.873 9.0871 8.833 9.0871 4.49 0 9.051-2.8963 9.051-9.3767 0-5.3582-3.512-9.051-8.761-9.051zm-.109 3.2221c3.041 0 4.272 3.186 4.272 5.9375 0 3.5841-1.774 6.046-4.308 6.046-2.679 0-4.381-2.5705-4.381-5.9736 0-2.9325 1.268-6.0099 4.417-6.0099z"/>
<path d="m285.045 52.6711h4.453v-10.3905c0-.5068.07-1.0499.217-1.4119.471-1.3396 1.702-2.6067 3.476-2.6067 2.425 0 3.367 1.9188 3.367 4.4531v9.956h4.453v-10.4629c0-5.5754-3.186-7.5666-6.264-7.5666-2.932 0-4.851 1.6654-5.647 3.0411h-.109l-.217-2.6429h-3.874c.07 1.5206.145 3.2222.145 5.2496z"/>
</g>
<g id="TM">
<path d="m313.278 36.9152h.525v-2.4363h.828v-.4394h-2.172v.4394h.819z"/>
<path d="m317.438 36.9152h.512l-.166-2.8757h-.683l-.397 1.152c-.11.337-.209.6912-.285 1.0026h-.01c-.07-.32-.162-.6613-.265-.9984l-.375-1.1562h-.691l-.192 2.8757h.49l.06-1.1563c.02-.3925.04-.849.05-1.2245.08.3584.179.7509.29 1.1179l.384 1.2288h.401l.423-1.2459c.128-.3627.247-.7509.341-1.1008h.01c0 .3883.02.8363.03 1.2075z"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

BIN
resources/canva.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 460 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.3 KiB

112
resources/civicrm.svg Normal file
View File

@ -0,0 +1,112 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg version="1.1" viewBox="0 0 200 71.61" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" data-darkreader-mode="filter">
<head xmlns=""><style id="dark-reader-style" class="darkreader">@media screen {
/* Leading rule */
html {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
/* Reverse rule */
img,
video,
:not(object):not(body)&gt;embed,
object,
svg image,
[style*="background:url"],
[style*="background-image:url"],
[style*="background: url"],
[style*="background-image: url"],
[background],
twitterwidget,
.sr-reader,
.sr-backdrop {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
[style*="background:url"] *,
[style*="background-image:url"] *,
[style*="background: url"] *,
[style*="background-image: url"] *,
input,
[background] *,
img[src^="https://s0.wp.com/latex.php"],
twitterwidget .NaturalImage-image {
-webkit-filter: none !important;
filter: none !important;
}
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
/* Text contrast */
html {
text-shadow: 0 0 0 !important;
}
/* Full screen */
:-webkit-full-screen, :-webkit-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:-moz-full-screen, :-moz-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:fullscreen, :fullscreen * {
-webkit-filter: none !important;
filter: none !important;
}
/* Page background */
html {
background: rgb(0,0,0) !important;
}
/* Custom rules */
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
}</style></head><defs>
<clipPath id="cvfb">
<path d="m0 432h864v-432h-864v432z"/>
</clipPath>
<clipPath id="cvfa">
<path d="m468.4 240 13.94-12.09-4.368-48.88 2.52-10.08 10.58 6.551-1.51 12.43 49.72 27.21 4.703 8.005-7.56 4.089-23.35 1.847-30.82 19.15-13.86 1.847v-10.08z"/>
</clipPath>
</defs>
<title>CiviCRM logo</title>
<metadata>
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
</cc:Work>
</rdf:RDF>
</metadata>
<g transform="translate(-357.8 -504.7)">
<g transform="matrix(.7514 0 0 -.7514 144.9 699.6)">
<g clip-path="url(#cvfb)">
<g transform="translate(380.5 203)">
<path d="m0 0v-1.453c0-1.09-0.099-2.157-0.295-3.202-0.197-1.044-0.522-1.975-0.976-2.792-0.455-0.818-1.053-1.476-1.794-1.976-0.742-0.499-1.658-0.749-2.748-0.749-1.089 0-2.005 0.25-2.747 0.749-0.742 0.5-1.339 1.158-1.794 1.976-0.454 0.817-0.779 1.748-0.976 2.792-0.197 1.045-0.295 2.112-0.295 3.202v14.53c0 1.453 0.098 2.725 0.295 3.815 0.197 1.089 0.522 1.998 0.976 2.724 0.455 0.727 1.052 1.272 1.794 1.635s1.658 0.545 2.747 0.545c1.09 0 2.006-0.182 2.748-0.545 0.741-0.363 1.339-0.908 1.794-1.635 0.454-0.726 0.779-1.635 0.976-2.724 0.196-1.09 0.295-2.362 0.295-3.815h5.813c0 1.998-0.22 3.826-0.659 5.483-0.439 1.658-1.124 3.077-2.055 4.258-0.931 1.18-2.134 2.1-3.61 2.758-1.476 0.659-3.243 0.988-5.302 0.988-2.179 0-4.011-0.371-5.494-1.113-1.484-0.741-2.679-1.771-3.588-3.087-0.908-1.317-1.559-2.892-1.952-4.723-0.394-1.832-0.591-3.837-0.591-6.017v-11.6c0-2.18 0.197-4.186 0.591-6.017 0.393-1.832 1.044-3.41 1.952-4.734 0.909-1.325 2.104-2.358 3.588-3.099 1.483-0.742 3.315-1.113 5.494-1.113 2.18 0 4.012 0.363 5.495 1.09 1.483 0.726 2.679 1.703 3.588 2.929 0.908 1.226 1.558 2.656 1.952 4.291s0.591 3.36 0.591 5.177v1.453h-5.813zm32.7-14.53-6.556 20.34c0.956 0.348 1.807 0.924 2.551 1.726 0.319 0.334 0.631 0.739 0.934 1.216 0.304 0.477 0.578 1.029 0.821 1.658s0.436 1.344 0.581 2.147c0.144 0.803 0.216 1.704 0.216 2.704 0 1.635-0.204 3.122-0.613 4.461-0.409 1.34-1.112 2.487-2.111 3.44-0.999 0.954-2.339 1.692-4.019 2.214s-3.792 0.783-6.335 0.783h-7.266v-40.69h5.813v18.89h4.359l6.092-18.89h5.533zm-15.98 36.33h1.453c1.09 0 2.081-0.102 2.974-0.307 0.893-0.204 1.658-0.556 2.294-1.055 0.635-0.5 1.127-1.17 1.475-2.01s0.523-1.896 0.523-3.167c0-1.272-0.175-2.327-0.523-3.168-0.348-0.84-0.84-1.509-1.475-2.009-0.636-0.499-1.401-0.851-2.294-1.056-0.893-0.204-1.884-0.306-2.974-0.306h-1.453v13.08zm36.33-36.33 5.813 32.1v-32.1h5.812v40.69h-8.158l-5.785-31.19-5.786 31.19h-7.88v-40.69h5.812v32.1l5.813-32.1h4.359z" style="fill:#373535"/>
</g>
<g transform="translate(303.4 203)">
<path d="m0 0v-1.453c0-1.09-0.099-2.157-0.295-3.202-0.197-1.044-0.522-1.975-0.976-2.792-0.455-0.818-1.053-1.476-1.794-1.976-0.742-0.499-1.658-0.749-2.748-0.749-1.089 0-2.005 0.25-2.747 0.749-0.742 0.5-1.339 1.158-1.794 1.976-0.454 0.817-0.779 1.748-0.976 2.792-0.197 1.045-0.295 2.112-0.295 3.202v14.53c0 1.453 0.098 2.725 0.295 3.815 0.197 1.089 0.522 1.998 0.976 2.724 0.455 0.727 1.052 1.272 1.794 1.635s1.658 0.545 2.747 0.545c1.09 0 2.006-0.182 2.748-0.545 0.741-0.363 1.339-0.908 1.794-1.635 0.454-0.726 0.779-1.635 0.976-2.724 0.196-1.09 0.295-2.362 0.295-3.815h5.813c0 1.998-0.22 3.826-0.659 5.483-0.439 1.658-1.124 3.077-2.055 4.258-0.931 1.18-2.134 2.1-3.61 2.758-1.476 0.659-3.243 0.988-5.302 0.988-2.179 0-4.011-0.371-5.494-1.113-1.484-0.741-2.679-1.771-3.588-3.087-0.908-1.317-1.559-2.892-1.952-4.723-0.394-1.832-0.591-3.837-0.591-6.017v-11.6c0-2.18 0.197-4.186 0.591-6.017 0.393-1.832 1.044-3.41 1.952-4.734 0.909-1.325 2.104-2.358 3.588-3.099 1.483-0.742 3.315-1.113 5.494-1.113 2.18 0 4.012 0.363 5.495 1.09 1.483 0.726 2.679 1.703 3.588 2.929 0.908 1.226 1.558 2.656 1.952 4.291s0.591 3.36 0.591 5.177v1.453h-5.813zm10.9-14.53h5.813v40.69h-5.813v-40.69zm21.6 8.718-1.323 10.17-4.298 21.8h-5.806l8.347-40.69h6.185l8.711 40.69h-5.805l-4.647-21.72-1.364-10.25zm16.18-8.718h5.813v40.69h-5.813v-40.69z" style="fill:#2a698b"/>
</g>
<g transform="translate(470.8 245.6)">
<path d="m0 0s-9.858 2.099-6.73-7.483l20.6-63.12s3.127-9.583 9.857-2.079l44.21 49.29s6.728 7.503-3.129 9.601l-64.8 13.79z" style="fill:none;stroke-width:6.719;stroke:#2a698b"/>
</g>
<g transform="translate(481.2 252.2)">
<path d="m0 0s-8.887 4.753-8.526-5.319l2.376-66.51s0.359-10.07 8.881-4.693l55.84 35.26s8.523 5.382-0.364 10.14l-58.2 31.13z" style="fill:none;stroke-width:6.719;stroke:#86c661"/>
</g>
</g>
<g clip-path="url(#cvfa)">
<g transform="translate(470.8 245.6)">
<path d="m0 0s-9.858 2.098-6.73-7.484l20.6-63.12s3.127-9.583 9.857-2.079l44.21 49.29s6.728 7.503-3.129 9.602l-64.8 13.79z" style="fill:none;stroke-width:6.719;stroke:#2a698b"/>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 60 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

90
resources/github.svg Normal file
View File

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="600.25" height="162.34375" id="svg2" version="1.1" inkscape:version="0.48.2 r9819" data-darkreader-mode="filter">
<head xmlns=""><style id="dark-reader-style" class="darkreader">@media screen {
/* Leading rule */
html {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
/* Reverse rule */
img,
video,
:not(object):not(body)&gt;embed,
object,
svg image,
[style*="background:url"],
[style*="background-image:url"],
[style*="background: url"],
[style*="background-image: url"],
[background],
twitterwidget,
.sr-reader,
.sr-backdrop {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
[style*="background:url"] *,
[style*="background-image:url"] *,
[style*="background: url"] *,
[style*="background-image: url"] *,
input,
[background] *,
img[src^="https://s0.wp.com/latex.php"],
twitterwidget .NaturalImage-image {
-webkit-filter: none !important;
filter: none !important;
}
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
/* Text contrast */
html {
text-shadow: 0 0 0 !important;
}
/* Full screen */
:-webkit-full-screen, :-webkit-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:-moz-full-screen, :-moz-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:fullscreen, :fullscreen * {
-webkit-filter: none !important;
filter: none !important;
}
/* Page background */
html {
background: rgb(0,0,0) !important;
}
/* Custom rules */
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
}</style></head><g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-85.589293,-376.9046)">
<g transform="matrix(1.25,0,0,-1.25,85.589293,539.24835)" inkscape:label="ink_ext_XXXXXX" id="g3012">
<g transform="scale(0.1,0.1)" id="g3014">
<g id="g3016">
<g id="g3018">
<path id="path3024" style="fill:#161312;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 924.973,742.875 -403.567,0 c -10.41,0 -18.855,-8.449 -18.855,-18.867 l 0,-197.305 c 0,-10.41 8.445,-18.887 18.855,-18.887 l 157.434,0 0,-245.136 c 0,0 -35.356,-12.051 -133.078,-12.051 -115.301,0 -276.367,42.133 -276.367,396.312 0,354.259 167.714,400.869 325.175,400.869 136.297,0 195.02,-24 232.383,-35.56 11.738,-3.6 22.598,8.09 22.598,18.51 l 45.019,190.64 c 0,4.87 -1.648,10.74 -7.207,14.73 -15.175,10.82 -107.746,62.62 -341.601,62.62 C 276.348,1298.75 0,1184.13 0,633.129 0,82.1094 316.395,0 583.02,0 c 220.757,0 354.683,94.3398 354.683,94.3398 5.52,3.0508 6.113,10.7622 6.113,14.3012 l 0,615.367 c 0,10.418 -8.433,18.867 -18.843,18.867" inkscape:connector-curvature="0"/>
<path id="path3026" style="fill:#161312;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 3004.75,1232.73 c 0,10.5 -8.32,18.97 -18.73,18.97 l -227.23,0 c -10.38,0 -18.82,-8.47 -18.82,-18.97 0,-0.05 0.06,-439.125 0.06,-439.125 l -354.19,0 0,439.125 c 0,10.5 -8.36,18.97 -18.75,18.97 l -227.22,0 c -10.34,0 -18.77,-8.47 -18.77,-18.97 l 0,-1189.0308 c 0,-10.4883 8.43,-19.0273 18.77,-19.0273 l 227.22,0 c 10.39,0 18.75,8.539 18.75,19.0273 l 0,508.5898 354.19,0 c 0,0 -0.62,-508.5507 -0.62,-508.5898 0,-10.4883 8.43,-19.0273 18.82,-19.0273 l 227.77,0 c 10.41,0 18.73,8.539 18.75,19.0273 l 0,1189.0308" inkscape:connector-curvature="0"/>
<path id="path3028" style="fill:#161312;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1353.76,1076.7 c 0,81.82 -65.6,147.94 -146.53,147.94 -80.85,0 -146.5,-66.12 -146.5,-147.94 0,-81.735 65.65,-148.032 146.5,-148.032 80.93,0 146.53,66.297 146.53,148.032" inkscape:connector-curvature="0"/>
<path id="path3030" style="fill:#161312;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1337.51,294.52 c 0,30.464 0,548.859 0,548.859 0,10.422 -8.41,18.941 -18.8,18.941 l -226.51,0 c -10.39,0 -19.69,-10.718 -19.69,-21.136 0,0 0,-660.454 0,-786.352 0,-23.1132 14.4,-29.9804 33.04,-29.9804 0,0 96.68,0 204.08,0 22.39,0 27.88,10.9882 27.88,30.3476 0,42.1524 0,207.2698 0,239.3208" inkscape:connector-curvature="0"/>
<path id="path3032" style="fill:#161312;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 3868.32,860.531 -225.49,0 c -10.34,0 -18.76,-8.523 -18.76,-19.011 l 0,-583.02 c 0,0 -57.28,-41.91 -138.59,-41.91 -81.3,0 -102.88,36.89 -102.88,116.5 0,79.707 0,508.43 0,508.43 0,10.488 -8.4,19.011 -18.75,19.011 l -228.85,0 c -10.33,0 -18.79,-8.523 -18.79,-19.011 0,0 0,-310.481 0,-546.93 0,-236.4611 131.79,-294.30875 313.09,-294.30875 148.73,0 268.65,82.16795 268.65,82.16795 0,0 5.71,-43.3008 8.29,-48.4375 2.59,-5.1211 9.32,-10.2929 16.59,-10.2929 l 145.59,0.6406 c 10.33,0 18.79,8.539 18.79,18.9804 l -0.07,798.1802 c 0,10.488 -8.43,19.011 -18.82,19.011" inkscape:connector-curvature="0"/>
<path id="path3034" style="fill:#161312;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 4395.67,217.309 c -78.21,2.382 -131.26,37.871 -131.26,37.871 l 0,376.543 c 0,0 52.34,32.078 116.55,37.812 81.2,7.274 159.44,-17.254 159.44,-210.957 0,-204.258 -35.31,-244.566 -144.73,-241.269 z m 88.94,669.933 c -128.07,0 -215.18,-57.14 -215.18,-57.14 l 0,402.628 c 0,10.5 -8.39,18.97 -18.75,18.97 l -227.87,0 c -10.36,0 -18.78,-8.47 -18.78,-18.97 l 0,-1189.0308 c 0,-10.4883 8.42,-19.0273 18.81,-19.0273 0.02,0 158.05,0 158.1,0 7.12,0 12.51,3.6679 16.49,10.0976 3.93,6.3907 9.6,54.8203 9.6,54.8203 0,0 93.18,-88.30074 269.57,-88.30074 207.08,0 325.84,105.04294 325.84,471.54694 0,366.512 -189.67,414.406 -317.83,414.406" inkscape:connector-curvature="0"/>
<path id="path3036" style="fill:#161312;fill-opacity:1;fill-rule:nonzero;stroke:none" d="m 1990.58,862.426 -170.45,0 c 0,0 -0.26,225.134 -0.26,225.184 0,8.52 -4.39,12.78 -14.24,12.78 l -232.28,0 c -9.03,0 -13.88,-3.97 -13.88,-12.65 l 0,-232.697 c 0,0 -116.4,-28.102 -124.27,-30.371 -7.84,-2.274 -13.61,-9.5 -13.61,-18.125 l 0,-146.227 c 0,-10.515 8.4,-18.996 18.79,-18.996 l 119.09,0 c 0,0 0,-152.941 0,-351.785 0,-261.289 183.28,-286.96088 306.96,-286.96088 56.51,0 124.11,18.15238 135.27,22.27348 6.75,2.4804 10.67,9.4687 10.67,17.0468 l 0.19,160.8636 c 0,10.488 -8.86,18.976 -18.84,18.976 -9.93,0 -35.34,-4.039 -61.5,-4.039 -83.72,0 -112.09,38.93 -112.09,89.317 0,50.351 -0.01,334.308 -0.01,334.308 l 170.46,0 c 10.39,0 18.8,8.481 18.8,18.996 l 0,183.16 c 0,10.497 -8.41,18.946 -18.8,18.946" inkscape:connector-curvature="0"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.8 KiB

70
resources/gitlab.svg Normal file
View File

@ -0,0 +1,70 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 990 380" data-darkreader-mode="filter"><head xmlns=""><style id="dark-reader-style" class="darkreader">@media screen {
/* Leading rule */
html {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
/* Reverse rule */
img,
video,
:not(object):not(body)&gt;embed,
object,
svg image,
[style*="background:url"],
[style*="background-image:url"],
[style*="background: url"],
[style*="background-image: url"],
[background],
twitterwidget,
.sr-reader,
.sr-backdrop {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
[style*="background:url"] *,
[style*="background-image:url"] *,
[style*="background: url"] *,
[style*="background-image: url"] *,
input,
[background] *,
img[src^="https://s0.wp.com/latex.php"],
twitterwidget .NaturalImage-image {
-webkit-filter: none !important;
filter: none !important;
}
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
/* Text contrast */
html {
text-shadow: 0 0 0 !important;
}
/* Full screen */
:-webkit-full-screen, :-webkit-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:-moz-full-screen, :-moz-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:fullscreen, :fullscreen * {
-webkit-filter: none !important;
filter: none !important;
}
/* Page background */
html {
background: rgb(0,0,0) !important;
}
/* Custom rules */
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
}</style></head><defs><style>.cls-1{fill:#171321;}.cls-2{fill:#e24329;}.cls-3{fill:#fc6d26;}.cls-4{fill:#fca326;}</style></defs><g id="LOGO"><path class="cls-1" d="M428.92,171.51H451.7c-3.8-24.22-24.77-41.09-52.06-41.09-32.29,0-56.52,23.74-56.52,63.5,0,39.05,23.14,63.27,57.18,63.27,30.55,0,52.42-19.65,52.42-51.46V190.91H402.65v17.47h28.44c-.36,17.6-12.11,28.74-30.67,28.74-20.66,0-34.82-15.48-34.82-43.44,0-27.78,14.4-43.2,34.34-43.2C414.82,150.48,425,158.43,428.92,171.51Z"/><path class="cls-1" d="M467.78,255.5h21.81V163H467.78Zm11-107.2c6.93,0,12.59-5.31,12.59-11.81s-5.66-11.87-12.59-11.87-12.65,5.3-12.65,11.87S471.75,148.3,478.74,148.3Z"/><path class="cls-1" d="M554.9,163H536.64V140.78H514.83V163H501.7v16.87h13.13v51.46c-.12,17.41,12.54,26,28.92,25.49a44.29,44.29,0,0,0,12.84-2.17l-3.68-17.06a26.57,26.57,0,0,1-6.38.85c-5.49,0-9.89-1.93-9.89-10.73V179.82H554.9Z"/><path class="cls-1" d="M571.78,255.5h76.7V236.76H594.14V132.1H571.78Z"/><path class="cls-1" d="M690.26,257.37c14.52,0,23.19-6.81,27.17-14.58h.72V255.5h21V193.56c0-24.46-19.94-31.81-37.6-31.81-19.46,0-34.4,8.67-39.22,25.54l20.37,2.9c2.16-6.33,8.31-11.75,19-11.75,10.13,0,15.67,5.18,15.67,14.28v.36c0,6.26-6.57,6.57-22.9,8.31-17.95,1.93-35.12,7.29-35.12,28.14C659.29,247.73,672.6,257.37,690.26,257.37Zm7.17-16c-9.1,0-15.61-4.16-15.61-12.17,0-8.38,7.29-11.87,17-13.26,5.73-.78,17.18-2.23,20-4.51v10.9C718.88,232.6,710.56,241.34,697.43,241.34Z"/><path class="cls-1" d="M755.21,255.5h21.45V240.92h1.26c3.44,6.75,10.61,16.21,26.52,16.21,21.81,0,38.14-17.3,38.14-47.78,0-30.85-16.81-47.6-38.2-47.6-16.33,0-23.14,9.82-26.46,16.51H777V132.1H755.21Zm21.39-46.27c0-18,7.71-29.59,21.75-29.59,14.52,0,22,12.35,22,29.59s-7.59,30-22,30C784.43,239.23,776.6,227.18,776.6,209.23Z"/><path class="cls-2" d="M302,174.37l-.21-.56-21.2-55.3a5.5,5.5,0,0,0-2.18-2.63,5.6,5.6,0,0,0-8.41,3.2l-14.31,43.81H197.74l-14.31-43.81a5.61,5.61,0,0,0-8.41-3.2,5.5,5.5,0,0,0-2.18,2.63l-21.19,55.31-.22.55a39.36,39.36,0,0,0,13.06,45.49l.08.06.18.14L197,244.23l16,12.09,9.72,7.35a6.57,6.57,0,0,0,7.92,0l9.72-7.35,16-12.09,32.48-24.31.09-.07A39.36,39.36,0,0,0,302,174.37Z"/><path class="cls-3" d="M302,174.37l-.21-.56a71.5,71.5,0,0,0-28.5,12.82l-46.55,35.2,29.64,22.4,32.48-24.31.09-.07A39.36,39.36,0,0,0,302,174.37Z"/><path class="cls-4" d="M197,244.23l16,12.09,9.72,7.35a6.57,6.57,0,0,0,7.92,0l9.72-7.35,16-12.09-29.64-22.4Z"/><path class="cls-3" d="M180.14,186.63a71.44,71.44,0,0,0-28.49-12.81l-.22.55a39.36,39.36,0,0,0,13.06,45.49l.08.06.18.14L197,244.23l29.66-22.4Z"/></g></svg>

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

@ -0,0 +1,77 @@
<svg viewBox="0 0 87.3 78" xmlns="http://www.w3.org/2000/svg" data-darkreader-mode="filter">
<head xmlns=""><style id="dark-reader-style" class="darkreader">@media screen {
/* Leading rule */
html {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
/* Reverse rule */
img,
video,
:not(object):not(body)&gt;embed,
object,
svg image,
[style*="background:url"],
[style*="background-image:url"],
[style*="background: url"],
[style*="background-image: url"],
[background],
twitterwidget,
.sr-reader,
.sr-backdrop {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
[style*="background:url"] *,
[style*="background-image:url"] *,
[style*="background: url"] *,
[style*="background-image: url"] *,
input,
[background] *,
img[src^="https://s0.wp.com/latex.php"],
twitterwidget .NaturalImage-image {
-webkit-filter: none !important;
filter: none !important;
}
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
/* Text contrast */
html {
text-shadow: 0 0 0 !important;
}
/* Full screen */
:-webkit-full-screen, :-webkit-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:-moz-full-screen, :-moz-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:fullscreen, :fullscreen * {
-webkit-filter: none !important;
filter: none !important;
}
/* Page background */
html {
background: rgb(0,0,0) !important;
}
/* Custom rules */
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
}</style></head><path d="m6.6 66.85 3.85 6.65c.8 1.4 1.95 2.5 3.3 3.3l13.75-23.8h-27.5c0 1.55.4 3.1 1.2 4.5z" fill="#0066da"/>
<path d="m43.65 25-13.75-23.8c-1.35.8-2.5 1.9-3.3 3.3l-25.4 44a9.06 9.06 0 0 0 -1.2 4.5h27.5z" fill="#00ac47"/>
<path d="m73.55 76.8c1.35-.8 2.5-1.9 3.3-3.3l1.6-2.75 7.65-13.25c.8-1.4 1.2-2.95 1.2-4.5h-27.502l5.852 11.5z" fill="#ea4335"/>
<path d="m43.65 25 13.75-23.8c-1.35-.8-2.9-1.2-4.5-1.2h-18.5c-1.6 0-3.15.45-4.5 1.2z" fill="#00832d"/>
<path d="m59.8 53h-32.3l-13.75 23.8c1.35.8 2.9 1.2 4.5 1.2h50.8c1.6 0 3.15-.45 4.5-1.2z" fill="#2684fc"/>
<path d="m73.4 26.5-12.7-22c-.8-1.4-1.95-2.5-3.3-3.3l-13.75 23.8 16.15 28h27.45c0-1.55-.4-3.1-1.2-4.5z" fill="#ffba00"/>
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

BIN
resources/helios.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 147 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 233 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

BIN
resources/hetzner.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

BIN
resources/instagram.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

77
resources/jitsi.svg Normal file
View File

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" focusable="false" role="presentation" data-darkreader-mode="static">
<head xmlns=""><style id="dark-reader-style" class="darkreader">/* Common theme */
html,
body,
:not([style*="background-color:"]):not(iframe) {
background-color: rgb(16, 20, 23) !important;
}
html,
body,
:not([style*="color:"]),
.sr-reader *:not([class*='sr-pivot']) {
color: rgb(167, 158, 139) !important;
}
h1:not([style*="color:"]),
h2:not([style*="color:"]),
h3:not([style*="color:"]),
h4:not([style*="color:"]),
h5:not([style*="color:"]),
h6:not([style*="color:"]) {
color: rgb(247, 142, 102) !important;
}
cite:not([style*="color:"]) {
color: rgb(128, 204, 148) !important;
}
input:not([style*="background-color:"]),
textarea:not([style*="background-color:"]),
button:not([style*="background-color:"]),
[role="button"] {
background-color: rgb(32, 48, 64) !important;
}
input:not([style*="background-color:"]):hover,
textarea:not([style*="background-color:"]):hover,
button:not([style*="background-color:"]):hover,
[role="button"]:hover {
background-color: rgb(30, 54, 78) !important;
}
input:not([style*="background-color:"]):active, input:not([style*="background-color:"]):focus,
textarea:not([style*="background-color:"]):active, textarea:not([style*="background-color:"]):focus,
button:not([style*="background-color:"]):active, button:not([style*="background-color:"]):focus,
[role="button"]:active, [role="button"]:focus {
background-color: rgb(29, 56, 83) !important;
}
a:not([style*="color:"]) {
color: rgb(128, 182, 204) !important;
}
a:not([style*="color:"]):hover {
color: rgb(142, 193, 217) !important;
}
a:not([style*="color:"]):active, a:not([style*="color:"]):focus {
color: rgb(155, 203, 230) !important;
}
:not([style*="border-color:"]),
::before,
::after {
border-color: rgb(80, 115, 134) !important;
}
div:empty,
.sr-reader *,
.sr-backdrop {
background-color: rgba(16, 20, 23, 0.5) !important;
}
input::placeholder,
textarea::placeholder {
color: rgba(167, 158, 139, 0.5) !important;
}
input:not([style*="background-image:"]),
textarea:not([style*="background-image:"]) {
background-image: none !important;
}</style></head><g fill="#fff">
<path d="M13.016 9.59a.12.12 0 0 0 .039.004c.289 0 .937-.422 1.058-.614l.012-.015.012-.012c.043-.039.16-.254.218-.379-.617-.187-.683-.52-.746-.816a.564.564 0 0 0-.02-.094.78.78 0 0 0-.019-.101c-.918.304-1.195.476-1.347.601-.082.066-.13.254.101.774.117.261.52.62.692.652"/>
<path d="M10.531 13.328c.543 0 1.688-.324 2.442-.539l.304-.086a.64.64 0 0 0 .043-.012c-.039-.043-.113-.105-.226-.203-.504-.34-.98-.5-1.496-.5-.114 0-.23.008-.36.024-.437.05-.8.152-.976.203a.556.556 0 0 1-.145.035.126.126 0 0 1-.117-.082.131.131 0 0 1 .04-.137h.003c.3-.254.867-.726 1.934-.937.183-.035.382-.055.59-.055.476 0 .972.098 1.472.293.676.266 1.14.605 1.512.879.203.144.375.273.527.344.04.02.059.023.067.023a.27.27 0 0 0 .043-.098c.007-.015.05-.195-.254-1.218a18.24 18.24 0 0 0-.5-1.469c-.215-.523-.164-.89-.098-1.11a2.3 2.3 0 0 0-.563.317l-.011.008a5.1 5.1 0 0 0-.305.25c-.629.566-1.102.86-1.406.875h-.016c-.265-.024-.668-.41-.832-.606a.214.214 0 0 0-.125-.035c-.05 0-.11.012-.168.024-.039.007-.082.015-.125.02a3.925 3.925 0 0 0-.496.097 13.46 13.46 0 0 0-.36.082c-.445.129-.78.281-.945.426l-.011.011c-.114.078-.38.301-.461.684v.004c-.168.707.086 1.578.425 2.078.16.234.329.379.47.402.034.004.077.008.124.008m-2.308 2.477a.644.644 0 0 1-.145-.504c.082-.973-.031-1.207-.082-1.262-.012-.016-.02-.016-.023-.016h-.008c-.094.024-.735.457-.875 1.75-.07.625.05 1.426.152 1.915.082-.29.211-.606.461-.93.234-.305.488-.543.805-.754a.759.759 0 0 1-.285-.2m.437-1.534c-.004.207-.031.398-.055.59a7.008 7.008 0 0 0-.039.316c-.015.215.032.289.051.308.012.016.031.028.07.028a.288.288 0 0 0 .106-.024c.383-.16.746-.441.922-.593-.27-.122-.68-.38-1.055-.625m5.395-6.825c-.004.008-.008.016-.012.02-.074.219.027.52.223.629.05.031.101.05.148.054h.02c.148 0 .27-.109.359-.324a.943.943 0 0 0 .023-.531 1.342 1.342 0 0 0-.175-.383c-.102.07-.305.227-.442.348a.566.566 0 0 0-.144.187m-.461-.355c.457-.41.73-1.09.847-1.492-.394.379-.879.586-1.187.718A3.02 3.02 0 0 0 13 6.43c-.02.015-.047.027-.07.043-.188.109-.47.273-.512.37v.009c-.129.27-.2.675-.227.906.301-.18.606-.301.86-.403.238-.093.441-.171.543-.265m1.414-2.352c-.078.504-.2.985-.434 1.492.254-.289.403-.601.453-.949.02-.144.04-.285-.02-.543m-1.433 8.278c-.004-.004-.008-.008-.008-.012-.011.004-.03.008-.062.016l-.012.003c-.16.059-.449.157-.781.27-.402.137-.856.289-1.234.426-.485.18-.641.25-.692.273l-.031.09c-.113.348-.375 1.145-1.668 1.703.27.27.848.754 1.992.754.098 0 .203-.004.305-.012a3.522 3.522 0 0 0 2.285-1.074c.555-.574.867-1.293.875-1.98a1.823 1.823 0 0 1-.578-.145c0-.004-.242-.121-.39-.312"/>
<path d="M17.29 10.754c-.048.89-.192 1.684-.43 2.355a4.692 4.692 0 0 1-.766 1.399c-.516.633-1.055.844-1.168.847-.078 0-.117-.027-.278-.14-.015-.008-.035-.024-.05-.035-.305.543-.778 1.011-1.375 1.363a4.263 4.263 0 0 1-2.114.59c-.828 0-1.566-.27-2.132-.774-.68.438-1.122.828-1.485 2.465l-.125.563-.27-.508a3.943 3.943 0 0 1-.304-.813 7.953 7.953 0 0 1-.25-2.191c.012-.914.285-1.508.52-1.84.269-.394.62-.637.917-.637h.055c.473.055.77.254 1.317.614l.171.113c.188.121.41.246.48.273.048-.027.161-.21.196-.484l.008-.039v-.012c-.004-.004-.004-.004-.008-.004-.367-.125-.87-.703-1.129-1.562-.246-.86-.195-1.57.149-2.117.558-.89 1.754-1.094 2.144-1.16.121-.024.246-.047.367-.067.024-.004.043-.012.06-.015a.269.269 0 0 1-.013-.04c-.007-.035-.02-.078-.03-.128-.122-.551-.06-1.012.015-1.387.086-.418.136-.668.343-.906.278-.383.758-.543 1.047-.641a2.42 2.42 0 0 0 .172-.063c.82-.394 1.078-.796 1.153-1.066.058-.223.156-.812.113-1.219a.233.233 0 0 1 .058-.187.21.21 0 0 1 .16-.07c.141 0 .258 0 .688 1.332.227.699.059 1.359-.5 1.953l-.02.023c.004.004.004.008.008.012.235.386.364.87.325 1.23a1.83 1.83 0 0 1-.04.235v.004c.047-.004.102-.008.165-.008.277 0 .675.043 1 .25.195.125.445.316.625.695.207.438.285 1.043.23 1.797m.438-2.117a2.342 2.342 0 0 0-1.633-1.293l-.059-.016-.012-.062a2.924 2.924 0 0 0-.156-.582l-.015-.047.023-.04a2.537 2.537 0 0 0 .324-2.261c-.199-.625-.355-1.024-.488-1.262-.27-.484-.637-.586-.902-.586a.971.971 0 0 0-.711.317.971.971 0 0 0-.243.757c.028.286-.046.778-.093.954-.004.011-.09.265-.746.586a1.188 1.188 0 0 0-.098.035c-.34.113-.973.324-1.39.879-.317.382-.4.77-.489 1.218a4.182 4.182 0 0 0-.098 1.036v.074l-.074.02c-1.062.234-1.828.714-2.273 1.421-.461.735-.54 1.649-.23 2.727.003.015.011.035.015.054l.047.145-.149-.024c-.054-.011-.105-.015-.16-.023a1.516 1.516 0 0 0-.137-.008c-.515 0-1.066.328-1.472.875-.313.426-.692 1.172-.707 2.336-.008.875.086 1.68.277 2.395.145.527.305.851.367.965l1.215 2.277.555-2.52c.226-1.011.445-1.394.707-1.656l.05-.05.063.038c.602.364 1.32.555 2.074.555a5.01 5.01 0 0 0 2.485-.687c.492-.29.91-.645 1.246-1.055l.043-.031.078-.004c.195-.004.469-.106.75-.274.234-.14.598-.402.957-.843a5.44 5.44 0 0 0 .887-1.622c.261-.734.422-1.593.476-2.554.063-.883-.043-1.61-.304-2.164"/>
<path d="M16.43 8.98c-.153-.238-.344-.382-.5-.382a.181.181 0 0 0-.082.015c-.082.032-.215.41-.157.688.04.191.266.828.38 1.133.038.117.062.171.066.195a.38.38 0 0 1 .023.07c.09.27.317.965.387 1.531a8.28 8.28 0 0 0 .187-2.19 2.092 2.092 0 0 0-.304-1.06m-1.09 4.032c.164-.043.293-.082.39-.11-.199-.136-.43-.312-.742-.554-.77-.598-1.593-.903-2.449-.903-.469 0-.879.09-1.2.2.079-.004.161-.004.247-.004.098 0 .203 0 .309.007.335.024 1.195.176 1.968 1.102.157.184.325.34.805.34.168 0 .367-.02.605-.059l.067-.02m-.348.458c-.012.14-.035.41-.07.617a3.292 3.292 0 0 1-.164.566l.207.188c.2-.133.863-.637 1.32-1.777a2.191 2.191 0 0 1-.62.261c-.27.078-.532.121-.673.145"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

135
resources/keycloak.svg Normal file
View File

@ -0,0 +1,135 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg id="Layer_1" data-name="Layer 1" viewBox="0 0 512 512" version="1.1" sodipodi:docname="keycloak_icon_512px.svg" inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20)" 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" data-darkreader-mode="filter">
<head xmlns=""><style id="dark-reader-style" class="darkreader">@media screen {
/* Leading rule */
html {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
/* Reverse rule */
img,
video,
:not(object):not(body)&gt;embed,
object,
svg image,
[style*="background:url"],
[style*="background-image:url"],
[style*="background: url"],
[style*="background-image: url"],
[background],
twitterwidget,
.sr-reader,
.sr-backdrop {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
[style*="background:url"] *,
[style*="background-image:url"] *,
[style*="background: url"] *,
[style*="background-image: url"] *,
input,
[background] *,
img[src^="https://s0.wp.com/latex.php"],
twitterwidget .NaturalImage-image {
-webkit-filter: none !important;
filter: none !important;
}
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
/* Text contrast */
html {
text-shadow: 0 0 0 !important;
}
/* Full screen */
:-webkit-full-screen, :-webkit-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:-moz-full-screen, :-moz-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:fullscreen, :fullscreen * {
-webkit-filter: none !important;
filter: none !important;
}
/* Page background */
html {
background: rgb(0,0,0) !important;
}
/* Custom rules */
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
}</style></head><sodipodi:namedview id="namedview113" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageshadow="2" inkscape:pageopacity="0.0" inkscape:pagecheckerboard="0" showgrid="false" inkscape:zoom="2.1434174" inkscape:cx="279.92681" inkscape:cy="239.33742" inkscape:window-width="1920" inkscape:window-height="1011" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="1" inkscape:current-layer="g110"/>
<defs id="defs10">
<style id="style2">.cls-1{fill:none;}.cls-2{clip-path:url(#clip-path);}.cls-3{fill:#b17c81;stroke:#b17c81;}.cls-10,.cls-11,.cls-12,.cls-13,.cls-3,.cls-4,.cls-5,.cls-6,.cls-7,.cls-8,.cls-9{stroke-width:1.51px;}.cls-4{fill:#a2747c;stroke:#a2747c;}.cls-5{fill:#996976;stroke:#996976;}.cls-6{fill:#aa787e;stroke:#aa787e;}.cls-7{fill:#b2777e;stroke:#b2777e;}.cls-8{fill:#b27a7f;stroke:#b27a7f;}.cls-9{fill:#c78485;stroke:#c78485;}.cls-10{fill:#c08184;stroke:#c08184;}.cls-11{fill:#c48485;stroke:#c48485;}.cls-12{fill:#d58b88;stroke:#d58b88;}.cls-13{fill:#e09790;stroke:#e09790;}.cls-14{clip-path:url(#clip-path-2);}.cls-15{fill:#4d4d4d;}.cls-16{fill:#e1e1e1;}.cls-17{fill:#c8c8c8;}.cls-18{fill:#c2c2c2;}.cls-19{fill:#c7c7c7;}.cls-20{fill:#cecece;}.cls-21{fill:#d3d3d3;}.cls-22{fill:#c6c6c6;}.cls-23{fill:#d5d5d5;}.cls-24{fill:#d0d0d0;}.cls-25{fill:#bfbfbf;}.cls-26{fill:#d9d9d9;}.cls-27{fill:#d4d4d4;}.cls-28{fill:#d8d8d8;}.cls-29{fill:#e2e2e2;}.cls-30{fill:#e4e4e4;}.cls-31{fill:#dedede;}.cls-32{fill:#c5c5c5;}.cls-33{fill:#d1d1d1;}.cls-34{fill:#ddd;}.cls-35{fill:#e3e3e3;}.cls-36{fill:#00b8e3;}.cls-37{fill:#33c6e9;}.cls-38{fill:#008aaa;}</style>
<clipPath id="clip-path">
<rect class="cls-1" x="-1018.62" y="565.7" width="1881.24" height="1175.78" id="rect4"/>
</clipPath>
<clipPath id="clip-path-2">
<rect class="cls-1" width="512" height="512" id="rect7"/>
</clipPath>
</defs>
<title id="title12">keycloak_deliverables</title>
<g class="cls-2" clip-path="url(#clip-path)" id="g36">
<path class="cls-3" d="M-42.82,358l245,24.8,199.4,2Z" id="path14"/>
<path class="cls-4" d="M-42.82,358l444.44,26.79,227.18-2Z" id="path16"/>
<path class="cls-5" d="M401.62,384.74L565.31,523.63,628.8,382.76Z" id="path18"/>
<path class="cls-6" d="M202.22,382.76l54.56,14.88,144.84-12.9Z" id="path20"/>
<path class="cls-7" d="M401.62,384.74L356,537.52l209.32-13.89Z" id="path22"/>
<path class="cls-8" d="M256.78,397.64L356,537.52l45.63-152.78Z" id="path24"/>
<path class="cls-9" d="M256.78,397.64L164.52,533.55l191.47,4Z" id="path26"/>
<path class="cls-10" d="M202.22,382.76l-37.7,150.79,92.26-135.91Z" id="path28"/>
<path class="cls-11" d="M-42.82,358L164.52,533.55l37.7-150.79Z" id="path30"/>
<path class="cls-12" d="M-42.82,358l-51.59,137.9,258.93,37.7Z" id="path32"/>
<path class="cls-13" d="M-94.41,495.85L-33.89,598l198.41-64.48Z" id="path34"/>
</g>
<g class="cls-14" clip-path="url(#clip-path-2)" id="g110">
<path class="cls-15" d="m 438.48,152 c -1.36647,0.0146 -2.635,-0.70753 -3.32,-1.89 L 377.39,49.94 C 376.67452,48.754034 375.38499,48.035096 374,48.05 H 138.33 c -1.37003,-0.01824 -2.64324,0.704388 -3.33,1.89 L 75,153.89 19.17,254.09 c -0.670238,1.18514 -0.670238,2.63486 0,3.82 L 75,358 135,462 c 0.685,1.18247 1.95353,1.90461 3.32,1.89 H 374 c 1.37433,0.004 2.64999,-0.71328 3.36,-1.89 L 435.2,361.9 c 0.685,-1.18247 1.95353,-1.90461 3.32,-1.89 h 71.93 c 2.38587,0 4.32,-1.93413 4.32,-4.32 V 156.32 c 0,-2.38587 -1.93413,-4.32 -4.32,-4.32 h -72 z" id="path38" sodipodi:nodetypes="ccccccccccccccccsssscc"/>
<path style="fill:#e2e2e2;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1" d="M 72.85,157.64 17.658505,256.00902 23.53,268.94 78.375,358.53222 114.19,360 401.46,359.98 H 461 L 499.26418,350.30026 514.76,307.49 514.77,258.13 V 212.41 L 510.46,152 h -71.98 l -22.11,0.01 H 367.16 147.94 l -75.09,5.63" id="path27674"/>
<path class="cls-1" d="M510.46,152H78.34A3.91,3.91,0,0,0,75,153.89s0,0.07,0,.07l-2.14,3.69L46.41,203.48,17.18,254.11a3.8,3.8,0,0,0,0,3.83l6.35,11L75,358.06A3.84,3.84,0,0,0,78.34,360H510.52a4.27,4.27,0,0,0,4.24-4.28V156.34A4.32,4.32,0,0,0,510.46,152Z" id="path40"/>
<path class="cls-16" d="M88.1,245.5L23.53,268.94l-6.35-11a3.8,3.8,0,0,1,0-3.83l29.23-50.63Z" id="path42"/>
<polygon class="cls-17" points="472.21 264.21 514.77 258.13 514.77 307.49 472.21 264.21" id="polygon44"/>
<path class="cls-18" d="M472.21,264.21l42.55,43.28V355.7a4.27,4.27,0,0,1-4.24,4.28H461Z" id="path46"/>
<polygon class="cls-19" points="472.21 264.21 461 359.98 401.46 359.98 383.42 316.53 472.21 264.21" id="polygon48"/>
<polygon class="cls-20" points="472.21 264.21 514.77 212.41 514.77 258.13 472.21 264.21" id="polygon50"/>
<path class="cls-21" d="M514.77,156.33v56.08l-42.55,51.8L440.12,152h70.33A4.32,4.32,0,0,1,514.77,156.33Z" id="path52"/>
<polygon class="cls-22" points="401.46 359.98 370.06 359.98 361.92 348.31 383.42 316.53 401.46 359.98" id="polygon54"/>
<polygon class="cls-23" points="472.21 264.21 354.42 214.42 416.37 152.01 440.12 152.01 472.21 264.21" id="polygon56"/>
<path class="cls-24" d="M354.42,214.42l29,102.11,88.8-52.32Z" id="path58"/>
<polygon class="cls-25" points="370.06 359.98 361.54 359.98 361.92 348.31 370.06 359.98" id="polygon60"/>
<polygon class="cls-26" points="416.37 152.01 354.42 214.42 343.24 158.6 367.16 152.01 416.37 152.01" id="polygon62"/>
<path class="cls-27" d="M354.42,214.42l-143,33L361.92,348.31Z" id="path64"/>
<path class="cls-24" d="M354.42,214.42l7.49,133.9,21.5-31.78Z" id="path66"/>
<path class="cls-26" d="M343.24,158.6L211.47,247.39l143-33Z" id="path68"/>
<polygon class="cls-28" points="211.47 247.39 149.5 359.98 114.19 359.98 88.1 245.5 211.47 247.39" id="polygon70"/>
<path class="cls-29" d="M147.94,152L88.1,245.5,72.85,157.64,75,153.94s0-.07,0-0.07A3.91,3.91,0,0,1,78.33,152h69.61Z" id="path72"/>
<path class="cls-28" d="M114.19,360H78.33A3.84,3.84,0,0,1,75,358L23.53,268.94,88.1,245.5Z" id="path74"/>
<polygon class="cls-30" points="46.41,203.47 72.85,157.64 88.1,245.5 " id="polygon76"/>
<polygon class="cls-31" points="276.77 152.01 235.53 152.01 172.39 152.01 211.47 247.39 343.24 158.6 303.52 152.01 276.77 152.01" id="polygon78"/>
<polygon class="cls-31" points="156.09 152.01 147.94 152.01 88.1 245.5 211.47 247.39 172.39 152.01 156.09 152.01" id="polygon80"/>
<polygon class="cls-32" points="333.23 359.98 356.22 359.98 361.54 359.98 361.92 348.31 333.23 359.98" id="polygon82"/>
<polygon class="cls-24" points="361.92 348.31 211.47 247.39 238.57 359.98 276.77 359.98 333.23 359.98 361.92 348.31" id="polygon84"/>
<polygon class="cls-33" points="149.5 359.98 156.09 359.98 235.53 359.98 238.57 359.98 211.47 247.39 149.5 359.98" id="polygon86"/>
<polygon class="cls-34" points="343.65 152.01 343.24 158.6 367.16 152.01 356.22 152.01 343.65 152.01" id="polygon88"/>
<polygon class="cls-35" points="303.52 152.01 343.24 158.6 339.58 152.01 303.52 152.01" id="polygon90"/>
<polygon class="cls-29" points="339.58 152.01 343.24 158.6 343.65 152.01 339.58 152.01" id="polygon92"/>
<path class="cls-36" d="M235.15,153.81L177,254.46a3.38,3.38,0,0,0-.42,1.64H136.07l79.74-138.18a3.14,3.14,0,0,1,1.19,1.15l0.11,0.11,18.08,31.41A3.49,3.49,0,0,1,235.15,153.81Z" id="path94"/>
<path class="cls-37" d="M235.08,361.89l-18,31.27a3.51,3.51,0,0,1-1.22,1.15L136,256.14v0H176.6a3.09,3.09,0,0,0,.38,1.57,0.37,0.37,0,0,0,.07.17l58,100.58A3.41,3.41,0,0,1,235.08,361.89Z" id="path96"/>
<path class="cls-38" d="M215.81,117.92L136.07,256.1h0v0l-20,34.66-19.1-33.12a3.09,3.09,0,0,1-.38-1.57,3.38,3.38,0,0,1,.42-1.64L116.31,221l58.75-101.74a3.4,3.4,0,0,1,3-1.75H214.1A3.58,3.58,0,0,1,215.81,117.92Z" id="path98"/>
<path class="cls-36" d="M215.81,394.31a3.58,3.58,0,0,1-1.71.45H178a3.4,3.4,0,0,1-3-1.75l-53.72-93L116,290.79l20-34.66Z" id="path100"/>
<path class="cls-38" d="M376.19,256.1L296.39,394.31a3.73,3.73,0,0,1-1.19-1.15l-0.07-.1L277,361.72a3.49,3.49,0,0,1,0-3.22l58.06-100.65a3.38,3.38,0,0,0,.49-1.75h40.57Z" id="path102"/>
<path class="cls-36" d="M415.68,256.1a3.38,3.38,0,0,1-.49,1.75L337.06,393.16a3.42,3.42,0,0,1-2.9,1.61h-36a3.72,3.72,0,0,1-1.75-.45L376.19,256.1l20-34.62,19,32.91A3.35,3.35,0,0,1,415.68,256.1Z" id="path104"/>
<path class="cls-36" d="M376.19,256.1H335.63a3.35,3.35,0,0,0-.49-1.71l-58-100.55a3.41,3.41,0,0,1,0-3.46l18.08-31.3a3.73,3.73,0,0,1,1.19-1.15Z" id="path106"/>
<path class="cls-37" d="M396.2,221.44v0l-20,34.62L296.39,117.92a3.72,3.72,0,0,1,1.75-.45h36a3.42,3.42,0,0,1,2.9,1.61Z" id="path108"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 10 KiB

BIN
resources/link.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

97
resources/linkedin.svg Normal file
View File

@ -0,0 +1,97 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" width="291" height="79.459999" id="svg3070" version="1.1" inkscape:version="0.48.0 r9654" sodipodi:docname="New document 4" data-darkreader-mode="filter">
<head xmlns=""><style id="dark-reader-style" class="darkreader">@media screen {
/* Leading rule */
html {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
/* Reverse rule */
img,
video,
:not(object):not(body)&gt;embed,
object,
svg image,
[style*="background:url"],
[style*="background-image:url"],
[style*="background: url"],
[style*="background-image: url"],
[background],
twitterwidget,
.sr-reader,
.sr-backdrop {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
[style*="background:url"] *,
[style*="background-image:url"] *,
[style*="background: url"] *,
[style*="background-image: url"] *,
input,
[background] *,
img[src^="https://s0.wp.com/latex.php"],
twitterwidget .NaturalImage-image {
-webkit-filter: none !important;
filter: none !important;
}
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
/* Text contrast */
html {
text-shadow: 0 0 0 !important;
}
/* Full screen */
:-webkit-full-screen, :-webkit-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:-moz-full-screen, :-moz-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:fullscreen, :fullscreen * {
-webkit-filter: none !important;
filter: none !important;
}
/* Page background */
html {
background: rgb(0,0,0) !important;
}
/* Custom rules */
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
}</style></head><defs id="defs3072"/>
<sodipodi:namedview id="base" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="0.0" inkscape:pageshadow="2" inkscape:zoom="2.8" inkscape:cx="142.93233" inkscape:cy="33.703355" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:window-width="1280" inkscape:window-height="750" inkscape:window-x="-8" inkscape:window-y="-8" inkscape:window-maximized="1"/>
<metadata id="metadata3075">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(-200.55198,-393.96227)">
<g transform="matrix(1.018827,0,0,-1.018827,170.5996,498.03288)" id="g3019">
<path d="m 239.3298,95.036 c 0,2.96 2.4604,5.361 5.4956,5.361 l 63.376,0 c 3.0351,0 5.4956,-2.401 5.4956,-5.361 l 0,-64.117 c 0,-2.961 -2.4605,-5.361 -5.4956,-5.361 l -63.376,0 c -3.0352,0 -5.4956,2.4 -5.4956,5.361 l 0,64.117 z" style="fill:#006699;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path14" inkscape:connector-curvature="0"/>
<path d="m 31.1516,37.709 31.0356,0 0,10.189 -19.8042,0 0,38.874 -11.2314,0 0,-49.063 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path16" inkscape:connector-curvature="0"/>
<path d="m 77.9001,37.709 0,33.793 -11.2324,0 0,-33.793 11.2324,0 z m -5.6162,38.407 c 3.917,0 6.355,2.595 6.355,5.84 -0.073,3.315 -2.438,5.837 -6.2803,5.837 -3.8428,0 -6.355,-2.522 -6.355,-5.837 0,-3.245 2.4375,-5.84 6.207,-5.84 l 0.073,0 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path18" inkscape:connector-curvature="0"/>
<path d="m 83.1154,37.709 11.2325,0 0,18.872 c 0,1.01 0.073,2.019 0.3701,2.741 0.8115,2.017 2.6596,4.107 5.7627,4.107 4.0649,0 5.6909,-3.1 5.6909,-7.64 l 0,-18.08 11.2314,0 0,19.377 c 0,10.38 -5.542,15.21 -12.9321,15.21 -6.0591,0 -8.7197,-3.387 -10.1978,-5.694 l 0.075,0 0,4.9 -11.2325,0 c 0.1475,-3.171 0,-33.793 0,-33.793 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path20" inkscape:connector-curvature="0"/>
<path d="m 133.2487,86.772 -11.2329,0 0,-49.063 11.2329,0 0,10.956 2.8072,3.534 8.7939,-14.49 13.8179,0 -14.7783,20.977 12.9316,14.272 -13.5225,0 c 0,0 -9.2368,-12.769 -10.0498,-14.283 l 0,28.097 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path22" inkscape:connector-curvature="0"/>
<path d="m 188.7062,51.805 c 0.1475,0.868 0.3697,2.533 0.3697,4.415 0,8.736 -4.4346,17.604 -16.1094,17.604 -12.4888,0 -18.2524,-9.877 -18.2524,-18.835 0,-11.08 7.02,-18 19.2866,-18 4.8774,0 9.3843,0.72 13.0796,2.234 l -1.4785,7.418 c -3.0293,-1.005 -6.1329,-1.507 -9.9751,-1.507 -5.2466,0 -9.8277,2.153 -10.1978,6.743 l 23.2773,-0.07 z m -23.3505,7.599 c 0.2954,2.884 2.2168,7.138 7.02,7.138 5.0976,0 6.2807,-4.543 6.2807,-7.138 l -13.3007,0 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path24" inkscape:connector-curvature="0"/>
<path d="m 216.801,86.772 0,-16.984 -0.1475,0 c -1.626,2.377 -5.0259,3.963 -9.5322,3.963 -8.6465,0 -16.2573,-6.92 -16.1841,-18.741 0,-10.958 6.8726,-18.094 15.4443,-18.094 4.6553,0 9.0889,2.019 11.3057,5.912 l 0.2222,0 0.4433,-5.119 9.9766,0 c -0.148,2.379 -0.2969,6.488 -0.2969,10.524 l 0,38.539 -11.2314,0 z m 0,-33.421 c 0,-0.864 -0.074,-1.73 -0.2222,-2.45 -0.6641,-3.1 -3.3252,-5.262 -6.5757,-5.262 -4.6557,0 -7.6855,3.748 -7.6855,9.659 0,5.55 2.5869,10.019 7.7588,10.019 3.4726,0 5.9116,-2.378 6.5771,-5.333 0.1475,-0.65 0.1475,-1.371 0.1475,-2.019 l 0,-4.614 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path26" inkscape:connector-curvature="0"/>
<path d="m 261.8728,37.749 0,33.794 -11.2325,0 0,-33.794 11.2325,0 z m -5.6163,38.408 c 3.917,0 6.355,2.595 6.355,5.838 -0.073,3.316 -2.438,5.839 -6.2807,5.839 -3.8423,0 -6.3545,-2.523 -6.3545,-5.839 0,-3.243 2.4375,-5.838 6.207,-5.838 l 0.073,0 z" style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path28" inkscape:connector-curvature="0"/>
<path d="m 268.0881,37.749 11.2324,0 0,18.872 c 0,1.01 0.073,2.019 0.3696,2.741 0.812,2.018 2.6602,4.108 5.7632,4.108 4.0645,0 5.6904,-3.099 5.6904,-7.642 l 0,-18.079 11.2315,0 0,19.377 c 0,10.38 -5.5415,15.21 -12.9316,15.21 -6.0596,0 -8.7198,-3.387 -10.1978,-5.694 l 0.075,0 0,4.901 -11.2324,0 c 0.1474,-3.171 0,-33.794 0,-33.794 z" style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path30" inkscape:connector-curvature="0"/>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.8 KiB

BIN
resources/linktree.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

72
resources/mega.svg Normal file
View File

@ -0,0 +1,72 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 18.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" version="1.1" id="Layer_1" x="0px" y="0px" viewBox="0 0 1108.0028 361.39998" enable-background="new 0 0 1190.6 841.9" xml:space="preserve" inkscape:version="0.91 r13725" sodipodi:docname="01_mega_logo.svg" width="1108.0028" height="361.39999" data-darkreader-mode="filter"><head xmlns=""><style id="dark-reader-style" class="darkreader">@media screen {
/* Leading rule */
html {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
/* Reverse rule */
img,
video,
:not(object):not(body)&gt;embed,
object,
svg image,
[style*="background:url"],
[style*="background-image:url"],
[style*="background: url"],
[style*="background-image: url"],
[background],
twitterwidget,
.sr-reader,
.sr-backdrop {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
[style*="background:url"] *,
[style*="background-image:url"] *,
[style*="background: url"] *,
[style*="background-image: url"] *,
input,
[background] *,
img[src^="https://s0.wp.com/latex.php"],
twitterwidget .NaturalImage-image {
-webkit-filter: none !important;
filter: none !important;
}
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
/* Text contrast */
html {
text-shadow: 0 0 0 !important;
}
/* Full screen */
:-webkit-full-screen, :-webkit-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:-moz-full-screen, :-moz-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:fullscreen, :fullscreen * {
-webkit-filter: none !important;
filter: none !important;
}
/* Page background */
html {
background: rgb(0,0,0) !important;
}
/* Custom rules */
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
}</style></head><metadata id="metadata19"><rdf:RDF><cc:Work rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/><dc:title/></cc:Work></rdf:RDF></metadata><defs id="defs17"/><sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="1245" inkscape:window-height="648" id="namedview15" showgrid="false" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0" inkscape:zoom="0.28031832" inkscape:cx="491.77096" inkscape:cy="180.74999" inkscape:window-x="0" inkscape:window-y="0" inkscape:window-maximized="0" inkscape:current-layer="Layer_1"/><path d="M 180.7,0 C 80.9,0 0,80.9 0,180.7 c 0,99.8 80.9,180.7 180.7,180.7 99.8,0 180.7,-80.9 180.7,-180.7 C 361.4,80.9 280.5,0 180.7,0 Z m 93.8,244.6 c 0,3.1 -2.5,5.6 -5.6,5.6 l -23.6,0 c -3.1,0 -5.6,-2.5 -5.6,-5.6 l 0,-72.7 c 0,-0.6 -0.7,-0.9 -1.2,-0.5 l -50,50 c -4.3,4.3 -11.4,4.3 -15.7,0 l -50,-50 c -0.4,-0.4 -1.2,-0.1 -1.2,0.5 l 0,72.7 c 0,3.1 -2.5,5.6 -5.6,5.6 l -23.6,0 c -3.1,0 -5.6,-2.5 -5.6,-5.6 l 0,-127.8 c 0,-3.1 2.5,-5.6 5.6,-5.6 l 16.2,0 c 2.9,0 5.8,1.2 7.9,3.3 l 62.2,62.2 c 1.1,1.1 2.8,1.1 3.9,0 l 62.2,-62.2 c 2.1,-2.1 4.9,-3.3 7.9,-3.3 l 16.2,0 c 3.1,0 5.6,2.5 5.6,5.6 l 0,127.8 z" id="path3" inkscape:connector-curvature="0" style="fill:#d9272e"/><g id="g5" transform="translate(-41.1,-240.3)"><path d="m 823.1,380 0,-19.5 c 0,-3.1 -2.5,-5.6 -5.6,-5.6 l -107,0 c -3.1,0 -5.6,2.5 -5.6,5.6 l 0,127.9 c 0,3.1 2.5,5.6 5.6,5.6 l 107,0 c 3.1,0 5.6,-2.5 5.6,-5.6 l 0,-19.4 c 0,-3.1 -2.5,-5.6 -5.6,-5.6 l -76.5,0 c -0.8,0 -1.4,-0.6 -1.4,-1.4 l 0,-22.2 c 0,-0.8 0.6,-1.4 1.4,-1.4 l 76.5,0 c 3.1,0 5.6,-2.5 5.6,-5.6 l 0,-16.7 c 0,-3.1 -2.5,-5.6 -5.6,-5.6 l -76.5,0 c -0.8,0 -1.4,-0.6 -1.4,-1.4 l 0,-22.2 c 0,-0.8 0.6,-1.4 1.4,-1.4 l 76.5,0 c 3.2,0.1 5.6,-2.4 5.6,-5.5 z" id="path7" inkscape:connector-curvature="0" style="fill:#2c2b2b"/><path d="m 1120.6,494 24.3,0 c 3.1,0 5.1,-3.2 3.8,-6 l -61.5,-126.8 c -1.9,-3.8 -5.7,-6.3 -10,-6.3 l -13.9,0 c -4.3,0 -8.1,2.4 -10,6.3 L 991.8,488 c -1.3,2.8 0.7,6 3.8,6 l 24.3,0 c 3.2,0 6.1,-1.8 7.5,-4.7 l 11.8,-24.3 c 0.5,-1 1.4,-1.6 2.5,-1.6 l 57.2,0 c 1.1,0 2,0.6 2.5,1.6 l 11.8,24.3 c 1.3,2.9 4.2,4.7 7.4,4.7 z m -67.7,-57.6 16,-33 c 0.5,-1 2,-1 2.5,0 l 16,33 c 0.4,0.9 -0.2,2 -1.3,2 l -32,0 c -0.9,0 -1.6,-1.1 -1.2,-2 z" id="path9" inkscape:connector-curvature="0" style="fill:#2c2b2b"/><path d="m 647.4,358.2 -62.2,62.2 c -1.1,1.1 -2.8,1.1 -3.9,0 L 519,358.2 c -2.1,-2.1 -4.9,-3.3 -7.9,-3.3 l -16.2,0 c -3.1,0 -5.6,2.5 -5.6,5.6 l 0,127.9 c 0,3.1 2.5,5.6 5.6,5.6 l 23.6,0 c 3.1,0 5.6,-2.5 5.6,-5.6 l 0,-72.7 c 0,-0.6 0.7,-0.9 1.2,-0.5 l 50,50 c 4.3,4.3 11.4,4.3 15.7,0 l 50,-50 c 0.4,-0.4 1.2,-0.1 1.2,0.5 l 0,72.7 c 0,3.1 2.5,5.6 5.6,5.6 l 23.6,0 c 3.1,0 5.6,-2.5 5.6,-5.6 l 0,-127.9 c 0,-3.1 -2.5,-5.6 -5.6,-5.6 l -16.2,0 c -2.9,0.1 -5.7,1.2 -7.8,3.3 z" id="path11" inkscape:connector-curvature="0" style="fill:#2c2b2b"/><path d="m 978.1,412 -54.9,0 c -3.1,0 -5.6,2.5 -5.6,5.6 l 0,13.9 c 0,3.1 2.5,5.6 5.6,5.6 l 31.5,0 c 1,0 1.6,1 1.3,1.9 -6,15.9 -21.6,27.2 -39.8,26.6 -21.2,-0.7 -38.6,-17.8 -39.6,-39 -1.1,-23.5 17.7,-42.9 41,-42.9 9.5,0 18.3,3.3 25.3,8.7 2.2,1.7 5.4,1.6 7.4,-0.4 l 14.8,-14.8 c 2.3,-2.3 2.1,-6.1 -0.4,-8.2 -12.9,-10.9 -29.6,-17.4 -47.8,-17.3 -40.1,0.3 -72.7,33.5 -72.3,73.7 0.4,40 32.9,72.3 73,72.3 40.3,0 73,-32.7 73,-73 0,0 0,-0.1 0,-0.1 0,-7.1 -5.6,-12.6 -12.5,-12.6 z" id="path13" inkscape:connector-curvature="0" style="fill:#2c2b2b"/></g></svg>

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

After

Width:  |  Height:  |  Size: 40 KiB

19
resources/snelstart.svg Normal file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 59 KiB

BIN
resources/squarespace.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

BIN
resources/terraform.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

83
resources/tiktok.svg Normal file
View File

@ -0,0 +1,83 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="500px" height="145.6895px" viewBox="0 0 1000 291.379" enable-background="new 0 0 1000 291.379" xml:space="preserve" data-darkreader-mode="filter">
<head xmlns=""><style id="dark-reader-style" class="darkreader">@media screen {
/* Leading rule */
html {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
/* Reverse rule */
img,
video,
:not(object):not(body)&gt;embed,
object,
svg image,
[style*="background:url"],
[style*="background-image:url"],
[style*="background: url"],
[style*="background-image: url"],
[background],
twitterwidget,
.sr-reader,
.sr-backdrop {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
[style*="background:url"] *,
[style*="background-image:url"] *,
[style*="background: url"] *,
[style*="background-image: url"] *,
input,
[background] *,
img[src^="https://s0.wp.com/latex.php"],
twitterwidget .NaturalImage-image {
-webkit-filter: none !important;
filter: none !important;
}
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
/* Text contrast */
html {
text-shadow: 0 0 0 !important;
}
/* Full screen */
:-webkit-full-screen, :-webkit-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:-moz-full-screen, :-moz-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:fullscreen, :fullscreen * {
-webkit-filter: none !important;
filter: none !important;
}
/* Page background */
html {
background: rgb(0,0,0) !important;
}
/* Custom rules */
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
}</style></head><g>
<path fill="#FF004F" d="M191.102,105.182c18.814,13.442,41.862,21.351,66.755,21.351V78.656c-4.711,0.001-9.41-0.49-14.019-1.466 v37.686c-24.891,0-47.936-7.909-66.755-21.35v97.703c0,48.876-39.642,88.495-88.54,88.495c-18.245,0-35.203-5.513-49.29-14.968 c16.078,16.431,38.5,26.624,63.306,26.624c48.901,0,88.545-39.619,88.545-88.497v-97.701H191.102z M208.396,56.88 c-9.615-10.499-15.928-24.067-17.294-39.067v-6.158h-13.285C181.161,30.72,192.567,47.008,208.396,56.88L208.396,56.88z M70.181,227.25c-5.372-7.04-8.275-15.652-8.262-24.507c0-22.354,18.132-40.479,40.502-40.479 c4.169-0.001,8.313,0.637,12.286,1.897v-48.947c-4.643-0.636-9.329-0.906-14.013-0.807v38.098c-3.976-1.26-8.122-1.9-12.292-1.896 c-22.37,0-40.501,18.123-40.501,40.48C47.901,206.897,56.964,220.583,70.181,227.25z"/>
<path d="M177.083,93.525c18.819,13.441,41.864,21.35,66.755,21.35V77.189c-13.894-2.958-26.194-10.215-35.442-20.309 c-15.83-9.873-27.235-26.161-30.579-45.225h-34.896v191.226c-0.079,22.293-18.18,40.344-40.502,40.344 c-13.154,0-24.84-6.267-32.241-15.975c-13.216-6.667-22.279-20.354-22.279-36.16c0-22.355,18.131-40.48,40.501-40.48 c4.286,0,8.417,0.667,12.292,1.896v-38.098c-48.039,0.992-86.674,40.224-86.674,88.474c0,24.086,9.621,45.921,25.236,61.875 c14.087,9.454,31.045,14.968,49.29,14.968c48.899,0,88.54-39.621,88.54-88.496V93.525L177.083,93.525z"/>
<path fill="#00F2EA" d="M243.838,77.189V66.999c-12.529,0.019-24.812-3.488-35.442-10.12 C217.806,67.176,230.197,74.276,243.838,77.189z M177.817,11.655c-0.319-1.822-0.564-3.656-0.734-5.497V0h-48.182v191.228 c-0.077,22.29-18.177,40.341-40.501,40.341c-6.554,0-12.742-1.555-18.222-4.318c7.401,9.707,19.087,15.973,32.241,15.973 c22.32,0,40.424-18.049,40.502-40.342V11.655H177.817z M100.694,114.408V103.56c-4.026-0.55-8.085-0.826-12.149-0.824 C39.642,102.735,0,142.356,0,191.228c0,30.64,15.58,57.643,39.255,73.527c-15.615-15.953-25.236-37.789-25.236-61.874 C14.019,154.632,52.653,115.4,100.694,114.408z"/>
<path fill="#FF004F" d="M802.126,239.659c34.989,0,63.354-28.136,63.354-62.84c0-34.703-28.365-62.844-63.354-62.844h-9.545 c34.99,0,63.355,28.14,63.355,62.844s-28.365,62.84-63.355,62.84H802.126z"/>
<path fill="#00F2EA" d="M791.716,113.975h-9.544c-34.988,0-63.358,28.14-63.358,62.844s28.37,62.84,63.358,62.84h9.544 c-34.993,0-63.358-28.136-63.358-62.84C728.357,142.116,756.723,113.975,791.716,113.975z"/>
<path d="M310.062,85.572v31.853h37.311v121.374h37.326V118.285h30.372l10.414-32.712H310.062z M615.544,85.572v31.853h37.311 v121.374h37.326V118.285h30.371l10.413-32.712H615.544z M432.434,103.648c0-9.981,8.146-18.076,18.21-18.076 c10.073,0,18.228,8.095,18.228,18.076c0,9.982-8.15,18.077-18.228,18.077C440.58,121.72,432.434,113.63,432.434,103.648z M432.434,134.641h36.438v104.158h-36.438V134.641z M484.496,85.572v153.226h36.452v-39.594l11.283-10.339l35.577,50.793h39.05 l-51.207-74.03l45.997-44.768h-44.258l-36.442,36.153V85.572H484.496z M877.623,85.572v153.226h36.457v-39.594l11.278-10.339 l35.587,50.793H1000l-51.207-74.03l45.995-44.768h-44.256l-36.452,36.153V85.572H877.623z"/>
<path d="M792.578,239.659c34.988,0,63.358-28.136,63.358-62.84c0-34.703-28.37-62.844-63.358-62.844h-0.865 c-34.99,0-63.355,28.14-63.355,62.844s28.365,62.84,63.355,62.84H792.578z M761.336,176.819c0-16.881,13.8-30.555,30.817-30.555 c17.005,0,30.804,13.674,30.804,30.555s-13.799,30.563-30.804,30.563C775.136,207.379,761.336,193.7,761.336,176.819z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

BIN
resources/trello.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

77
resources/vimeo.svg Normal file
View File

@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" height="20" width="70" style="fill:#1ab7ea" id="svg2" data-darkreader-mode="filter">
<head xmlns=""><style id="dark-reader-style" class="darkreader">@media screen {
/* Leading rule */
html {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
/* Reverse rule */
img,
video,
:not(object):not(body)&gt;embed,
object,
svg image,
[style*="background:url"],
[style*="background-image:url"],
[style*="background: url"],
[style*="background-image: url"],
[background],
twitterwidget,
.sr-reader,
.sr-backdrop {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
[style*="background:url"] *,
[style*="background-image:url"] *,
[style*="background: url"] *,
[style*="background-image: url"] *,
input,
[background] *,
img[src^="https://s0.wp.com/latex.php"],
twitterwidget .NaturalImage-image {
-webkit-filter: none !important;
filter: none !important;
}
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
/* Text contrast */
html {
text-shadow: 0 0 0 !important;
}
/* Full screen */
:-webkit-full-screen, :-webkit-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:-moz-full-screen, :-moz-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:fullscreen, :fullscreen * {
-webkit-filter: none !important;
filter: none !important;
}
/* Page background */
html {
background: rgb(0,0,0) !important;
}
/* Custom rules */
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
}</style></head><path d="m 15.72,9.431 c -0.069,1.514 -1.127,3.588 -3.172,6.22 -2.114,2.749 -3.903,4.124 -5.367,4.124 -0.906,0 -1.673,-0.837 -2.3,-2.512 C 4.463,15.728 4.044,14.194 3.626,12.659 3.161,10.985 2.662,10.147 2.128,10.147 c -0.116,0 -0.524,0.245 -1.221,0.733 L 0.176,9.937 C 0.943,9.263 1.7,8.588 2.445,7.912 3.469,7.028 4.237,6.562 4.75,6.515 5.96,6.399 6.705,7.227 6.985,8.998 c 0.302,1.912 0.511,3.101 0.628,3.566 0.349,1.586 0.733,2.378 1.152,2.378 0.326,0 0.815,-0.515 1.467,-1.543 0.651,-1.029 1,-1.812 1.047,-2.349 0.093,-0.888 -0.256,-1.333 -1.047,-1.333 -0.373,0 -0.757,0.085 -1.151,0.255 0.764,-2.504 2.224,-3.721 4.38,-3.652 1.598,0.047 2.351,1.084 2.259,3.111" id="path4"/>
<path d="m 22.281,1.918 c -0.023,0.58 -0.314,1.136 -0.874,1.669 -0.628,0.602 -1.373,0.903 -2.234,0.903 -1.327,0 -1.968,-0.579 -1.921,-1.737 0.022,-0.602 0.378,-1.182 1.064,-1.738 0.687,-0.555 1.449,-0.834 2.288,-0.834 0.489,0 0.896,0.192 1.223,0.574 0.325,0.382 0.477,0.77 0.454,1.163 z m 3.038,12.419 c -0.652,1.232 -1.548,2.349 -2.689,3.349 -1.56,1.349 -3.119,2.024 -4.679,2.024 -0.723,0 -1.275,-0.233 -1.659,-0.699 -0.384,-0.465 -0.565,-1.069 -0.541,-1.814 0.022,-0.767 0.261,-1.954 0.715,-3.56 0.454,-1.605 0.682,-2.466 0.682,-2.582 0,-0.605 -0.21,-0.908 -0.629,-0.908 -0.139,0 -0.536,0.245 -1.188,0.733 L 14.528,9.937 c 0.745,-0.674 1.49,-1.349 2.235,-2.025 1.001,-0.884 1.746,-1.35 2.236,-1.397 0.768,-0.069 1.332,0.157 1.693,0.679 0.36,0.523 0.494,1.2 0.402,2.035 -0.303,1.415 -0.629,3.212 -0.978,5.392 -0.024,0.998 0.337,1.496 1.082,1.496 0.326,0 0.908,-0.344 1.746,-1.033 0.699,-0.574 1.269,-1.114 1.712,-1.62 l 0.663,0.873" id="path6"/>
<path d="m 47.127,14.336 c -0.652,1.233 -1.548,2.349 -2.689,3.349 -1.56,1.349 -3.12,2.024 -4.679,2.024 -1.514,0 -2.247,-0.837 -2.2,-2.513 0.022,-0.745 0.168,-1.639 0.436,-2.686 0.267,-1.048 0.413,-1.862 0.436,-2.444 0.024,-0.883 -0.245,-1.326 -0.806,-1.326 -0.607,0 -1.331,0.722 -2.172,2.165 -0.887,1.514 -1.367,2.98 -1.436,4.4 -0.05,1.002 0.05,1.77 0.293,2.305 -1.624,0.047 -2.762,-0.221 -3.411,-0.803 -0.582,-0.512 -0.848,-1.361 -0.801,-2.549 0.02,-0.745 0.136,-1.49 0.343,-2.235 0.205,-0.745 0.319,-1.408 0.342,-1.991 0.05,-0.861 -0.268,-1.292 -0.944,-1.292 -0.583,0 -1.213,0.664 -1.888,1.991 -0.676,1.326 -1.049,2.712 -1.119,4.155 -0.05,1.305 0.04,2.212 0.25,2.724 -1.598,0.047 -2.733,-0.29 -3.404,-1.01 -0.558,-0.603 -0.812,-1.52 -0.765,-2.751 0.02,-0.603 0.129,-1.445 0.321,-2.524 0.192,-1.08 0.299,-1.921 0.321,-2.525 0.05,-0.417 -0.06,-0.627 -0.314,-0.627 -0.14,0 -0.536,0.236 -1.188,0.707 L 21.215,9.937 c 0.117,-0.092 0.849,-0.768 2.2,-2.025 0.978,-0.907 1.641,-1.373 1.99,-1.396 0.606,-0.047 1.094,0.203 1.467,0.75 0.372,0.547 0.559,1.182 0.559,1.903 0,0.233 -0.02,0.454 -0.07,0.664 0.349,-0.535 0.756,-1.002 1.222,-1.398 1.071,-0.93 2.27,-1.455 3.597,-1.571 1.141,-0.093 1.955,0.174 2.445,0.803 0.395,0.512 0.581,1.246 0.558,2.2 0.163,-0.139 0.338,-0.291 0.525,-0.454 0.534,-0.628 1.058,-1.128 1.57,-1.501 0.861,-0.629 1.759,-0.978 2.689,-1.048 1.118,-0.093 1.921,0.173 2.41,0.8 0.418,0.51 0.605,1.241 0.559,2.191 -0.024,0.65 -0.181,1.595 -0.472,2.836 -0.292,1.241 -0.436,1.953 -0.436,2.139 -0.024,0.488 0.023,0.824 0.139,1.009 0.117,0.186 0.395,0.278 0.838,0.278 0.326,0 0.907,-0.344 1.746,-1.034 0.698,-0.573 1.269,-1.113 1.712,-1.619 l 0.664,0.872" id="path8"/>
<path d="m 52.295,10.654 c 0.022,-0.625 -0.233,-0.938 -0.767,-0.938 -0.698,0 -1.407,0.481 -2.127,1.442 -0.721,0.961 -1.093,1.882 -1.116,2.762 -0.013,0 -0.013,0.151 0,0.452 1.139,-0.417 2.127,-1.053 2.964,-1.911 0.674,-0.741 1.022,-1.344 1.046,-1.807 z m 7.927,3.646 c -0.675,1.117 -2.002,2.232 -3.981,3.348 -2.467,1.418 -4.971,2.126 -7.508,2.126 -1.885,0 -3.237,-0.628 -4.051,-1.885 -0.582,-0.861 -0.861,-1.885 -0.838,-3.072 0.023,-1.885 0.862,-3.677 2.515,-5.377 1.815,-1.862 3.957,-2.794 6.425,-2.794 2.282,0 3.492,0.93 3.632,2.787 0.093,1.184 -0.559,2.404 -1.956,3.658 -1.49,1.371 -3.365,2.241 -5.622,2.612 0.418,0.581 1.046,0.871 1.885,0.871 1.676,0 3.504,-0.426 5.483,-1.279 1.42,-0.599 2.538,-1.221 3.353,-1.866 l 0.663,0.871" id="path10"/>
<path d="m 65.755,11.828 c 0.023,-0.63 -0.064,-1.207 -0.262,-1.732 -0.198,-0.524 -0.484,-0.788 -0.855,-0.788 -1.188,0 -2.166,0.642 -2.933,1.925 -0.653,1.05 -1.003,2.17 -1.048,3.358 -0.024,0.584 0.081,1.098 0.314,1.54 0.255,0.514 0.616,0.77 1.083,0.77 1.047,0 1.944,-0.617 2.689,-1.854 0.628,-1.027 0.965,-2.1 1.012,-3.219 z m 3.946,0.132 c -0.093,2.139 -0.884,3.987 -2.374,5.544 -1.49,1.557 -3.342,2.336 -5.553,2.336 -1.839,0 -3.236,-0.593 -4.19,-1.779 -0.698,-0.883 -1.083,-1.987 -1.152,-3.311 -0.118,-2 0.604,-3.836 2.165,-5.51 1.676,-1.859 3.782,-2.789 6.32,-2.789 1.629,0 2.863,0.547 3.702,1.639 0.792,1 1.152,2.29 1.082,3.87" id="path12"/>
</svg>

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 19 KiB

BIN
resources/webrtc.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

84
resources/woocommerce.svg Normal file
View File

@ -0,0 +1,84 @@
<?xml version="1.0" encoding="UTF-8"?>
<svg preserveAspectRatio="xMidYMid" version="1.1" viewBox="0 0 256 153" xmlns="http://www.w3.org/2000/svg" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" data-darkreader-mode="filter">
<head xmlns=""><style id="dark-reader-style" class="darkreader">@media screen {
/* Leading rule */
html {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
/* Reverse rule */
img,
video,
:not(object):not(body)&gt;embed,
object,
svg image,
[style*="background:url"],
[style*="background-image:url"],
[style*="background: url"],
[style*="background-image: url"],
[background],
twitterwidget,
.sr-reader,
.sr-backdrop {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
[style*="background:url"] *,
[style*="background-image:url"] *,
[style*="background: url"] *,
[style*="background-image: url"] *,
input,
[background] *,
img[src^="https://s0.wp.com/latex.php"],
twitterwidget .NaturalImage-image {
-webkit-filter: none !important;
filter: none !important;
}
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
/* Text contrast */
html {
text-shadow: 0 0 0 !important;
}
/* Full screen */
:-webkit-full-screen, :-webkit-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:-moz-full-screen, :-moz-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:fullscreen, :fullscreen * {
-webkit-filter: none !important;
filter: none !important;
}
/* Page background */
html {
background: rgb(0,0,0) !important;
}
/* Custom rules */
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
}</style></head><title>WooCommerce Logo</title>
<metadata>
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<path d="m23.759 0h208.38c13.187 0 23.863 10.675 23.863 23.863v79.542c0 13.187-10.675 23.863-23.863 23.863h-74.727l10.257 25.118-45.109-25.118h-98.695c-13.187 0-23.863-10.675-23.863-23.863v-79.542c-0.10466-13.083 10.571-23.863 23.758-23.863z" fill="#7f54b3"/>
<path d="m14.578 21.75c1.4569-1.9772 3.6423-3.0179 6.5561-3.226 5.3073-0.41626 8.3252 2.0813 9.0537 7.4927 3.226 21.75 6.7642 40.169 10.511 55.259l22.79-43.395c2.0813-3.9545 4.6829-6.0358 7.8049-6.2439 4.5789-0.3122 7.3886 2.6016 8.5333 8.7415 2.6016 13.841 5.9317 25.6 9.8862 35.59 2.7057-26.433 7.2846-45.476 13.737-57.236 1.561-2.9138 3.8504-4.3707 6.8683-4.5789 2.3935-0.20813 4.5789 0.52033 6.5561 2.0813 1.9772 1.561 3.0179 3.5382 3.226 5.9317 0.10406 1.8732-0.20813 3.4341-1.0407 4.9951-4.0585 7.4927-7.3886 20.085-10.094 37.567-2.6016 16.963-3.5382 30.179-2.9138 39.649 0.20813 2.6016-0.20813 4.8911-1.2488 6.8683-1.2488 2.2894-3.122 3.5382-5.5154 3.7463-2.7057 0.20813-5.5154-1.0406-8.2211-3.8504-9.678-9.8862-17.379-24.663-22.998-44.332-6.7642 13.32-11.759 23.311-14.985 29.971-6.1398 11.759-11.343 17.795-15.714 18.107-2.8098 0.20813-5.2033-2.1854-7.2846-7.1805-5.3073-13.633-11.031-39.961-17.171-78.985-0.41626-2.7057 0.20813-5.0992 1.665-6.9724zm223.64 16.338c-3.7463-6.5561-9.2618-10.511-16.65-12.072-1.9772-0.41626-3.8504-0.62439-5.6195-0.62439-9.9902 0-18.107 5.2033-24.455 15.61-5.4114 8.8455-8.1171 18.628-8.1171 29.346 0 8.013 1.665 14.881 4.9951 20.605 3.7463 6.5561 9.2618 10.511 16.65 12.072 1.9772 0.41626 3.8504 0.62439 5.6195 0.62439 10.094 0 18.211-5.2033 24.455-15.61 5.4114-8.9496 8.1171-18.732 8.1171-29.45 0.10406-8.1171-1.665-14.881-4.9951-20.501zm-13.112 28.826c-1.4569 6.8683-4.0585 11.967-7.9089 15.402-3.0179 2.7057-5.8276 3.8504-8.4293 3.3301-2.4976-0.52033-4.5789-2.7057-6.1398-6.7642-1.2488-3.226-1.8732-6.452-1.8732-9.4699 0-2.6016 0.20813-5.2033 0.72846-7.5967 0.93659-4.2667 2.7057-8.4293 5.5154-12.384 3.4341-5.0992 7.0764-7.1805 10.823-6.452 2.4976 0.52033 4.5789 2.7057 6.1398 6.7642 1.2488 3.226 1.8732 6.452 1.8732 9.4699 0 2.7057-0.20813 5.3073-0.72846 7.7008zm-52.033-28.826c-3.7463-6.5561-9.3659-10.511-16.65-12.072-1.9772-0.41626-3.8504-0.62439-5.6195-0.62439-9.9902 0-18.107 5.2033-24.455 15.61-5.4114 8.8455-8.1171 18.628-8.1171 29.346 0 8.013 1.665 14.881 4.9951 20.605 3.7463 6.5561 9.2618 10.511 16.65 12.072 1.9772 0.41626 3.8504 0.62439 5.6195 0.62439 10.094 0 18.211-5.2033 24.455-15.61 5.4114-8.9496 8.1171-18.732 8.1171-29.45 0-8.1171-1.665-14.881-4.9951-20.501zm-13.216 28.826c-1.4569 6.8683-4.0585 11.967-7.9089 15.402-3.0179 2.7057-5.8276 3.8504-8.4293 3.3301-2.4976-0.52033-4.5789-2.7057-6.1398-6.7642-1.2488-3.226-1.8732-6.452-1.8732-9.4699 0-2.6016 0.20813-5.2033 0.72846-7.5967 0.93658-4.2667 2.7057-8.4293 5.5154-12.384 3.4341-5.0992 7.0764-7.1805 10.823-6.452 2.4976 0.52033 4.5789 2.7057 6.1398 6.7642 1.2488 3.226 1.8732 6.452 1.8732 9.4699 0.10406 2.7057-0.20813 5.3073-0.72846 7.7008z" fill="#fff"/>
</svg>

After

Width:  |  Height:  |  Size: 4.9 KiB

BIN
resources/youtube.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 320 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

84
resources/zoom.svg Normal file
View File

@ -0,0 +1,84 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" inkscape:version="0.92.4 (5da689c313, 2019-01-14)" sodipodi:docname="Zoom_2011.svg" id="svg835" version="1.1" height="224.72337" width="1000" data-darkreader-mode="filter">
<head xmlns=""><style id="dark-reader-style" class="darkreader">@media screen {
/* Leading rule */
html {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
/* Reverse rule */
img,
video,
:not(object):not(body)&gt;embed,
object,
svg image,
[style*="background:url"],
[style*="background-image:url"],
[style*="background: url"],
[style*="background-image: url"],
[background],
twitterwidget,
.sr-reader,
.sr-backdrop {
-webkit-filter: invert(100%) hue-rotate(180deg) !important;
filter: invert(100%) hue-rotate(180deg) !important;
}
[style*="background:url"] *,
[style*="background-image:url"] *,
[style*="background: url"] *,
[style*="background-image: url"] *,
input,
[background] *,
img[src^="https://s0.wp.com/latex.php"],
twitterwidget .NaturalImage-image {
-webkit-filter: none !important;
filter: none !important;
}
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
/* Text contrast */
html {
text-shadow: 0 0 0 !important;
}
/* Full screen */
:-webkit-full-screen, :-webkit-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:-moz-full-screen, :-moz-full-screen * {
-webkit-filter: none !important;
filter: none !important;
}
:fullscreen, :fullscreen * {
-webkit-filter: none !important;
filter: none !important;
}
/* Page background */
html {
background: rgb(0,0,0) !important;
}
/* Custom rules */
.compatibility-with-darkreader-below-4-3-3 {
background: white !important;
}
}</style></head><metadata id="metadata841">
<rdf:RDF>
<cc:Work rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/>
<dc:title/>
</cc:Work>
</rdf:RDF>
</metadata>
<defs id="defs839"/>
<sodipodi:namedview inkscape:current-layer="svg835" inkscape:window-maximized="1" inkscape:window-y="-8" inkscape:window-x="1912" inkscape:cy="-314.24417" inkscape:cx="948.1979" inkscape:zoom="0.49497475" showgrid="false" id="namedview837" inkscape:window-height="1017" inkscape:window-width="1920" inkscape:pageshadow="2" inkscape:pageopacity="0" guidetolerance="10" gridtolerance="10" objecttolerance="10" borderopacity="1" inkscape:document-rotation="0" bordercolor="#666666" pagecolor="#ffffff" fit-margin-top="0" fit-margin-left="0" fit-margin-right="0" fit-margin-bottom="0"/>
<path inkscape:connector-curvature="0" id="path833" d="m 814.1856,67.388717 c 3.82247,6.59494 5.07303,14.0983 5.48595,22.53368 l 0.5427,11.243253 v 78.62013 l 0.55449,11.25504 c 1.10899,18.38088 14.66459,31.97188 33.18704,33.12806 l 11.19606,0.55449 V 101.16565 l 0.55449,-11.243253 c 0.46011,-8.341 1.69888,-15.98593 5.58033,-22.62806 a 44.902197,44.902197 0 0 1 77.74711,0.14157 c 3.82246,6.59494 5.01403,14.23987 5.47415,22.48649 l 0.55449,11.207863 v 78.65552 l 0.55449,11.25504 c 1.15618,18.47526 14.60561,32.06626 33.18705,33.12806 L 1000,224.72337 V 89.922397 A 89.898775,89.898775 0 0 0 910.13662,0.02362708 89.662821,89.662821 0 0 0 842.71254,30.473587 89.780798,89.780798 0 0 0 775.28845,0.01182708 c -18.66402,0 -35.9831,5.66292002 -50.32915,15.44323992 C 716.20538,5.6865371 696.62113,0.01182708 685.37788,0.01182708 V 224.72337 l 11.24325,-0.55449 c 18.80559,-1.23877 32.39659,-14.46403 33.12805,-33.12806 l 0.60168,-11.25504 v -78.62013 l 0.5545,-11.243253 c 0.47191,-8.48257 1.65168,-15.93874 5.48595,-22.58087 a 45.020174,45.020174 0 0 1 38.89714,-22.39211 44.949388,44.949388 0 0 1 38.89715,22.4393 z M 44.93759,224.18067 l 11.243246,0.5427 H 224.71155 l -0.5545,-11.20785 c -1.52191,-18.47526 -14.6056,-31.97188 -33.13985,-33.17525 l -11.24324,-0.55449 H 78.667327 L 213.4683,44.937617 212.91381,33.741567 C 212.04077,15.077537 198.40259,1.5927271 179.77396,0.56631708 l -11.24325,-0.5073 L 0,0.01182708 0.55449376,11.255077 C 2.0292112,29.553367 15.301668,43.333127 33.682546,44.394927 l 11.255044,0.55449 H 146.04422 L 11.243246,179.79758 11.79774,191.04082 c 1.108987,18.52245 14.475826,31.93648 33.13985,33.12806 z M 641.26613,32.903927 a 112.34987,112.34987 0 0 1 0,158.903753 112.43246,112.43246 0 0 1 -158.93914,0 c -43.8758,-43.8758 -43.8758,-115.027963 0,-158.903753 A 112.29089,112.29089 0 0 1 561.72577,2.7082708e-5 112.37347,112.37347 0 0 1 641.26613,32.915727 Z m -31.7949,31.8185 a 67.447677,67.447677 0 0 1 0,95.349333 67.447677,67.447677 0 0 1 -95.34934,0 67.447677,67.447677 0 0 1 0,-95.349333 67.447677,67.447677 0 0 1 95.34934,0 z M 325.91256,2.7082708e-5 A 112.29089,112.29089 0 0 1 405.31134,32.915727 c 43.88759,43.86399 43.88759,115.027953 0,158.891953 a 112.43246,112.43246 0 0 1 -158.93914,0 c -43.8758,-43.8758 -43.8758,-115.027963 0,-158.903753 A 112.29089,112.29089 0 0 1 325.77098,2.7082708e-5 Z M 373.51643,64.698837 a 67.447677,67.447677 0 0 1 0,95.361123 67.447677,67.447677 0 0 1 -95.34933,0 67.447677,67.447677 0 0 1 0,-95.349333 67.447677,67.447677 0 0 1 95.34933,0 z" style="fill:#2d8cff;fill-rule:evenodd;stroke-width:11.79773998"/>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB