98 lines
1.8 KiB
CSS
98 lines
1.8 KiB
CSS
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
background-color: #f4f4f4;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
max-width: 1000px;
|
||
|
margin: 20px auto;
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.search-box, .result-box {
|
||
|
flex: 1;
|
||
|
background-color: #fff;
|
||
|
padding: 20px;
|
||
|
border-radius: 5px;
|
||
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||
|
}
|
||
|
|
||
|
.search-box {
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
.result-box {
|
||
|
margin-left: 10px;
|
||
|
}
|
||
|
|
||
|
h2 {
|
||
|
color: #333;
|
||
|
margin-top: 0;
|
||
|
}
|
||
|
|
||
|
form {
|
||
|
margin-top: 20px;
|
||
|
}
|
||
|
|
||
|
label {
|
||
|
font-weight: bold;
|
||
|
display: block;
|
||
|
margin-bottom: 5px;
|
||
|
}
|
||
|
|
||
|
input[type="text"] {
|
||
|
width: calc(100% - 22px); /* Breite - padding - border */
|
||
|
padding: 10px;
|
||
|
margin-bottom: 10px;
|
||
|
border: 1px solid #ccc;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
input[type="submit"] {
|
||
|
background-color: #007bff;
|
||
|
color: #fff;
|
||
|
padding: 10px 20px;
|
||
|
border: none;
|
||
|
border-radius: 5px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
input[type="submit"]:hover {
|
||
|
background-color: #0056b3;
|
||
|
}
|
||
|
|
||
|
.result {
|
||
|
margin-top: 10px;
|
||
|
}
|
||
|
|
||
|
.result p {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
.title-image {
|
||
|
text-align: center; /* Zentrieren Sie den Text und das Bild */
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.title-image img {
|
||
|
max-width: 200px; /* Anpassen der maximalen Breite des Bildes */
|
||
|
display: block; /* Das Bild als Blockelement anzeigen, um die Zentrierung zu ermöglichen */
|
||
|
margin: 0 auto; /* Zentrieren Sie das Bild horizontal */
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.watermark, .footer {
|
||
|
position: fixed;
|
||
|
bottom: 10px; /* Abstand zum unteren Rand */
|
||
|
left: 20px; /* Abstand zum linken Rand */
|
||
|
color: rgba(0, 0, 0, 0.01); /* Farbe des Wasserzeichens (sehr transparentes Schwarz) */
|
||
|
font-size: 12px;
|
||
|
text-decoration: none;
|
||
|
z-index: 9999;
|
||
|
}
|