Add internet explorer support
|
@ -43,7 +43,7 @@
|
||||||
<p class="subtitle">Get to know the talented programmers making this possible</p>
|
<p class="subtitle">Get to know the talented programmers making this possible</p>
|
||||||
<div class="personContainer">
|
<div class="personContainer">
|
||||||
<div class="person">
|
<div class="person">
|
||||||
<img src="/static/img/maaa.webp" alt="Maaa's profile picture" class="profile">
|
<img src="/static/img/maaa.png" alt="Maaa's profile picture" class="profile">
|
||||||
<h2>maaa</h2>
|
<h2>maaa</h2>
|
||||||
<p>Co-Founder</p>
|
<p>Co-Founder</p>
|
||||||
<p>Maaa is an experienced full-stack developer and the primary designer and developer of most of the Burger- brand websites</p>
|
<p>Maaa is an experienced full-stack developer and the primary designer and developer of most of the Burger- brand websites</p>
|
||||||
|
|
|
@ -34,7 +34,8 @@
|
||||||
<p>Donate using Stripe</p>
|
<p>Donate using Stripe</p>
|
||||||
<script async src="https://js.stripe.com/v3/buy-button.js"></script>
|
<script async src="https://js.stripe.com/v3/buy-button.js"></script>
|
||||||
<stripe-buy-button buy-button-id="buy_btn_1NopvkFdJPyNGPx53QKxpTDm" publishable-key="pk_live_51NoSUtFdJPyNGPx50X0MQi5UJjSmVwxDTkgVNwVMbaP1nX31MMwDGxgpw8RSFt8nKxBDNJuRbPIn38MaeguXphvb00EwntFyfn"></stripe-buy-button>
|
<stripe-buy-button buy-button-id="buy_btn_1NopvkFdJPyNGPx53QKxpTDm" publishable-key="pk_live_51NoSUtFdJPyNGPx50X0MQi5UJjSmVwxDTkgVNwVMbaP1nX31MMwDGxgpw8RSFt8nKxBDNJuRbPIn38MaeguXphvb00EwntFyfn"></stripe-buy-button>
|
||||||
<noscript><a href="https://donate.stripe.com/7sI6pJ2cz31K29G8ww">Donate</a></noscript>
|
<noscript><a class="button buyButton">Go to Stripe</a></noscript>
|
||||||
|
<div class="ieOnly"><a class="button buyButton" href="https://stripe.com">Go to Stripe</a></div>
|
||||||
</div>
|
</div>
|
||||||
<footer>
|
<footer>
|
||||||
<img src="/static/svg/ailur.svg" alt="The Ailur logo">
|
<img src="/static/svg/ailur.svg" alt="The Ailur logo">
|
||||||
|
|
|
@ -65,7 +65,7 @@
|
||||||
<a href="https://git.ailur.dev/ailur/fulgens" class="button unimportant">See the source code</a>
|
<a href="https://git.ailur.dev/ailur/fulgens" class="button unimportant">See the source code</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<img src="/static/img/dashboard.png" alt="The Fulgens Dashboard">
|
<div class="dashboard"></div>
|
||||||
</div><div class="callToAction">
|
</div><div class="callToAction">
|
||||||
<div class="image parallax"></div>
|
<div class="image parallax"></div>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
|
|
@ -5,7 +5,6 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.background {
|
.background {
|
||||||
filter: brightness(50%);
|
|
||||||
height: 600px;
|
height: 600px;
|
||||||
|
|
||||||
background-image: url("/static/img/background.png");
|
background-image: url("/static/img/background.png");
|
||||||
|
@ -45,5 +44,5 @@ body {
|
||||||
.philosophyDiv {
|
.philosophyDiv {
|
||||||
padding: 50px;
|
padding: 50px;
|
||||||
margin: 50px 15vw;
|
margin: 50px 15vw;
|
||||||
background-color: var(--foreground-1);
|
background-color: #EBEBEB;
|
||||||
}
|
}
|
|
@ -4,23 +4,12 @@
|
||||||
font-style: normal;
|
font-style: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
:root {
|
|
||||||
--theme-color: #1c71d8;
|
|
||||||
--hover-theme-color: #4990e7;
|
|
||||||
--hover-unimportant-theme-color: #dbdbdb;
|
|
||||||
--background: #fff;
|
|
||||||
--text-color: #000;
|
|
||||||
--gradient: #F8FAFC;
|
|
||||||
--foreground-1: #EBEBEB;
|
|
||||||
--foreground-2: #DCDCDC;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1, h2 {
|
h1, h2 {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
background-color: var(--theme-color);
|
background-color: #1c71d8;
|
||||||
color: white;
|
color: white;
|
||||||
padding: 0.75em 1.25em;
|
padding: 0.75em 1.25em;
|
||||||
border: none;
|
border: none;
|
||||||
|
@ -30,22 +19,22 @@ h1, h2 {
|
||||||
|
|
||||||
.button:hover {
|
.button:hover {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
background-color: var(--hover-theme-color);
|
background-color: #4990e7;
|
||||||
transition: all 0.3s ease 0s;
|
transition: all 0.3s ease 0s;
|
||||||
}
|
}
|
||||||
|
|
||||||
.unimportant {
|
.unimportant {
|
||||||
background-color: var(--foreground-1);
|
background-color: #EBEBEB;
|
||||||
color: #000;
|
color: #000;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
}
|
}
|
||||||
|
|
||||||
.unimportant:hover {
|
.unimportant:hover {
|
||||||
background-color: var(--hover-unimportant-theme-color);
|
background-color: #dbdbdb;
|
||||||
}
|
}
|
||||||
|
|
||||||
.subtext {
|
.subtext {
|
||||||
color: var(--theme-color);
|
color: #1c71d8;
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
font-size: 17px;
|
font-size: 17px;
|
||||||
|
@ -60,20 +49,23 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
nav {
|
nav {
|
||||||
background-color: var(--background);
|
background-color: #fff;
|
||||||
padding: 20px 30px 20px 30px;
|
padding: 20px 30px 20px 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav .bar {
|
nav .bar {
|
||||||
background: linear-gradient(135deg, var(--gradient) 0%,var(--foreground-2) 100%);
|
background: #F8FAFC;
|
||||||
|
background: -ms-linear-gradient(135deg, #F8FAFC 0%,#DCDCDC 100%);
|
||||||
|
background: linear-gradient(135deg, #F8FAFC 0%,#DCDCDC 100%);
|
||||||
border-radius: 22px;
|
border-radius: 22px;
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav img {
|
nav img {
|
||||||
max-height: 20px;
|
max-height: 40px;
|
||||||
scale: 2;
|
max-width: 40px;
|
||||||
|
margin: -10px -10px -10px -10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
nav div .links {
|
nav div .links {
|
||||||
|
@ -88,7 +80,7 @@ nav div .links a {
|
||||||
|
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: var(--text-color);
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
|
@ -101,7 +93,7 @@ a:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
.titleBlock {
|
.titleBlock {
|
||||||
background-color: var(--foreground-1);
|
background-color: #EBEBEB;
|
||||||
margin: 0 30px 0 30px;
|
margin: 0 30px 0 30px;
|
||||||
padding: 25px 0 25px 25px;
|
padding: 25px 0 25px 25px;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
|
@ -124,7 +116,7 @@ a:hover {
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
background-color: var(--background);
|
background-color: #fff;
|
||||||
padding: 80px 50px 25px 50px;
|
padding: 80px 50px 25px 50px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -139,6 +131,7 @@ footer a {
|
||||||
footer img {
|
footer img {
|
||||||
margin: 0 auto 10px 0;
|
margin: 0 auto 10px 0;
|
||||||
max-height: 100px;
|
max-height: 100px;
|
||||||
|
max-width: 100px;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer .title {
|
footer .title {
|
||||||
|
@ -149,9 +142,19 @@ footer .title {
|
||||||
|
|
||||||
footer .disclaimer {
|
footer .disclaimer {
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
filter: invert(100%);
|
color: #fff;
|
||||||
background-color: var(--background);
|
background-color: #000;
|
||||||
padding: 20px 20px 20px 20px;
|
padding: 20px 20px 20px 20px;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
||||||
|
nav div .links a, footer .title {
|
||||||
|
font-weight: lighter;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1, h2, .subtext {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
}
|
|
@ -4,8 +4,8 @@ body {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact p, .contact img, .contact h2 {
|
.contact p, .contact h2 {
|
||||||
filter: invert(100%);
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact .buttons {
|
.contact .buttons {
|
||||||
|
@ -13,11 +13,13 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact img {
|
.contact img {
|
||||||
max-height: 48px;
|
height: 48px;
|
||||||
|
width: 48px;
|
||||||
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contact {
|
.contact {
|
||||||
background-color: var(--theme-color);
|
background-color: #1c71d8;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
margin: 0 15vw 0 15vw;
|
margin: 0 15vw 0 15vw;
|
||||||
padding: 50px;
|
padding: 50px;
|
||||||
|
|
|
@ -18,7 +18,7 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.blockContainer .contactMethods div {
|
.blockContainer .contactMethods div {
|
||||||
background-color: var(--foreground-1);
|
background-color: #EBEBEB;
|
||||||
width: 320px;
|
width: 320px;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
@ -34,7 +34,7 @@ body {
|
||||||
.blockContainer .peopleDiv {
|
.blockContainer .peopleDiv {
|
||||||
margin-top: 50px;
|
margin-top: 50px;
|
||||||
padding-bottom: 50px;
|
padding-bottom: 50px;
|
||||||
background-color: var(--foreground-1);
|
background-color: #EBEBEB;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blockContainer .peopleDiv .subtext {
|
.blockContainer .peopleDiv .subtext {
|
||||||
|
|
|
@ -21,3 +21,18 @@ body {
|
||||||
font-size: 50px;
|
font-size: 50px;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.buyButton {
|
||||||
|
width: 100px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ieOnly {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
||||||
|
.ieOnly {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
|
@ -2,7 +2,6 @@
|
||||||
|
|
||||||
.background {
|
.background {
|
||||||
background-image: url("/static/img/skyscrapers.jpg");
|
background-image: url("/static/img/skyscrapers.jpg");
|
||||||
filter: brightness(50%);
|
|
||||||
height: 500px;
|
height: 500px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -14,8 +13,8 @@ body {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blockContainer h2, .blockContainer p {
|
.blockContainer h2, .blockContainer p, .blockContainer a {
|
||||||
filter: invert(100%);
|
color: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blockContainer h2 {
|
.blockContainer h2 {
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
@import "common.css";
|
@import "common.css";
|
||||||
|
|
||||||
.background {
|
.background {
|
||||||
filter: brightness(50%);
|
|
||||||
height: 350px;
|
height: 350px;
|
||||||
background-position: bottom;
|
background-position: bottom;
|
||||||
background-image: url("/static/img/background.png");
|
background-image: url("/static/img/background.png");
|
||||||
|
@ -16,11 +15,13 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.welcome h1 {
|
.welcome h1 {
|
||||||
|
font-size: 60px;
|
||||||
font-size: clamp(20px, 60px, 12vw);
|
font-size: clamp(20px, 60px, 12vw);
|
||||||
margin: 65px 0 0 0;
|
margin: 65px 0 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.welcome p {
|
.welcome p {
|
||||||
|
font-size: 20px;
|
||||||
font-size: clamp(5px, 20px, 3.3vw);
|
font-size: clamp(5px, 20px, 3.3vw);
|
||||||
width: 29em;
|
width: 29em;
|
||||||
margin: 10px auto 0 auto;
|
margin: 10px auto 0 auto;
|
||||||
|
@ -40,7 +41,7 @@
|
||||||
|
|
||||||
.services, .fulgens, .partners, .callToAction {
|
.services, .fulgens, .partners, .callToAction {
|
||||||
display: flex;
|
display: flex;
|
||||||
background-color: var(--background);
|
background-color: #fff;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
@ -64,7 +65,7 @@
|
||||||
.services .serviceGrid div {
|
.services .serviceGrid div {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
background-color: var(--foreground-1);
|
background-color: #EBEBEB;
|
||||||
padding: 40px;
|
padding: 40px;
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
width: 340px;
|
width: 340px;
|
||||||
|
@ -78,6 +79,8 @@
|
||||||
|
|
||||||
.services .serviceGrid img {
|
.services .serviceGrid img {
|
||||||
height: 48px;
|
height: 48px;
|
||||||
|
width: 48px;
|
||||||
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.services .serviceGrid p {
|
.services .serviceGrid p {
|
||||||
|
@ -91,7 +94,7 @@
|
||||||
|
|
||||||
.fulgens {
|
.fulgens {
|
||||||
padding: 20px 15vw 50px 15vw;
|
padding: 20px 15vw 50px 15vw;
|
||||||
background-color: var(--foreground-1);
|
background-color: #EBEBEB;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-evenly;
|
justify-content: space-evenly;
|
||||||
}
|
}
|
||||||
|
@ -102,9 +105,11 @@
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fulgens img {
|
.fulgens .dashboard {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
object-fit: cover;
|
background-size: cover;
|
||||||
|
background-position: center;
|
||||||
|
background-image: url("/static/img/dashboard.png");
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
margin: 0 0 0 20%;
|
margin: 0 0 0 20%;
|
||||||
}
|
}
|
||||||
|
@ -122,10 +127,11 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.fulgens div .buttons .unimportant {
|
.fulgens div .buttons .unimportant {
|
||||||
border: 1px solid var(--foreground-2);
|
border: 1px solid #DCDCDC;
|
||||||
}
|
}
|
||||||
|
|
||||||
.callToAction .image {
|
.callToAction .image {
|
||||||
|
top: 0;
|
||||||
background-image: url("/static/img/callToAction.jpg");
|
background-image: url("/static/img/callToAction.jpg");
|
||||||
height: 800px;
|
height: 800px;
|
||||||
}
|
}
|
||||||
|
@ -134,6 +140,7 @@
|
||||||
height: 800px;
|
height: 800px;
|
||||||
background: none;
|
background: none;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
.callToAction .content {
|
.callToAction .content {
|
||||||
|
@ -141,7 +148,7 @@
|
||||||
width: 70vw;
|
width: 70vw;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
background-color: var(--background);
|
background-color: #fff;
|
||||||
border-radius: 25px;
|
border-radius: 25px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
@ -164,5 +171,5 @@
|
||||||
|
|
||||||
.callToAction .content a {
|
.callToAction .content a {
|
||||||
margin: auto auto 40px auto;
|
margin: auto auto 40px auto;
|
||||||
width: fit-content;
|
width: 90px;
|
||||||
}
|
}
|
|
@ -9,7 +9,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.appContainer div {
|
.appContainer div {
|
||||||
background-color: var(--foreground-1);
|
background-color: #EBEBEB;
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
padding: 0 0 35px 0;
|
padding: 0 0 35px 0;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
@ -19,9 +19,9 @@
|
||||||
|
|
||||||
.appContainer div img {
|
.appContainer div img {
|
||||||
border-radius: 1em;
|
border-radius: 1em;
|
||||||
scale: 0.75;
|
padding: 20px;
|
||||||
padding: 32px;
|
|
||||||
background-color: white;
|
background-color: white;
|
||||||
height: 192px;
|
height: 152px;
|
||||||
width: 192px;
|
width: 152px;
|
||||||
|
margin: 35px;
|
||||||
}
|
}
|
||||||
|
|
Before Width: | Height: | Size: 4.7 MiB After Width: | Height: | Size: 3.3 MiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 2.7 KiB |
After Width: | Height: | Size: 83 KiB |
Before Width: | Height: | Size: 6.6 KiB |
Before Width: | Height: | Size: 192 KiB After Width: | Height: | Size: 116 KiB |
|
@ -59,25 +59,16 @@
|
||||||
<g
|
<g
|
||||||
filter="url(#filter0_d_3_63)"
|
filter="url(#filter0_d_3_63)"
|
||||||
id="g5">
|
id="g5">
|
||||||
<rect
|
<path
|
||||||
x="247"
|
id="rect5"
|
||||||
y="144"
|
style="fill:#f8fcfc"
|
||||||
width="152"
|
d="m 279,144 h 88 c 17.728,0 32,14.272 32,32 v 88 c 0,17.728 -14.272,32 -32,32 h -88 c -17.728,0 -32,-14.272 -32,-32 v -88 c 0,-17.728 14.272,-32 32,-32 z" />
|
||||||
height="152"
|
<path
|
||||||
rx="32"
|
d="m 323.44863,264.53651 q -15.16922,0 -24.29541,-8.87954 -9.00288,-9.00287 -9.00288,-26.26865 v -19.48567 q 0,-17.26578 9.00288,-26.14532 9.12619,-9.00287 24.29541,-9.00287 15.0459,0 22.93883,8.50956 8.01625,8.38624 8.01625,22.93882 v 0.61664 h -7.89293 v -0.86329 q 0,-10.60612 -5.67304,-17.26578 -5.54971,-6.78299 -17.38911,-6.78299 -11.96271,0 -18.7457,7.2763 -6.65966,7.27629 -6.65966,20.47228 v 19.97897 q 0,13.19599 6.65966,20.47229 6.78299,7.27629 18.7457,7.27629 11.8394,0 17.38911,-6.65966 5.67304,-6.78299 5.67304,-17.38911 v -1.8499 h 7.89293 v 1.60325 q 0,14.55259 -8.01625,23.06215 -7.89293,8.38623 -22.93883,8.38623 z"
|
||||||
fill="#f8fcfc"
|
id="text1"
|
||||||
id="rect5" />
|
style="font-weight:300;font-size:123.327px;line-height:0;font-family:'Space Grotesk';-inkscape-font-specification:'Space Grotesk Light';fill:#ff5555;stroke-width:1.71288;paint-order:stroke fill markers"
|
||||||
<text
|
transform="scale(1.0020323,0.99797186)"
|
||||||
xml:space="preserve"
|
aria-label="C" />
|
||||||
style="font-weight:800;font-size:134.847px;line-height:0;font-family:'JetBrains Mono';-inkscape-font-specification:'JetBrains Mono Ultra-Bold';text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;fill:#e54a4a;fill-opacity:1;stroke:none;stroke-width:1.87287;paint-order:stroke fill markers"
|
|
||||||
x="244.49826"
|
|
||||||
y="296.63989"
|
|
||||||
id="text2"
|
|
||||||
transform="scale(1.1287435,0.88594089)"><tspan
|
|
||||||
id="tspan2"
|
|
||||||
x="244.49826"
|
|
||||||
y="296.63989"
|
|
||||||
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:'JetBrains Mono';-inkscape-font-specification:'JetBrains Mono Light';fill:#ff5555;fill-opacity:1;stroke:none;stroke-width:1.87287">C</tspan></text>
|
|
||||||
</g>
|
</g>
|
||||||
<defs
|
<defs
|
||||||
id="defs17">
|
id="defs17">
|
||||||
|
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.4 KiB |
|
@ -1,44 +1,195 @@
|
||||||
<svg width="440" height="440" viewBox="0 0 440 440" fill="none" xmlns="http://www.w3.org/2000/svg">
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<rect width="440" height="440" fill="white"/>
|
<svg
|
||||||
<path d="M70 94C70 76.3269 84.3269 62 102 62H337C354.673 62 369 76.3269 369 94V132H70V94Z" fill="#71CCB9"/>
|
width="440"
|
||||||
<rect x="70" y="132" width="299" height="70" fill="#5EB5C7"/>
|
height="440"
|
||||||
<rect x="70" y="202" width="299" height="70" fill="#54A9CE"/>
|
viewBox="0 0 440 440"
|
||||||
<path d="M70 272H369V347C369 364.673 354.673 379 337 379H102C84.3269 379 70 364.673 70 347V272Z" fill="#3786E3"/>
|
fill="none"
|
||||||
<rect x="70" y="272" width="299" height="70" fill="#499CD5"/>
|
version="1.1"
|
||||||
<path d="M70 94C70 76.3269 84.3269 62 102 62H159V379H102C84.3269 379 70 364.673 70 347V94Z" fill="url(#paint0_linear_3_63)"/>
|
id="svg17"
|
||||||
<g filter="url(#filter0_d_3_63)">
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
<rect x="247" y="144" width="152" height="152" rx="32" fill="#F8FCFC"/>
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
</g>
|
<rect
|
||||||
<path d="M290.74 264V174.4H311.604L342.836 257.216H344.5V174.4H355.124V264H334.26L303.156 181.056H301.364V264H290.74Z" fill="#54A9CE"/>
|
width="440"
|
||||||
<path d="M94.4885 142.222C90.3665 142.764 87.6873 145.92 85.7551 149.412C83.1188 154.195 77.1077 159.274 69.6367 159.274C60.1562 159.274 52.462 152.657 52.462 144.48C52.462 136.304 60.1562 129.686 69.6367 129.686V110C51.0365 110.197 36 125.534 36 144.48C36 163.555 51.2168 179 69.9887 179C85.9097 179 98.7306 168.693 103.488 153.663C105.867 146.177 99.4605 141.59 94.4885 142.222Z" fill="url(#paint1_linear_3_63)"/>
|
height="440"
|
||||||
<path d="M94.4885 222.755C90.3665 223.289 87.6873 226.4 85.7551 229.84C83.1188 234.555 77.1077 239.56 69.6367 239.56C60.1562 239.56 52.462 233.038 52.462 224.981C52.462 216.923 60.1562 210.401 69.6367 210.401V191C51.0365 191.194 36 206.309 36 224.981C36 243.779 51.2168 259 69.9887 259C85.9097 259 98.7306 248.843 103.488 234.03C105.867 226.652 99.4605 222.133 94.4885 222.755Z" fill="url(#paint2_linear_3_63)"/>
|
fill="#ffffff"
|
||||||
<path d="M94.4885 305.222C90.3665 305.764 87.6873 308.92 85.7551 312.412C83.1188 317.195 77.1077 322.274 69.6367 322.274C60.1562 322.274 52.462 315.657 52.462 307.48C52.462 299.304 60.1562 292.686 69.6367 292.686V273C51.0365 273.197 36 288.534 36 307.48C36 326.555 51.2168 342 69.9887 342C85.9097 342 98.7306 331.693 103.488 316.663C105.867 309.177 99.4605 304.59 94.4885 305.222Z" fill="url(#paint3_linear_3_63)"/>
|
id="rect1"
|
||||||
<defs>
|
x="0"
|
||||||
<filter id="filter0_d_3_63" x="235" y="144" width="176" height="176" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
y="0" />
|
||||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
<path
|
||||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
d="M 70,94 C 70,76.3269 84.3269,62 102,62 h 235 c 17.673,0 32,14.3269 32,32 v 38 H 70 Z"
|
||||||
<feOffset dy="12"/>
|
fill="#71ccb9"
|
||||||
<feGaussianBlur stdDeviation="6"/>
|
id="path1" />
|
||||||
<feComposite in2="hardAlpha" operator="out"/>
|
<rect
|
||||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/>
|
x="70"
|
||||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3_63"/>
|
y="132"
|
||||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3_63" result="shape"/>
|
width="299"
|
||||||
</filter>
|
height="70"
|
||||||
<linearGradient id="paint0_linear_3_63" x1="114.5" y1="62" x2="114.5" y2="379" gradientUnits="userSpaceOnUse">
|
fill="#5eb5c7"
|
||||||
<stop stop-color="#A2D6DB"/>
|
id="rect2" />
|
||||||
<stop offset="1" stop-color="#6BB0B7"/>
|
<rect
|
||||||
</linearGradient>
|
x="70"
|
||||||
<linearGradient id="paint1_linear_3_63" x1="70" y1="110" x2="70" y2="179" gradientUnits="userSpaceOnUse">
|
y="202"
|
||||||
<stop stop-color="#A2D6DB"/>
|
width="299"
|
||||||
<stop offset="1" stop-color="#6BB0B7"/>
|
height="70"
|
||||||
</linearGradient>
|
fill="#54a9ce"
|
||||||
<linearGradient id="paint2_linear_3_63" x1="70" y1="191" x2="70" y2="259" gradientUnits="userSpaceOnUse">
|
id="rect3" />
|
||||||
<stop stop-color="#A2D6DB"/>
|
<path
|
||||||
<stop offset="1" stop-color="#6BB0B7"/>
|
d="m 70,272 h 299 v 75 c 0,17.673 -14.327,32 -32,32 H 102 C 84.3269,379 70,364.673 70,347 Z"
|
||||||
</linearGradient>
|
fill="#3786e3"
|
||||||
<linearGradient id="paint3_linear_3_63" x1="70" y1="273" x2="70" y2="342" gradientUnits="userSpaceOnUse">
|
id="path3" />
|
||||||
<stop stop-color="#A2D6DB"/>
|
<rect
|
||||||
<stop offset="1" stop-color="#6BB0B7"/>
|
x="70"
|
||||||
</linearGradient>
|
y="272"
|
||||||
</defs>
|
width="299"
|
||||||
|
height="70"
|
||||||
|
fill="#499cd5"
|
||||||
|
id="rect4" />
|
||||||
|
<g
|
||||||
|
filter="url(#filter0_d_3_63)"
|
||||||
|
id="g5">
|
||||||
|
<rect
|
||||||
|
x="247"
|
||||||
|
y="144"
|
||||||
|
width="152"
|
||||||
|
height="152"
|
||||||
|
rx="32"
|
||||||
|
fill="#f8fcfc"
|
||||||
|
id="rect5" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="M 70,94 C 70,76.3269 84.3269,62 102,62 h 57 V 379 H 102 C 84.3269,379 70,364.673 70,347 Z"
|
||||||
|
fill="url(#paint0_linear_3_63)"
|
||||||
|
id="path4"
|
||||||
|
style="fill:url(#paint0_linear_3_63)" />
|
||||||
|
<path
|
||||||
|
d="M 70,110.05859 C 52.162858,111.1076 38,126.09382 38,144.48047 38,163.55547 53.216381,179 71.988281,179 c 15.921,0 28.742599,-10.30789 33.499999,-25.33789 2.379,-7.486 -4.028,-12.07145 -8.999999,-11.43945 -4.122,0.542 -6.800222,3.69745 -8.732422,7.18945 -2.6363,4.783 -8.64814,9.86133 -16.11914,9.86133 -9.4805,0 -17.173828,-6.61597 -17.173828,-14.79297 0,-7.69968 6.823816,-14.0146 15.537109,-14.72461 z"
|
||||||
|
style="fill:url(#paint1_linear_3_63)"
|
||||||
|
id="path27" />
|
||||||
|
<path
|
||||||
|
d="M 70,191.05859 C 52.162858,192.09228 38,206.85973 38,224.98047 38,243.77847 53.216381,259 71.988281,259 c 15.921,0 28.742599,-10.1577 33.499999,-24.9707 2.379,-7.378 -4.028,-11.89544 -8.999999,-11.27344 -4.122,0.534 -6.800222,3.64398 -8.732422,7.08398 -2.6363,4.715 -8.64814,9.72071 -16.11914,9.72071 -9.4805,0 -17.173828,-6.52308 -17.173828,-14.58008 0,-7.58856 6.823816,-13.81006 15.537109,-14.50977 z"
|
||||||
|
style="fill:url(#paint2_linear_3_63)"
|
||||||
|
id="path25" />
|
||||||
|
<path
|
||||||
|
d="M 70,273.05859 C 52.162858,274.1076 38,289.09382 38,307.48047 38,326.55547 53.216381,342 71.988281,342 c 15.921,0 28.742599,-10.30789 33.499999,-25.33789 2.379,-7.486 -4.028,-12.07145 -8.999999,-11.43945 -4.122,0.542 -6.800222,3.69745 -8.732422,7.18945 -2.6363,4.783 -8.64814,9.86133 -16.11914,9.86133 -9.4805,0 -17.173828,-6.61597 -17.173828,-14.79297 0,-7.69968 6.823816,-14.0146 15.537109,-14.72461 z"
|
||||||
|
style="fill:url(#paint3_linear_3_63)"
|
||||||
|
id="path23" />
|
||||||
|
<defs
|
||||||
|
id="defs17">
|
||||||
|
<filter
|
||||||
|
id="filter0_d_3_63"
|
||||||
|
x="235"
|
||||||
|
y="144"
|
||||||
|
width="176"
|
||||||
|
height="176"
|
||||||
|
filterUnits="userSpaceOnUse"
|
||||||
|
color-interpolation-filters="sRGB">
|
||||||
|
<feFlood
|
||||||
|
flood-opacity="0"
|
||||||
|
result="BackgroundImageFix"
|
||||||
|
id="feFlood8" />
|
||||||
|
<feColorMatrix
|
||||||
|
in="SourceAlpha"
|
||||||
|
type="matrix"
|
||||||
|
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
||||||
|
result="hardAlpha"
|
||||||
|
id="feColorMatrix8" />
|
||||||
|
<feOffset
|
||||||
|
dy="12"
|
||||||
|
id="feOffset8" />
|
||||||
|
<feGaussianBlur
|
||||||
|
stdDeviation="6"
|
||||||
|
id="feGaussianBlur8" />
|
||||||
|
<feComposite
|
||||||
|
in2="hardAlpha"
|
||||||
|
operator="out"
|
||||||
|
id="feComposite8" />
|
||||||
|
<feColorMatrix
|
||||||
|
type="matrix"
|
||||||
|
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"
|
||||||
|
id="feColorMatrix9" />
|
||||||
|
<feBlend
|
||||||
|
mode="normal"
|
||||||
|
in2="BackgroundImageFix"
|
||||||
|
result="effect1_dropShadow_3_63"
|
||||||
|
id="feBlend9" />
|
||||||
|
<feBlend
|
||||||
|
mode="normal"
|
||||||
|
in="SourceGraphic"
|
||||||
|
in2="effect1_dropShadow_3_63"
|
||||||
|
result="shape"
|
||||||
|
id="feBlend10" />
|
||||||
|
</filter>
|
||||||
|
<linearGradient
|
||||||
|
id="paint0_linear_3_63"
|
||||||
|
x1="114.5"
|
||||||
|
y1="62"
|
||||||
|
x2="114.5"
|
||||||
|
y2="379"
|
||||||
|
gradientUnits="userSpaceOnUse">
|
||||||
|
<stop
|
||||||
|
stop-color="#A2D6DB"
|
||||||
|
id="stop10" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#6BB0B7"
|
||||||
|
id="stop11" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="paint1_linear_3_63"
|
||||||
|
x1="70"
|
||||||
|
y1="110"
|
||||||
|
x2="70"
|
||||||
|
y2="179"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(2)">
|
||||||
|
<stop
|
||||||
|
stop-color="#A2D6DB"
|
||||||
|
id="stop12" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#6BB0B7"
|
||||||
|
id="stop13" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="paint2_linear_3_63"
|
||||||
|
x1="70"
|
||||||
|
y1="191"
|
||||||
|
x2="70"
|
||||||
|
y2="259"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(2)">
|
||||||
|
<stop
|
||||||
|
stop-color="#A2D6DB"
|
||||||
|
id="stop14" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#6BB0B7"
|
||||||
|
id="stop15" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="paint3_linear_3_63"
|
||||||
|
x1="70"
|
||||||
|
y1="273"
|
||||||
|
x2="70"
|
||||||
|
y2="342"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="translate(2)">
|
||||||
|
<stop
|
||||||
|
stop-color="#A2D6DB"
|
||||||
|
id="stop16" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#6BB0B7"
|
||||||
|
id="stop17" />
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<path
|
||||||
|
d="m 290.74,264 v -89.6 h 20.864 l 31.232,82.816 H 344.5 V 174.4 h 10.624 V 264 H 334.26 l -31.104,-82.944 h -1.792 V 264 Z"
|
||||||
|
fill="#54a9ce"
|
||||||
|
id="path5"
|
||||||
|
style="display:none" />
|
||||||
|
<path
|
||||||
|
d="m 290.74,264 v -89.6 h 20.864 l 31.232,82.816 H 344.5 V 174.4 h 10.624 V 264 H 334.26 l -31.104,-82.944 h -1.792 V 264 Z"
|
||||||
|
fill="#54a9ce"
|
||||||
|
id="path5-3" />
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 3.6 KiB After Width: | Height: | Size: 5.7 KiB |
|
@ -5,87 +5,16 @@
|
||||||
viewBox="0 0 4.2333332 4.2333335"
|
viewBox="0 0 4.2333332 4.2333335"
|
||||||
version="1.1"
|
version="1.1"
|
||||||
id="svg1468"
|
id="svg1468"
|
||||||
sodipodi:docname="codeberg-logo_icon_white.svg"
|
|
||||||
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
|
||||||
inkscape:export-filename="/home/robert/Documents/Codeberg/Logo-Kit/svg/Codeberg-favicon_64px.png"
|
|
||||||
inkscape:export-xdpi="384"
|
|
||||||
inkscape:export-ydpi="384"
|
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
||||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
xmlns:svg="http://www.w3.org/2000/svg"
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
<sodipodi:namedview
|
|
||||||
showborder="false"
|
|
||||||
id="base"
|
|
||||||
pagecolor="#000000"
|
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:pageopacity="0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:zoom="22.627417"
|
|
||||||
inkscape:cx="2.8505242"
|
|
||||||
inkscape:cy="7.6676892"
|
|
||||||
inkscape:document-units="px"
|
|
||||||
inkscape:current-layer="svg1468"
|
|
||||||
inkscape:document-rotation="0"
|
|
||||||
showgrid="false"
|
|
||||||
fit-margin-top="0"
|
|
||||||
fit-margin-left="0"
|
|
||||||
fit-margin-right="0"
|
|
||||||
fit-margin-bottom="0"
|
|
||||||
units="px"
|
|
||||||
inkscape:snap-global="false"
|
|
||||||
inkscape:snap-page="true"
|
|
||||||
showguides="false"
|
|
||||||
inkscape:window-width="1920"
|
|
||||||
inkscape:window-height="995"
|
|
||||||
inkscape:window-x="0"
|
|
||||||
inkscape:window-y="0"
|
|
||||||
inkscape:window-maximized="1"
|
|
||||||
inkscape:pagecheckerboard="0"
|
|
||||||
inkscape:deskcolor="#d1d1d1"
|
|
||||||
inkscape:showpageshadow="2">
|
|
||||||
<inkscape:grid
|
|
||||||
type="xygrid"
|
|
||||||
id="grid2067"
|
|
||||||
originx="0"
|
|
||||||
originy="0"
|
|
||||||
spacingy="1"
|
|
||||||
spacingx="1"
|
|
||||||
units="px"
|
|
||||||
visible="false" />
|
|
||||||
</sodipodi:namedview>
|
|
||||||
<title
|
<title
|
||||||
id="title16">Codeberg logo</title>
|
id="title16">Codeberg logo</title>
|
||||||
<defs
|
<defs
|
||||||
id="defs1462">
|
id="defs1462">
|
||||||
<linearGradient
|
|
||||||
xlink:href="#linearGradient6924"
|
|
||||||
id="linearGradient6918"
|
|
||||||
x1="42519.285"
|
|
||||||
y1="-7078.7891"
|
|
||||||
x2="42575.336"
|
|
||||||
y2="-6966.9307"
|
|
||||||
gradientUnits="userSpaceOnUse" />
|
|
||||||
<linearGradient
|
|
||||||
id="linearGradient6924">
|
|
||||||
<stop
|
|
||||||
style="stop-color:#2185d0;stop-opacity:0"
|
|
||||||
offset="0"
|
|
||||||
id="stop6920" />
|
|
||||||
<stop
|
|
||||||
id="stop6926"
|
|
||||||
offset="0.49517274"
|
|
||||||
style="stop-color:#2185d0;stop-opacity:0.48923996" />
|
|
||||||
<stop
|
|
||||||
style="stop-color:#2185d0;stop-opacity:0.63279623"
|
|
||||||
offset="1"
|
|
||||||
id="stop6922" />
|
|
||||||
</linearGradient>
|
|
||||||
<linearGradient
|
<linearGradient
|
||||||
xlink:href="#linearGradient6924-6"
|
xlink:href="#linearGradient6924-6"
|
||||||
id="linearGradient6918-3"
|
id="linearGradient6918-3"
|
||||||
|
@ -152,20 +81,16 @@
|
||||||
</metadata>
|
</metadata>
|
||||||
<g
|
<g
|
||||||
id="g370484"
|
id="g370484"
|
||||||
inkscape:label="logo"
|
|
||||||
transform="matrix(0.06551432,0,0,0.06551432,-2.232417,-1.431776)">
|
transform="matrix(0.06551432,0,0,0.06551432,-2.232417,-1.431776)">
|
||||||
<path
|
<path
|
||||||
id="path6733-5"
|
id="path6733-5"
|
||||||
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:url(#linearGradient6918-3);fill-opacity:1;stroke:none;stroke-width:3.67846;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#ffffff;stop-opacity:1"
|
style="font-variation-settings:normal;opacity:1;vector-effect:none;fill:url(#linearGradient6918-3);fill-opacity:1;stroke:none;stroke-width:3.67846;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:2;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:stroke markers fill;stop-color:#ffffff;stop-opacity:1"
|
||||||
d="m 42519.285,-7078.7891 a 0.76086879,0.56791688 0 0 0 -0.738,0.6739 l 33.586,125.8886 a 87.182358,87.182358 0 0 0 39.381,-33.7636 l -71.565,-92.5196 a 0.76086879,0.56791688 0 0 0 -0.664,-0.2793 z"
|
d="m 42519.285,-7078.7891 a 0.76086879,0.56791688 0 0 0 -0.738,0.6739 l 33.586,125.8886 a 87.182358,87.182358 0 0 0 39.381,-33.7636 l -71.565,-92.5196 a 0.76086879,0.56791688 0 0 0 -0.664,-0.2793 z"
|
||||||
transform="matrix(0.37058478,0,0,0.37058478,-15690.065,2662.0533)"
|
transform="matrix(0.37058478,0,0,0.37058478,-15690.065,2662.0533)" />
|
||||||
inkscape:label="berg" />
|
|
||||||
<path
|
<path
|
||||||
id="path360787"
|
id="path360787"
|
||||||
style="opacity:1;fill:#000000;fill-opacity:1;stroke-width:17.0055;paint-order:markers fill stroke;stop-color:#ffffff"
|
style="opacity:1;fill:#000000;fill-opacity:1;stroke-width:17.0055;paint-order:markers fill stroke;stop-color:#ffffff"
|
||||||
d="m 11249.461,-1883.6961 c -12.74,0 -23.067,10.3275 -23.067,23.0671 0,4.3335 1.22,8.5795 3.522,12.2514 l 19.232,-24.8636 c 0.138,-0.1796 0.486,-0.1796 0.624,0 l 19.233,24.8646 c 2.302,-3.6721 3.523,-7.9185 3.523,-12.2524 0,-12.7396 -10.327,-23.0671 -23.067,-23.0671 z"
|
d="m 11249.461,-1883.6961 c -12.74,0 -23.067,10.3275 -23.067,23.0671 0,4.3335 1.22,8.5795 3.522,12.2514 l 19.232,-24.8636 c 0.138,-0.1796 0.486,-0.1796 0.624,0 l 19.233,24.8646 c 2.302,-3.6721 3.523,-7.9185 3.523,-12.2524 0,-12.7396 -10.327,-23.0671 -23.067,-23.0671 z"
|
||||||
sodipodi:nodetypes="sccccccs"
|
|
||||||
inkscape:label="sky"
|
|
||||||
transform="matrix(1.4006354,0,0,1.4006354,-15690.065,2662.0533)" />
|
transform="matrix(1.4006354,0,0,1.4006354,-15690.065,2662.0533)" />
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 5.9 KiB After Width: | Height: | Size: 3.7 KiB |
|
@ -1 +1,17 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" height="40px" viewBox="0 -960 960 960" width="40px" fill="#000000"><path d="M40-160v-160q0-30.67 21.5-52t51.83-21.33H251q18 0 34.33 9 16.34 9 27.34 24.66 29 41 73.16 63.67Q430-273.33 480-273.33q50.33 0 94.5-22.67t73.5-63.67q11.67-15.66 27.5-24.66t33.5-9h137.67q30.66 0 52 21.33Q920-350.67 920-320v160H653.33v-109.67q-35.66 30.34-80.16 46.67-44.5 16.33-93.17 16.33-48.33 0-92.67-16.5Q343-239.67 306.67-270v110H40Zm440-166.67q-36 0-69-16.83T357-390q-16.33-23.67-39.83-37.83-23.5-14.17-50.84-17.5Q293-477.67 358-495.5t122-17.83q57 0 122.33 17.83 65.34 17.83 92 50.17-27 3.33-50.66 17.5-23.67 14.16-40 37.83Q583-360 550-343.33q-33 16.66-70 16.66ZM160-453.33q-46.67 0-80-33.34-33.33-33.33-33.33-80 0-47.66 33.33-80.5Q113.33-680 160-680q47.67 0 80.5 32.83 32.83 32.84 32.83 80.5 0 46.67-32.83 80-32.83 33.34-80.5 33.34Zm640 0q-46.67 0-80-33.34-33.33-33.33-33.33-80 0-47.66 33.33-80.5Q753.33-680 800-680q47.67 0 80.5 32.83 32.83 32.84 32.83 80.5 0 46.67-32.83 80-32.83 33.34-80.5 33.34Zm-320-120q-46.67 0-80-33.34-33.33-33.33-33.33-80 0-47.66 33.33-80.5Q433.33-800 480-800q47.67 0 80.5 32.83 32.83 32.84 32.83 80.5 0 46.67-32.83 80-32.83 33.34-80.5 33.34Z"/></svg>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
height="40"
|
||||||
|
viewBox="0 -960 960 960"
|
||||||
|
width="40"
|
||||||
|
fill="#000000"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<path
|
||||||
|
d="m 40,-160 v -160 q 0,-30.67 21.5,-52 21.5,-21.33 51.83,-21.33 H 251 q 18,0 34.33,9 16.34,9 27.34,24.66 29,41 73.16,63.67 44.17,22.67 94.17,22.67 50.33,0 94.5,-22.67 44.17,-22.67 73.5,-63.67 11.67,-15.66 27.5,-24.66 15.83,-9 33.5,-9 h 137.67 q 30.66,0 52,21.33 21.33,21.33 21.33,52 v 160 H 653.33 v -109.67 q -35.66,30.34 -80.16,46.67 -44.5,16.33 -93.17,16.33 -48.33,0 -92.67,-16.5 Q 343,-239.67 306.67,-270 v 110 z m 440,-166.67 q -36,0 -69,-16.83 -33,-16.83 -54,-46.5 -16.33,-23.67 -39.83,-37.83 -23.5,-14.17 -50.84,-17.5 26.67,-32.34 91.67,-50.17 65,-17.83 122,-17.83 57,0 122.33,17.83 65.34,17.83 92,50.17 -27,3.33 -50.66,17.5 -23.67,14.16 -40,37.83 -20.67,30 -53.67,46.67 -33,16.66 -70,16.66 z M 160,-453.33 q -46.67,0 -80,-33.34 -33.33,-33.33 -33.33,-80 0,-47.66 33.33,-80.5 33.33,-32.83 80,-32.83 47.67,0 80.5,32.83 32.83,32.84 32.83,80.5 0,46.67 -32.83,80 -32.83,33.34 -80.5,33.34 z m 640,0 q -46.67,0 -80,-33.34 -33.33,-33.33 -33.33,-80 0,-47.66 33.33,-80.5 33.33,-32.83 80,-32.83 47.67,0 80.5,32.83 32.83,32.84 32.83,80.5 0,46.67 -32.83,80 -32.83,33.34 -80.5,33.34 z m -320,-120 q -46.67,0 -80,-33.34 -33.33,-33.33 -33.33,-80 0,-47.66 33.33,-80.5 33.33,-32.83 80,-32.83 47.67,0 80.5,32.83 32.83,32.84 32.83,80.5 0,46.67 -32.83,80 -32.83,33.34 -80.5,33.34 z"
|
||||||
|
id="path1"
|
||||||
|
style="fill:#ffffff" />
|
||||||
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.6 KiB |
|
@ -1 +1,16 @@
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 127.14 96.36"><path d="M107.7,8.07A105.15,105.15,0,0,0,81.47,0a72.06,72.06,0,0,0-3.36,6.83A97.68,97.68,0,0,0,49,6.83,72.37,72.37,0,0,0,45.64,0,105.89,105.89,0,0,0,19.39,8.09C2.79,32.65-1.71,56.6.54,80.21h0A105.73,105.73,0,0,0,32.71,96.36,77.7,77.7,0,0,0,39.6,85.25a68.42,68.42,0,0,1-10.85-5.18c.91-.66,1.8-1.34,2.66-2a75.57,75.57,0,0,0,64.32,0c.87.71,1.76,1.39,2.66,2a68.68,68.68,0,0,1-10.87,5.19,77,77,0,0,0,6.89,11.1A105.25,105.25,0,0,0,126.6,80.22h0C129.24,52.84,122.09,29.11,107.7,8.07ZM42.45,65.69C36.18,65.69,31,60,31,53s5-12.74,11.43-12.74S54,46,53.89,53,48.84,65.69,42.45,65.69Zm42.24,0C78.41,65.69,73.25,60,73.25,53s5-12.74,11.44-12.74S96.23,46,96.12,53,91.08,65.69,84.69,65.69Z"/></svg>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
viewBox="0 0 25 25"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
width="25"
|
||||||
|
height="25"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<path
|
||||||
|
d="m 21.177477,4.6130407 a 20.675985,20.675985 0 0 0 -5.15769,-1.5868302 14.169392,14.169392 0 0 0 -0.660688,1.3430049 19.207135,19.207135 0 0 0 -5.7239932,0 A 14.230348,14.230348 0 0 0 8.9744182,3.0262105 20.821494,20.821494 0 0 0 3.8127955,4.6169734 C 0.54868385,9.4462858 -0.33616572,14.155653 0.10625906,18.798163 v 0 A 20.790032,20.790032 0 0 0 6.4319503,21.97379 15.278403,15.278403 0 0 0 7.7867534,19.789194 13.453647,13.453647 0 0 1 5.6532827,18.770634 C 5.832219,18.640856 6.0072225,18.507145 6.1763272,18.377367 a 14.859573,14.859573 0 0 0 12.6474508,0 c 0.171069,0.139609 0.346074,0.273321 0.523043,0.393267 a 13.50477,13.50477 0 0 1 -2.137403,1.020525 15.14076,15.14076 0 0 0 1.354802,2.182631 20.695649,20.695649 0 0 0 6.329624,-3.173662 v 0 C 25.412957,13.41631 24.007029,8.7502041 21.177477,4.6130407 Z M 8.347158,15.943049 c -1.2328903,0 -2.2514505,-1.118843 -2.2514505,-2.495277 0,-1.376432 0.9831662,-2.505108 2.2475179,-2.505108 1.2643517,0 2.2750456,1.128675 2.2534166,2.505108 -0.02163,1.376434 -0.9929976,2.495277 -2.249484,2.495277 z m 8.305789,0 c -1.234858,0 -2.249485,-1.118843 -2.249485,-2.495277 0,-1.376432 0.983167,-2.505108 2.249485,-2.505108 1.266317,0 2.269147,1.128675 2.247518,2.505108 -0.02163,1.376434 -0.991032,2.495277 -2.247518,2.495277 z"
|
||||||
|
id="path1"
|
||||||
|
style="stroke-width:0.196633" />
|
||||||
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 749 B After Width: | Height: | Size: 1.6 KiB |
|
@ -1,18 +1,50 @@
|
||||||
<svg viewBox="0 0 212 212" xmlns="http://www.w3.org/2000/svg">
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
viewBox="0 0 25 25"
|
||||||
|
version="1.1"
|
||||||
|
id="svg4"
|
||||||
|
width="25"
|
||||||
|
height="25"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||||
|
<defs
|
||||||
|
id="defs4" />
|
||||||
<metadata
|
<metadata
|
||||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
id="metadata1">
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
||||||
>
|
|
||||||
<rdf:RDF>
|
<rdf:RDF>
|
||||||
<cc:Work rdf:about="https://codeberg.org/forgejo/governance/src/branch/main/branding#logo">
|
<cc:Work
|
||||||
|
rdf:about="https://codeberg.org/forgejo/governance/src/branch/main/branding#logo">
|
||||||
<dc:title>Forgejo logo</dc:title>
|
<dc:title>Forgejo logo</dc:title>
|
||||||
<cc:creator rdf:resource="https://caesarschinas.com/"><cc:attributionName>Caesar Schinas</cc:attributionName></cc:creator>
|
<cc:creator
|
||||||
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
rdf:resource="https://caesarschinas.com/">
|
||||||
|
<cc:attributionName>Caesar Schinas</cc:attributionName>
|
||||||
|
</cc:creator>
|
||||||
|
<cc:license
|
||||||
|
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||||
</cc:Work>
|
</cc:Work>
|
||||||
|
<cc:License
|
||||||
|
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||||
|
<cc:permits
|
||||||
|
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||||
|
<cc:permits
|
||||||
|
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||||
|
<cc:requires
|
||||||
|
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||||
|
<cc:requires
|
||||||
|
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||||
|
<cc:permits
|
||||||
|
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||||
|
<cc:requires
|
||||||
|
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||||
|
</cc:License>
|
||||||
</rdf:RDF>
|
</rdf:RDF>
|
||||||
</metadata>
|
</metadata>
|
||||||
<style type="text/css">
|
<style
|
||||||
|
type="text/css"
|
||||||
|
id="style1">
|
||||||
:root, svg {
|
:root, svg {
|
||||||
color-scheme: dark light;
|
color-scheme: dark light;
|
||||||
}
|
}
|
||||||
|
@ -27,11 +59,29 @@
|
||||||
stroke-width: 25;
|
stroke-width: 25;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<g transform="translate(6,6)">
|
<g
|
||||||
<path d="M58 168 v-98 a50 50 0 0 1 50-50 h20" />
|
transform="matrix(0.11848341,0,0,0.11848341,0.651659,0.651659)"
|
||||||
<path d="M58 168 v-30 a50 50 0 0 1 50-50 h20" />
|
id="g4">
|
||||||
<circle cx="142" cy="20" r="18" />
|
<path
|
||||||
<circle cx="142" cy="88" r="18" />
|
d="M 58,168 V 70 a 50,50 0 0 1 50,-50 h 20"
|
||||||
<circle cx="58" cy="180" r="18" />
|
id="path1" />
|
||||||
|
<path
|
||||||
|
d="m 58,168 v -30 a 50,50 0 0 1 50,-50 h 20"
|
||||||
|
id="path2" />
|
||||||
|
<circle
|
||||||
|
cx="142"
|
||||||
|
cy="20"
|
||||||
|
r="18"
|
||||||
|
id="circle2" />
|
||||||
|
<circle
|
||||||
|
cx="142"
|
||||||
|
cy="88"
|
||||||
|
r="18"
|
||||||
|
id="circle3" />
|
||||||
|
<circle
|
||||||
|
cx="58"
|
||||||
|
cy="180"
|
||||||
|
r="18"
|
||||||
|
id="circle4" />
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 2.3 KiB |
|
@ -67,17 +67,12 @@
|
||||||
rx="32"
|
rx="32"
|
||||||
fill="#f8fcfc"
|
fill="#f8fcfc"
|
||||||
id="rect5" />
|
id="rect5" />
|
||||||
<text
|
<path
|
||||||
xml:space="preserve"
|
d="m 264.40371,290.29611 v -98.525 h 58.552 v 8.1635 h -49.544 v 36.8765 h 45.46225 v 8.1635 h -45.46225 v 45.3215 z"
|
||||||
style="font-weight:800;font-size:136.36px;line-height:0;font-family:'JetBrains Mono';-inkscape-font-specification:'JetBrains Mono Ultra-Bold';text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;fill:#54a9ce;fill-opacity:1;stroke:none;stroke-width:1.89388;paint-order:stroke fill markers"
|
id="text3"
|
||||||
x="248.06386"
|
style="font-weight:300;font-size:140.75px;line-height:0;font-family:'Space Grotesk';-inkscape-font-specification:'Space Grotesk Light';fill:#88aa00;stroke-width:1.95486;paint-order:stroke fill markers"
|
||||||
y="293.29568"
|
transform="scale(1.0996065,0.90941625)"
|
||||||
id="text1"
|
aria-label="F" />
|
||||||
transform="scale(1.1109672,0.90011655)"><tspan
|
|
||||||
id="tspan1"
|
|
||||||
x="248.06386"
|
|
||||||
y="293.29568"
|
|
||||||
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:'JetBrains Mono';-inkscape-font-specification:'JetBrains Mono Light';fill:#88aa00;fill-opacity:1;stroke:none;stroke-width:1.89388">F</tspan></text>
|
|
||||||
</g>
|
</g>
|
||||||
<defs
|
<defs
|
||||||
id="defs17">
|
id="defs17">
|
||||||
|
|
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 3.5 KiB |
|
@ -1 +1,18 @@
|
||||||
<svg width="98" height="96" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M48.854 0C21.839 0 0 22 0 49.217c0 21.756 13.993 40.172 33.405 46.69 2.427.49 3.316-1.059 3.316-2.362 0-1.141-.08-5.052-.08-9.127-13.59 2.934-16.42-5.867-16.42-5.867-2.184-5.704-5.42-7.17-5.42-7.17-4.448-3.015.324-3.015.324-3.015 4.934.326 7.523 5.052 7.523 5.052 4.367 7.496 11.404 5.378 14.235 4.074.404-3.178 1.699-5.378 3.074-6.6-10.839-1.141-22.243-5.378-22.243-24.283 0-5.378 1.94-9.778 5.014-13.2-.485-1.222-2.184-6.275.486-13.038 0 0 4.125-1.304 13.426 5.052a46.97 46.97 0 0 1 12.214-1.63c4.125 0 8.33.571 12.213 1.63 9.302-6.356 13.427-5.052 13.427-5.052 2.67 6.763.97 11.816.485 13.038 3.155 3.422 5.015 7.822 5.015 13.2 0 18.905-11.404 23.06-22.324 24.283 1.78 1.548 3.316 4.481 3.316 9.126 0 6.6-.08 11.897-.08 13.526 0 1.304.89 2.853 3.316 2.364 19.412-6.52 33.405-24.935 33.405-46.691C97.707 22 75.788 0 48.854 0z" fill="#24292f"/></svg>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<svg
|
||||||
|
width="25"
|
||||||
|
height="25"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs1" />
|
||||||
|
<path
|
||||||
|
fill-rule="evenodd"
|
||||||
|
clip-rule="evenodd"
|
||||||
|
d="M 12.510343,0 C 5.5924465,0 0,5.7291427 0,12.816873 c 0,5.665602 3.5832733,10.461415 8.554223,12.158804 0.6214968,0.127603 0.8491485,-0.27578 0.8491485,-0.615102 0,-0.297134 -0.020486,-1.315619 -0.020486,-2.376813 -3.4800746,0.76406 -4.20477,-1.527858 -4.20477,-1.527858 -0.5592703,-1.48541 -1.3879326,-1.86718 -1.3879326,-1.86718 -1.1390267,-0.785153 0.082969,-0.785153 0.082969,-0.785153 1.2634796,0.0849 1.9264607,1.31562 1.9264607,1.31562 1.1182845,1.952075 2.9202922,1.400515 3.6452437,1.060933 0.1034548,-0.827601 0.4350734,-1.400515 0.7871787,-1.718743 -2.7756098,-0.297134 -5.695902,-1.400515 -5.695902,-6.323671 0,-1.400515 0.4967877,-2.5463439 1.2839657,-3.437486 -0.1241969,-0.3182278 -0.5592702,-1.6341077 0.124453,-3.3952983 0,0 1.056314,-0.3395819 3.4380781,1.3156195 A 12.027896,12.23172 0 0 1 12.510344,6.1960678 c 1.056314,0 2.133114,0.1486973 3.127458,0.4244774 2.38202,-1.6552014 3.438334,-1.3156195 3.438334,-1.3156195 0.683723,1.7611906 0.248394,3.0770705 0.124197,3.3952983 0.807919,0.8911421 1.284222,2.036971 1.284222,3.437486 0,4.923156 -2.920292,6.005183 -5.716644,6.323671 0.455816,0.403123 0.849149,1.166922 0.849149,2.376553 0,1.718743 -0.02049,3.098164 -0.02049,3.522381 0,0.339582 0.227907,0.742965 0.849148,0.615622 4.97095,-1.697909 8.554223,-6.493462 8.554223,-12.159064 C 25.02043,5.7291427 19.407498,0 12.510343,0 Z"
|
||||||
|
fill="#24292f"
|
||||||
|
id="path1"
|
||||||
|
style="fill:#000000;stroke-width:0.258237" />
|
||||||
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 963 B After Width: | Height: | Size: 1.7 KiB |
|
@ -60,25 +60,16 @@
|
||||||
<g
|
<g
|
||||||
filter="url(#filter0_d_3_63)"
|
filter="url(#filter0_d_3_63)"
|
||||||
id="g5">
|
id="g5">
|
||||||
<rect
|
<path
|
||||||
x="247"
|
id="rect5"
|
||||||
y="144"
|
style="fill:#f8fcfc"
|
||||||
width="152"
|
d="m 279,144 h 88 c 17.728,0 32,14.272 32,32 v 88 c 0,17.728 -14.272,32 -32,32 h -88 c -17.728,0 -32,-14.272 -32,-32 v -88 c 0,-17.728 14.272,-32 32,-32 z" />
|
||||||
height="152"
|
<path
|
||||||
rx="32"
|
d="m 290.45084,264.26282 v -89.6889 h 8.20013 v 40.48813 h 1.53752 l 41.51315,-40.48813 h 11.53143 l -46.38198,44.33194 47.9195,45.35696 h -11.65956 l -42.92254,-41.2569 h -1.53752 v 41.2569 z"
|
||||||
fill="#f8fcfc"
|
id="text1"
|
||||||
id="rect5" />
|
style="font-weight:300;font-size:128.127px;line-height:0;font-family:'Space Grotesk';-inkscape-font-specification:'Space Grotesk Light';fill:#d2a800;stroke-width:1.77955;paint-order:stroke fill markers"
|
||||||
<text
|
transform="scale(1.0009955,0.99900551)"
|
||||||
xml:space="preserve"
|
aria-label="K" />
|
||||||
style="font-weight:800;font-size:131.356px;line-height:0;font-family:'JetBrains Mono';-inkscape-font-specification:'JetBrains Mono Ultra-Bold';text-align:start;writing-mode:lr-tb;direction:ltr;text-anchor:start;display:inline;fill:#54a9ce;fill-opacity:1;stroke:none;stroke-width:1.82438;paint-order:stroke fill markers"
|
|
||||||
x="258.92828"
|
|
||||||
y="282.5321"
|
|
||||||
id="text17"
|
|
||||||
transform="scale(1.0701962,0.93440811)"><tspan
|
|
||||||
id="tspan17"
|
|
||||||
x="258.92828"
|
|
||||||
y="282.5321"
|
|
||||||
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-family:'JetBrains Mono';-inkscape-font-specification:'JetBrains Mono Light';fill:#d2a800;fill-opacity:1;stroke:none;stroke-width:1.82438">K</tspan></text>
|
|
||||||
</g>
|
</g>
|
||||||
<defs
|
<defs
|
||||||
id="defs17">
|
id="defs17">
|
||||||
|
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.1 KiB |