commit 606f8de2ced7cb32464ceb147713da14e12f251c Author: dalfuss Date: Mon Dec 23 01:30:27 2024 +0100 first commit diff --git a/css/custom.css b/css/custom.css new file mode 100644 index 0000000..0b043e1 --- /dev/null +++ b/css/custom.css @@ -0,0 +1,56 @@ +body { + text-align: center; +} + +.palette { +display: flex; +flex-wrap: wrap; +justify-content: center; +margin-bottom: 40px; +} + +.color { +width: 150px; +height: 150px; +display: flex; +align-items: center; +justify-content: center; +color: white; +border-radius: 10px; +margin: 10px; +} + +.white { + color: black; +} + +a { +color: #1BEC99; +text-decoration: none; +transition: color 0.3s; +} + +a:hover { +color: #FD3656; +} + +.popup { +display: none; +position: fixed; +top: 50%; +left: 50%; +transform: translate(-50%, -50%); +padding: 20px; +background-color: #040404; +color: white; +border-radius: 10px; +border-color: #fff; +z-index: 1000; +} + +.logo { + width: 10vw; + margin: 0 auto; + display: block; +} + diff --git a/images/logo.png b/images/logo.png new file mode 100644 index 0000000..1551c26 Binary files /dev/null and b/images/logo.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..719952e --- /dev/null +++ b/index.html @@ -0,0 +1,52 @@ + + + + + + Document + + + + + +

+

These are the colours I use!

+

Dalfuss "Brand" Colours

+
+
#F5A9B8
+
#5BCFFA
+
#FFFFFF
+
#161618
+
+ + + + \ No newline at end of file