58 lines
966 B
CSS
58 lines
966 B
CSS
a {
|
|
color: #f2f2f2;
|
|
text-decoration: none;
|
|
}
|
|
|
|
body {
|
|
font-family: sans-serif;
|
|
background: #121212;
|
|
color: #eee;
|
|
padding: 40px;
|
|
}
|
|
|
|
.container {
|
|
max-width: 600px;
|
|
margin: auto;
|
|
background: #1e1e1e;
|
|
padding: 5px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
padding: 10px;
|
|
margin: 10px 0;
|
|
border: 1px solid #333;
|
|
background: #2a2a2a;
|
|
color: white;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
button {
|
|
background: #38bdf8;
|
|
color: #000;
|
|
border: none;
|
|
padding: 12px 20px;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
width: 100%;
|
|
}
|
|
|
|
textarea {
|
|
width: 100%;
|
|
height: 250px;
|
|
margin-top: 20px;
|
|
background: #000;
|
|
color: #0f0;
|
|
font-family: monospace;
|
|
padding: 15px;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
label {
|
|
font-size: 0.9em;
|
|
color: #94a3b8;
|
|
} |