84 lines
1.2 KiB
CSS
84 lines
1.2 KiB
CSS
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: monospace;
|
|
}
|
|
|
|
body {
|
|
background: #0f172a;
|
|
color: #e2e8f0;
|
|
padding: 40px;
|
|
}
|
|
|
|
/* container */
|
|
.container {
|
|
max-width: 900px;
|
|
margin: auto;
|
|
}
|
|
|
|
/* title */
|
|
h1 {
|
|
margin-bottom: 20px;
|
|
font-size: 28px;
|
|
}
|
|
|
|
/* textarea */
|
|
textarea {
|
|
width: 100%;
|
|
min-height: 300px;
|
|
background: #020617;
|
|
border: 1px solid #334155;
|
|
color: #e2e8f0;
|
|
padding: 12px;
|
|
resize: vertical;
|
|
font-size: 14px;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.usepassword,
|
|
select {
|
|
background: #020617;
|
|
border: 1px solid #334155;
|
|
color: #e2e8f0;
|
|
padding: 8px;
|
|
border-radius: 6px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
/* button */
|
|
button {
|
|
background: #38bdf8;
|
|
border: none;
|
|
color: #020617;
|
|
padding: 10px 16px;
|
|
margin-top: 15px;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
}
|
|
|
|
button:hover {
|
|
background: #0ea5e9;
|
|
}
|
|
|
|
/* paste display */
|
|
.paste-box {
|
|
background: #020617;
|
|
border: 1px solid #334155;
|
|
padding: 15px;
|
|
margin-top: 20px;
|
|
border-radius: 6px;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
/* link */
|
|
a {
|
|
color: #38bdf8;
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|