diff --git a/static/css/about.css b/static/css/about.css
index 1ce6f94..4b539d9 100644
--- a/static/css/about.css
+++ b/static/css/about.css
@@ -5,7 +5,6 @@ body {
}
.background {
- filter: brightness(50%);
height: 600px;
background-image: url("/static/img/background.png");
@@ -45,5 +44,5 @@ body {
.philosophyDiv {
padding: 50px;
margin: 50px 15vw;
- background-color: var(--foreground-1);
+ background-color: #EBEBEB;
}
\ No newline at end of file
diff --git a/static/css/common.css b/static/css/common.css
index e1770ae..a506b69 100644
--- a/static/css/common.css
+++ b/static/css/common.css
@@ -4,23 +4,12 @@
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 {
font-weight: 600;
}
.button {
- background-color: var(--theme-color);
+ background-color: #1c71d8;
color: white;
padding: 0.75em 1.25em;
border: none;
@@ -30,22 +19,22 @@ h1, h2 {
.button:hover {
text-decoration: none;
- background-color: var(--hover-theme-color);
+ background-color: #4990e7;
transition: all 0.3s ease 0s;
}
.unimportant {
- background-color: var(--foreground-1);
+ background-color: #EBEBEB;
color: #000;
font-weight: 500;
}
.unimportant:hover {
- background-color: var(--hover-unimportant-theme-color);
+ background-color: #dbdbdb;
}
.subtext {
- color: var(--theme-color);
+ color: #1c71d8;
margin-top: 30px;
font-weight: 600;
font-size: 17px;
@@ -60,20 +49,23 @@ body {
}
nav {
- background-color: var(--background);
+ background-color: #fff;
padding: 20px 30px 20px 30px;
}
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;
display: flex;
padding: 20px;
}
nav img {
- max-height: 20px;
- scale: 2;
+ max-height: 40px;
+ max-width: 40px;
+ margin: -10px -10px -10px -10px;
}
nav div .links {
@@ -88,7 +80,7 @@ nav div .links a {
a {
text-decoration: none;
- color: var(--text-color);
+ color: #000;
}
a:hover {
@@ -101,7 +93,7 @@ a:hover {
}
.titleBlock {
- background-color: var(--foreground-1);
+ background-color: #EBEBEB;
margin: 0 30px 0 30px;
padding: 25px 0 25px 25px;
font-size: 18px;
@@ -124,7 +116,7 @@ a:hover {
footer {
text-align: left;
- background-color: var(--background);
+ background-color: #fff;
padding: 80px 50px 25px 50px;
display: flex;
flex-direction: column;
@@ -139,6 +131,7 @@ footer a {
footer img {
margin: 0 auto 10px 0;
max-height: 100px;
+ max-width: 100px;
}
footer .title {
@@ -149,9 +142,19 @@ footer .title {
footer .disclaimer {
margin-top: 20px;
- filter: invert(100%);
- background-color: var(--background);
+ color: #fff;
+ background-color: #000;
padding: 20px 20px 20px 20px;
border-radius: 10px;
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;
+ }
}
\ No newline at end of file
diff --git a/static/css/consulting.css b/static/css/consulting.css
index 91765cb..1844500 100644
--- a/static/css/consulting.css
+++ b/static/css/consulting.css
@@ -4,8 +4,8 @@ body {
text-align: center;
}
-.contact p, .contact img, .contact h2 {
- filter: invert(100%);
+.contact p, .contact h2 {
+ color: #fff;
}
.contact .buttons {
@@ -13,11 +13,13 @@ body {
}
.contact img {
- max-height: 48px;
+ height: 48px;
+ width: 48px;
+ margin: 0 auto;
}
.contact {
- background-color: var(--theme-color);
+ background-color: #1c71d8;
border-radius: 25px;
margin: 0 15vw 0 15vw;
padding: 50px;
diff --git a/static/css/contact.css b/static/css/contact.css
index 43ebfe1..54e11b3 100644
--- a/static/css/contact.css
+++ b/static/css/contact.css
@@ -18,7 +18,7 @@ body {
}
.blockContainer .contactMethods div {
- background-color: var(--foreground-1);
+ background-color: #EBEBEB;
width: 320px;
padding: 20px;
}
@@ -34,7 +34,7 @@ body {
.blockContainer .peopleDiv {
margin-top: 50px;
padding-bottom: 50px;
- background-color: var(--foreground-1);
+ background-color: #EBEBEB;
}
.blockContainer .peopleDiv .subtext {
diff --git a/static/css/donate.css b/static/css/donate.css
index 5e8b5b7..3f59067 100644
--- a/static/css/donate.css
+++ b/static/css/donate.css
@@ -20,4 +20,19 @@ body {
.blockContainer h1 {
font-size: 50px;
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;
+ }
}
\ No newline at end of file
diff --git a/static/css/enterprise.css b/static/css/enterprise.css
index 4c4a69b..031568b 100644
--- a/static/css/enterprise.css
+++ b/static/css/enterprise.css
@@ -2,7 +2,6 @@
.background {
background-image: url("/static/img/skyscrapers.jpg");
- filter: brightness(50%);
height: 500px;
}
@@ -14,8 +13,8 @@ body {
text-align: center;
}
-.blockContainer h2, .blockContainer p {
- filter: invert(100%);
+.blockContainer h2, .blockContainer p, .blockContainer a {
+ color: #fff;
}
.blockContainer h2 {
diff --git a/static/css/index.css b/static/css/index.css
index 1b03713..87c047a 100644
--- a/static/css/index.css
+++ b/static/css/index.css
@@ -1,7 +1,6 @@
@import "common.css";
.background {
- filter: brightness(50%);
height: 350px;
background-position: bottom;
background-image: url("/static/img/background.png");
@@ -16,11 +15,13 @@
}
.welcome h1 {
+ font-size: 60px;
font-size: clamp(20px, 60px, 12vw);
margin: 65px 0 0 0;
}
.welcome p {
+ font-size: 20px;
font-size: clamp(5px, 20px, 3.3vw);
width: 29em;
margin: 10px auto 0 auto;
@@ -40,7 +41,7 @@
.services, .fulgens, .partners, .callToAction {
display: flex;
- background-color: var(--background);
+ background-color: #fff;
flex-direction: column;
text-align: center;
}
@@ -64,7 +65,7 @@
.services .serviceGrid div {
display: flex;
flex-direction: column;
- background-color: var(--foreground-1);
+ background-color: #EBEBEB;
padding: 40px;
border-radius: 20px;
width: 340px;
@@ -78,6 +79,8 @@
.services .serviceGrid img {
height: 48px;
+ width: 48px;
+ margin: 0 auto;
}
.services .serviceGrid p {
@@ -91,7 +94,7 @@
.fulgens {
padding: 20px 15vw 50px 15vw;
- background-color: var(--foreground-1);
+ background-color: #EBEBEB;
flex-direction: row;
justify-content: space-evenly;
}
@@ -102,9 +105,11 @@
flex-direction: column;
}
-.fulgens img {
+.fulgens .dashboard {
width: 100%;
- object-fit: cover;
+ background-size: cover;
+ background-position: center;
+ background-image: url("/static/img/dashboard.png");
border-radius: 25px;
margin: 0 0 0 20%;
}
@@ -122,10 +127,11 @@
}
.fulgens div .buttons .unimportant {
- border: 1px solid var(--foreground-2);
+ border: 1px solid #DCDCDC;
}
.callToAction .image {
+ top: 0;
background-image: url("/static/img/callToAction.jpg");
height: 800px;
}
@@ -134,6 +140,7 @@
height: 800px;
background: none;
justify-content: center;
+ position: relative;
}
.callToAction .content {
@@ -141,7 +148,7 @@
width: 70vw;
margin-left: auto;
margin-right: auto;
- background-color: var(--background);
+ background-color: #fff;
border-radius: 25px;
display: flex;
flex-direction: column;
@@ -164,5 +171,5 @@
.callToAction .content a {
margin: auto auto 40px auto;
- width: fit-content;
+ width: 90px;
}
\ No newline at end of file
diff --git a/static/css/library.css b/static/css/library.css
index 5920261..2b37b34 100644
--- a/static/css/library.css
+++ b/static/css/library.css
@@ -9,7 +9,7 @@
}
.appContainer div {
- background-color: var(--foreground-1);
+ background-color: #EBEBEB;
margin: 20px;
padding: 0 0 35px 0;
text-align: center;
@@ -19,9 +19,9 @@
.appContainer div img {
border-radius: 1em;
- scale: 0.75;
- padding: 32px;
+ padding: 20px;
background-color: white;
- height: 192px;
- width: 192px;
+ height: 152px;
+ width: 152px;
+ margin: 35px;
}
diff --git a/static/img/background.png b/static/img/background.png
index c745407..b276b91 100644
Binary files a/static/img/background.png and b/static/img/background.png differ
diff --git a/static/img/ctalol.jpg b/static/img/ctalol.jpg
index 74576da..ce73333 100644
Binary files a/static/img/ctalol.jpg and b/static/img/ctalol.jpg differ
diff --git a/static/img/maaa.png b/static/img/maaa.png
new file mode 100644
index 0000000..fb854d4
Binary files /dev/null and b/static/img/maaa.png differ
diff --git a/static/img/maaa.webp b/static/img/maaa.webp
deleted file mode 100644
index d83fede..0000000
Binary files a/static/img/maaa.webp and /dev/null differ
diff --git a/static/img/skyscrapers.jpg b/static/img/skyscrapers.jpg
index 6914c8d..a8fd7ce 100644
Binary files a/static/img/skyscrapers.jpg and b/static/img/skyscrapers.jpg differ
diff --git a/static/svg/burgercat.svg b/static/svg/burgercat.svg
index aa2b3a2..f4c7ff6 100644
--- a/static/svg/burgercat.svg
+++ b/static/svg/burgercat.svg
@@ -59,25 +59,16 @@
-
- C
+
+
diff --git a/static/svg/burgernotes.svg b/static/svg/burgernotes.svg
index faa220c..9b26c43 100644
--- a/static/svg/burgernotes.svg
+++ b/static/svg/burgernotes.svg
@@ -1,44 +1,195 @@
-
diff --git a/static/svg/consulting.svg b/static/svg/consulting.svg
index 1981f4c..0805cec 100644
--- a/static/svg/consulting.svg
+++ b/static/svg/consulting.svg
@@ -1 +1,17 @@
-
\ No newline at end of file
+
+
+
+
+
diff --git a/static/svg/discord-monochrome.svg b/static/svg/discord-monochrome.svg
index f9fd918..ab6e5fd 100644
--- a/static/svg/discord-monochrome.svg
+++ b/static/svg/discord-monochrome.svg
@@ -1 +1,16 @@
-
\ No newline at end of file
+
+
+
+
+
diff --git a/static/svg/forgejo-monochrome.svg b/static/svg/forgejo-monochrome.svg
index 05657c4..d2304f6 100644
--- a/static/svg/forgejo-monochrome.svg
+++ b/static/svg/forgejo-monochrome.svg
@@ -1,18 +1,50 @@
-
+
+
+
+ id="metadata1">
-
+
Forgejo logo
- Caesar Schinas
-
+
+ Caesar Schinas
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/static/svg/fulgens.svg b/static/svg/fulgens.svg
index 5decace..b9e0deb 100644
--- a/static/svg/fulgens.svg
+++ b/static/svg/fulgens.svg
@@ -67,17 +67,12 @@
rx="32"
fill="#f8fcfc"
id="rect5" />
- F
+
diff --git a/static/svg/github-monochrome.svg b/static/svg/github-monochrome.svg
index 37fa923..49b6555 100644
--- a/static/svg/github-monochrome.svg
+++ b/static/svg/github-monochrome.svg
@@ -1 +1,18 @@
-
\ No newline at end of file
+
+
+
+
+
diff --git a/static/svg/kittemail.svg b/static/svg/kittemail.svg
index 7610f9a..dd235ce 100644
--- a/static/svg/kittemail.svg
+++ b/static/svg/kittemail.svg
@@ -60,25 +60,16 @@
-
- K
+
+