Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5dcf18f803 |
12
index.php
12
index.php
@ -3,16 +3,18 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1 class="display-4">LAMP Stack 123123</h1>
|
<div class="weather-widget">
|
||||||
<p class="lead"><?php echo 'LAMP ok - ';?></p>
|
<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 class="phpinfo">
|
</div>
|
||||||
<?php phpinfo(); ?>
|
<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>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
83
style.css
83
style.css
@ -4,6 +4,11 @@ body {
|
|||||||
background-color: #f8f9fa;
|
background-color: #f8f9fa;
|
||||||
font-family: 'Poppins', sans-serif;
|
font-family: 'Poppins', sans-serif;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
min-height: 100vh;
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
@ -11,73 +16,25 @@ body {
|
|||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
padding: 40px;
|
padding: 40px;
|
||||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
|
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;
|
color: #007bff;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
text-align: center;
|
margin-bottom: 15px;
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
p.lead {
|
.flatlogic-info p {
|
||||||
text-align: center;
|
font-size: 1.1rem;
|
||||||
font-size: 1.2rem;
|
color: #343a40;
|
||||||
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;
|
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user