From 7a7e357dcdd34e4a33a81eadc55548d579938f49 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sat, 16 Apr 2022 17:35:33 +0200 Subject: Update --- .DS_Store | Bin 6148 -> 6148 bytes about/index.php | 10 ++++++++++ assets/css/main.css | 24 ++++++++++++++++++++++++ faq/index.php | 29 +++++++++++++++++++++++++++++ includes/header.php | 10 ++++++++-- includes/navigation.php | 3 +++ projects/index.php | 10 ++++++++++ services/index.php | 10 ++++++++++ social/index.php | 10 ++++++++++ 9 files changed, 104 insertions(+), 2 deletions(-) create mode 100644 about/index.php create mode 100644 faq/index.php create mode 100644 projects/index.php create mode 100644 services/index.php create mode 100644 social/index.php diff --git a/.DS_Store b/.DS_Store index b20ffd5..4902e9e 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/about/index.php b/about/index.php new file mode 100644 index 0000000..ab47009 --- /dev/null +++ b/about/index.php @@ -0,0 +1,10 @@ + + + +
+
+

About

+ Coming soon +
+ + \ No newline at end of file diff --git a/assets/css/main.css b/assets/css/main.css index 4360305..2fb8f55 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -19,4 +19,28 @@ body * { nav.navbar { background-color: transparent !important; border-bottom: 1px solid rgba(255,255,255,.25); +} + +.faq-container { + margin: 15px 0; + background: rgba(0, 0, 0, .25); + box-shadow: transparent 0 0 20px 0; + padding: 10px 20px; + border: 1px solid black; + border-radius: 10px; + transition: background-color 200ms, box-shadow 200ms; +} + +.faq-container:hover:not([open]) { + background: rgba(0, 0, 0, .5); +} + +.faq-container[open] { + background: rgba(0, 0, 0, .75); + box-shadow: rgba(0, 0, 0, .75) 0 0 20px 0; +} + +.faq-separator { + background-color: gray; + margin: 1rem -20px; } \ No newline at end of file diff --git a/faq/index.php b/faq/index.php new file mode 100644 index 0000000..c1338e7 --- /dev/null +++ b/faq/index.php @@ -0,0 +1,29 @@ + + + +
+
+

Frequently Asked Questions

+
+
+
+ Do you provide free hosting? +
+

+ Yes. When I create a website for you, free hosting and maintenance is included for as long as your website is being developed and as long as possible. However, if your website receives a lot of traffic, it is recommended that you move to proper hosting. +

+
+
+
+
+ Can you create for someone else? +
+

+ Yes, although this only applies to people I know and trust; and may be limited depending on my motivation and free time. If we are friends, feel free to ask if you want a website. +

+
+
+
+
+ + \ No newline at end of file diff --git a/includes/header.php b/includes/header.php index 7297572..099267a 100644 --- a/includes/header.php +++ b/includes/header.php @@ -1,9 +1,15 @@ - + - Minteck + <?php + + if (isset($title)) { + echo "$title | "; + } + + ?>Minteck diff --git a/includes/navigation.php b/includes/navigation.php index 2d0fabf..b670067 100644 --- a/includes/navigation.php +++ b/includes/navigation.php @@ -21,6 +21,9 @@ + diff --git a/projects/index.php b/projects/index.php new file mode 100644 index 0000000..9c5010f --- /dev/null +++ b/projects/index.php @@ -0,0 +1,10 @@ + + + +
+
+

Projects

+ Coming soon +
+ + \ No newline at end of file diff --git a/services/index.php b/services/index.php new file mode 100644 index 0000000..92da22b --- /dev/null +++ b/services/index.php @@ -0,0 +1,10 @@ + + + +
+
+

Services

+ Coming soon +
+ + \ No newline at end of file diff --git a/social/index.php b/social/index.php new file mode 100644 index 0000000..7cdc88e --- /dev/null +++ b/social/index.php @@ -0,0 +1,10 @@ + + + +
+
+

Social

+ Coming soon +
+ + \ No newline at end of file -- cgit