77 lines
1.1 KiB
CSS
77 lines
1.1 KiB
CSS
body {
|
|
font-family: sans-serif;
|
|
background-color: #f4f4f4;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
background-color: #fff;
|
|
border-radius: 8px;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
display: flex;
|
|
width: 80%;
|
|
max-width: 1200px;
|
|
margin: 20px;
|
|
padding: 20px;
|
|
}
|
|
|
|
.settings {
|
|
flex: 1;
|
|
padding: 20px;
|
|
border-right: 1px solid #ddd;
|
|
}
|
|
|
|
.setting-group {
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.results {
|
|
max-width: 500px;
|
|
flex: 1;
|
|
padding: 20px;
|
|
}
|
|
|
|
h2 {
|
|
color: #333;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
input[type="range"] {
|
|
width: 100%;
|
|
}
|
|
|
|
button {
|
|
background-color: #4CAF50;
|
|
color: white;
|
|
padding: 10px 15px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #3e8e41;
|
|
}
|
|
|
|
#passwordResults {
|
|
margin-top: 20px;
|
|
font-size: 16px;
|
|
word-break: break-all;
|
|
font-family: monospace;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
#jwtResult {
|
|
width: 100%;
|
|
margin-top: 10px;
|
|
resize: vertical;
|
|
} |