<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.sha256-form-container {
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
padding: 2rem;
margin: 2rem auto;
max-width: 800px;
} .sha256-form,
.sha256-result-container {
background: #fff;
border: 1px solid #eee;
border-radius: 6px;
padding: 1.5rem;
margin-bottom: 2rem;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
} .sha256-form textarea,
.sha256-form input[type="text"],
input.regular.text {
width: 100%;
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: 4px;
margin: 0.8rem 0;
background: #f9f9f9;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
font-size: 16px;
box-sizing: border-box;
line-height: 1.5;
} .sha256-form textarea {
min-height: 120px;
max-height: 300px;
height: auto;
overflow-y: auto;
resize: vertical;
white-space: pre-wrap;
word-wrap: break-word;
} .sha256-form input[type="text"],
input.regular.text {
height: 45px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
} .sha256-form input[type="submit"],
.sha256-output-section button,
.button-copy {
width: 100%;
padding: 12px 20px;
background-color: #202021f0;
color: #fff;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
transition: all 0.2s ease;
margin: 1rem 0;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} .sha256-form input[type="submit"]:hover,
.sha256-output-section button:hover,
.button-copy:hover {
background-color: #333;
transform: translateY(-1px);
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.sha256-form input[type="submit"]:active,
.sha256-output-section button:active,
.button-copy:active {
transform: translateY(0);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
} .sha256-output-section pre {
background: #fff;
border: 1px solid #eee;
border-radius: 4px;
padding: 1rem;
margin: 1rem 0;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
white-space: pre-wrap;
overflow-x: auto;
} @media (max-width: 768px) {
.sha256-form-container {
padding: 1rem;
margin: 1rem;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.sha256-form,
.sha256-result-container {
padding: 1rem;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.sha256-form input[type="submit"],
.button-copy {
font-size: 15px;
padding: 10px 16px;
}
.sha256-form textarea {
min-height: 100px;
max-height: 250px;
}
}
@media (max-width: 480px) {
.sha256-form textarea,
.sha256-form input[type="text"],
input.regular.text {
font-size: 15px;
padding: 0.7rem;
}
.sha256-form input[type="text"],
input.regular.text {
height: 40px;
}
} .sha256-form * {
position: relative;
z-index: 1;
}</pre></body></html>