30725-dev/style.css
2025-08-26 10:59:24 +00:00

84 lines
1.3 KiB
CSS

@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;
}