commit 1471a4f0c4431397c4bb774c0d9b6958b6c99361 Author: Flatlogic Bot Date: Tue Aug 26 09:34:47 2025 +0000 Initial version 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..065c6ab --- /dev/null +++ b/index.php @@ -0,0 +1,19 @@ + + + + + + LAMP Stack + + + + +
+

Hello World

+

+
+ +
+
+ + diff --git a/style.css b/style.css new file mode 100644 index 0000000..d3738ba --- /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: lightblue; + 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; +}