Compare commits

..

1 Commits

Author SHA1 Message Date
Flatlogic Bot
5dcf18f803 red border 2025-08-22 12:27:23 +00:00
2 changed files with 29 additions and 70 deletions

View File

@ -3,17 +3,19 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LAMP Stack</title>
<title>Weather Widget</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="display-4">LAMP Stack 123123</h1>
<p class="lead"><?php echo 'LAMP ok - ';?></p>
<div class="phpinfo">
<?php phpinfo(); ?>
<div class="weather-widget">
<iframe src="https://www.meteoblue.com/en/weather/widget/daily/minsk_belarus_625144?geoloc=fixed&days=4&tempunit=CELSIUS&windunit=KILOMETER_PER_HOUR&precipunit=MILLIMETER&coloured=coloured&pictoicon=0&pictoicon=1&maxtemperature=0&maxtemperature=1&mintemperature=0&mintemperature=1&windspeed=0&windspeed=1&windgust=0&winddirection=0&winddirection=1&uvindex=0&uvindex=1&humidity=0&humidity=1&precipitation=0&precipitation=1&precipitationprobability=0&precipitationprobability=1&spot=0&spot=1&pressure=0&pressure=1&layout=light" frameborder="0" scrolling="NO" allowtransparency="true" sandbox="allow-same-origin allow-scripts allow-popups allow-popups-to-escape-sandbox" style="width: 216px; height: 420px"></iframe><div><!-- DO NOT REMOVE THIS LINK --><a href="https://www.meteoblue.com/en/weather/forecast/week/minsk_belarus_625144?utm_source=weather_widget&utm_medium=linkus&utm_content=daily&utm_campaign=Weather%2BWidget" target="_blank" rel="noopener">meteoblue</a></div>
</div>
<div class="flatlogic-info">
<h2>About Flatlogic</h2>
<p>Flatlogic is a platform that helps you to create and host your web applications. We provide a wide range of templates and tools to make your development process easier and faster.</p>
</div>
</div>
</body>
</html>
</html>

View File

@ -4,6 +4,11 @@ body {
background-color: #f8f9fa;
font-family: 'Poppins', sans-serif;
color: #000000;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
.container {
@ -11,73 +16,25 @@ body {
border-radius: 8px;
padding: 40px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
margin-top: 50px;
text-align: center;
}
h1.display-4 {
.weather-widget {
margin-bottom: 20px;
border: 1px solid red;
}
.flatlogic-info {
margin-top: 30px;
}
.flatlogic-info h2 {
color: #007bff;
font-weight: 600;
text-align: center;
margin-bottom: 20px;
margin-bottom: 15px;
}
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;
}
.flatlogic-info p {
font-size: 1.1rem;
color: #343a40;
}