From 4629c1ae093515ef8adf88fe46ead3aa8e779323 Mon Sep 17 00:00:00 2001 From: Flatlogic Bot Date: Wed, 20 Aug 2025 15:47:54 +0000 Subject: [PATCH] Initial version --- .gitignore | 3 ++ health.txt | 1 + index.php | 19 +++++++++++++ style.css | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 106 insertions(+) create mode 100644 .gitignore create mode 100644 health.txt create mode 100644 index.php create mode 100644 style.css diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e427ff3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +node_modules/ +*/node_modules/ +*/build/ diff --git a/health.txt b/health.txt new file mode 100644 index 0000000..5f6ee8a --- /dev/null +++ b/health.txt @@ -0,0 +1 @@ +OK vm-30681 diff --git a/index.php b/index.php new file mode 100644 index 0000000..a26f8a3 --- /dev/null +++ b/index.php @@ -0,0 +1,19 @@ + + + + + + LAMP Stack + + + + +
+

LAMP Stack 123123

+

+
+ +
+
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..a618e47 --- /dev/null +++ b/style.css @@ -0,0 +1,83 @@ +@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap'); + +body { + background-color: #f8f9fa; + font-family: 'Poppins', sans-serif; + color: #000000; +} + +.container { + background-color: #ffffff; + border-radius: 8px; + padding: 40px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05); + margin-top: 50px; +} + +h1.display-4 { + color: #007bff; + font-weight: 600; + text-align: center; + margin-bottom: 20px; +} + +p.lead { + text-align: center; + font-size: 1.2rem; + color: #000000; +} + +.phpinfo { + margin-top: 30px; + border: 1px solid #dee2e6; + border-radius: 8px; + overflow: hidden; +} + +.phpinfo table { + width: 100%; + border-collapse: collapse; +} + +.phpinfo th, .phpinfo td { + padding: 12px 15px; + text-align: left; + border-bottom: 1px solid #dee2e6; +} + +.phpinfo .e { + background-color: #f8f9fa; + font-weight: 600; + color: #000000; +} + +.phpinfo .v { + background-color: #ffffff; +} + +.phpinfo .h { + background-color: #007bff; + color: white; + font-weight: 600; + padding: 15px; + text-align: center; + font-size: 1.5em; +} + +.phpinfo .h a { + color: white; + text-decoration: none; +} + +.phpinfo .h a:hover { + text-decoration: underline; +} + +.phpinfo .center { + text-align: center; +} + +.phpinfo .logo { + float: right; + padding: 10px; +}