mirror of
https://github.com/0x5t4l1n/Nex.git
synced 2026-05-26 11:35:53 +00:00
65 lines
1.0 KiB
CSS
65 lines
1.0 KiB
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
background-color: #2E2E2E;
|
|
color: white;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
width: 80%;
|
|
max-width: 800px;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
color: #A9D0D1;
|
|
}
|
|
|
|
textarea, input {
|
|
width: 100%;
|
|
padding: 10px;
|
|
background-color: #444444;
|
|
color: white;
|
|
border: 1px solid #666666;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
textarea {
|
|
height: 200px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 20px;
|
|
background-color: #5A5A5A;
|
|
border: 1px solid #777777;
|
|
color: white;
|
|
border-radius: 5px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #888888;
|
|
}
|
|
|
|
.output-section {
|
|
margin-top: 30px;
|
|
background-color: #333333;
|
|
padding: 20px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
#output {
|
|
background-color: #121212;
|
|
color: #A9D0D1;
|
|
padding: 15px;
|
|
border-radius: 8px;
|
|
white-space: pre-wrap;
|
|
word-wrap: break-word;
|
|
}
|