87 lines
1.6 KiB
CSS
87 lines
1.6 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f0f8ff;
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 0;
|
|
line-height: 1.6;
|
|
}
|
|
.title {
|
|
font-size: 2.5em;
|
|
font-weight: bold;
|
|
color: #1e90ff;
|
|
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
|
|
margin: 20px 0;
|
|
text-align: center;
|
|
}
|
|
label {
|
|
font-weight: bold;
|
|
margin-bottom: 5px;
|
|
display: block;
|
|
color: #1e90ff;
|
|
}
|
|
|
|
input {
|
|
padding: 8px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
gap: 20px;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
padding: 20px;
|
|
}
|
|
|
|
.form-container {
|
|
background: linear-gradient(135deg, #e6f7ff, #cce7ff);
|
|
border: 1px solid #a3d8ff;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
width: 45%;
|
|
}
|
|
|
|
pre {
|
|
background-color: #e6f7ff;
|
|
padding: 15px;
|
|
border: 1px solid #a3d8ff;
|
|
border-radius: 8px;
|
|
overflow-x: auto;
|
|
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
margin-top: 10px;
|
|
border: 2px solid #a3d8ff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
h2{
|
|
color: #1e90ff;
|
|
}
|
|
|
|
button {
|
|
background-color: #4da6ff;
|
|
color: #fff;
|
|
border: none;
|
|
padding: 10px 15px;
|
|
cursor: pointer;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s ease;
|
|
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #1e90ff;
|
|
}
|
|
|
|
button:active {
|
|
background-color: #0d6efd;
|
|
box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.2);
|
|
} |