summaryrefslogtreecommitdiff
path: root/public/static
diff options
context:
space:
mode:
Diffstat (limited to 'public/static')
-rw-r--r--public/static/img/brand/big.webpbin0 -> 202428 bytes
-rw-r--r--public/static/img/brand/mini.webpbin0 -> 93392 bytes
-rw-r--r--public/static/img/counter/0.pngbin0 -> 37146 bytes
-rw-r--r--public/static/img/counter/1.pngbin0 -> 32791 bytes
-rw-r--r--public/static/img/counter/2.pngbin0 -> 37615 bytes
-rw-r--r--public/static/img/counter/3.pngbin0 -> 22557 bytes
-rw-r--r--public/static/img/counter/4.pngbin0 -> 35197 bytes
-rw-r--r--public/static/img/counter/5.pngbin0 -> 20349 bytes
-rw-r--r--public/static/img/counter/6.pngbin0 -> 32075 bytes
-rw-r--r--public/static/img/counter/7.pngbin0 -> 22028 bytes
-rw-r--r--public/static/img/counter/8.pngbin0 -> 34637 bytes
-rw-r--r--public/static/img/counter/9.pngbin0 -> 142919 bytes
-rw-r--r--public/static/style.css46
13 files changed, 46 insertions, 0 deletions
diff --git a/public/static/img/brand/big.webp b/public/static/img/brand/big.webp
new file mode 100644
index 0000000..8886e80
--- /dev/null
+++ b/public/static/img/brand/big.webp
Binary files differ
diff --git a/public/static/img/brand/mini.webp b/public/static/img/brand/mini.webp
new file mode 100644
index 0000000..1613eba
--- /dev/null
+++ b/public/static/img/brand/mini.webp
Binary files differ
diff --git a/public/static/img/counter/0.png b/public/static/img/counter/0.png
new file mode 100644
index 0000000..929946c
--- /dev/null
+++ b/public/static/img/counter/0.png
Binary files differ
diff --git a/public/static/img/counter/1.png b/public/static/img/counter/1.png
new file mode 100644
index 0000000..f1c151d
--- /dev/null
+++ b/public/static/img/counter/1.png
Binary files differ
diff --git a/public/static/img/counter/2.png b/public/static/img/counter/2.png
new file mode 100644
index 0000000..7a5a2af
--- /dev/null
+++ b/public/static/img/counter/2.png
Binary files differ
diff --git a/public/static/img/counter/3.png b/public/static/img/counter/3.png
new file mode 100644
index 0000000..c7c7598
--- /dev/null
+++ b/public/static/img/counter/3.png
Binary files differ
diff --git a/public/static/img/counter/4.png b/public/static/img/counter/4.png
new file mode 100644
index 0000000..cd5b8b9
--- /dev/null
+++ b/public/static/img/counter/4.png
Binary files differ
diff --git a/public/static/img/counter/5.png b/public/static/img/counter/5.png
new file mode 100644
index 0000000..3455958
--- /dev/null
+++ b/public/static/img/counter/5.png
Binary files differ
diff --git a/public/static/img/counter/6.png b/public/static/img/counter/6.png
new file mode 100644
index 0000000..c7f795d
--- /dev/null
+++ b/public/static/img/counter/6.png
Binary files differ
diff --git a/public/static/img/counter/7.png b/public/static/img/counter/7.png
new file mode 100644
index 0000000..925bb68
--- /dev/null
+++ b/public/static/img/counter/7.png
Binary files differ
diff --git a/public/static/img/counter/8.png b/public/static/img/counter/8.png
new file mode 100644
index 0000000..7cb611e
--- /dev/null
+++ b/public/static/img/counter/8.png
Binary files differ
diff --git a/public/static/img/counter/9.png b/public/static/img/counter/9.png
new file mode 100644
index 0000000..f8ff704
--- /dev/null
+++ b/public/static/img/counter/9.png
Binary files differ
diff --git a/public/static/style.css b/public/static/style.css
index 8f4c95b..562e87a 100644
--- a/public/static/style.css
+++ b/public/static/style.css
@@ -3,6 +3,9 @@
--background-color-hover: #e4eed8;
--background-color-disabled: #bec6b3;
--border-color: #b0b9a5;
+
+ --foreground-color: #7f9c3c;
+ --foreground-color-hover: #4b5632;
}
* {
@@ -25,6 +28,22 @@ table.vertical td {
padding: 2px;
}
+a {
+ color: var(--foreground-color);
+ text-decoration: none;
+}
+
+a:hover {
+ color: var(--foreground-color-hover);
+ text-decoration: underline;
+}
+
+input {
+ padding: 2px;
+ border-radius: 4px;
+ border: 1px solid gray;
+}
+
.container {
width: 100%;
min-height: 100vh;
@@ -50,6 +69,25 @@ section.content {
flex-direction: row;
}
+.big-gap {
+ gap: 32px;
+}
+
+.center {
+ justify-content: center;
+ align-items: center;
+}
+
+/**
+------------
+ COUNTER
+------------
+*/
+.counter img:not(:first-child) {
+ margin-left: 32px;
+}
+
+
/**
-----------
NAVBAR
@@ -60,6 +98,8 @@ section.content {
display: flex;
flex-direction: row;
padding: 4px;
+
+ gap: 16px;
}
.navbar .links {
@@ -68,6 +108,12 @@ section.content {
gap: 4px;
}
+.navbar .brand {
+ display: flex;
+ flex-direction: row;
+ align-items: end;
+}
+
/**
-------------
BUTTONS