e020639a3b
* Set maximum width to 40rem across screen sizes Some rules are removed to correct the bounding box size in browser inspector and fix the overflow on the x-axis. * Remove unused div.parent (The diff should be viewed --ignore-all-space)
96 lines
1.2 KiB
CSS
96 lines
1.2 KiB
CSS
body {
|
|
display: flex;
|
|
height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
margin: auto;
|
|
}
|
|
|
|
.footer {
|
|
font-size: 0.8rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.view-form {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.view-input {
|
|
width: 100%;
|
|
padding: 0.5rem;
|
|
border: 2px solid transparent;
|
|
border-radius: 3px;
|
|
|
|
background-color: var(--input-bg);
|
|
|
|
color: var(--text-color);
|
|
|
|
transition-duration: 200ms;
|
|
}
|
|
|
|
.view-input:focus {
|
|
outline: none;
|
|
border: 2px solid #a8a8a8;
|
|
}
|
|
|
|
.view-button {
|
|
padding: 0.5rem;
|
|
border: 2px solid transparent;
|
|
border-radius: 3px;
|
|
|
|
background-color: var(--input-bg);
|
|
|
|
color: var(--text-color);
|
|
|
|
transition-duration: 200ms;
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
.view-button:hover {
|
|
background-color: var(--input-bg-hover);
|
|
}
|
|
|
|
.success {
|
|
background-color: #8cffc0;
|
|
color: black;
|
|
}
|
|
|
|
.error {
|
|
background-color: #ff8181;
|
|
}
|
|
|
|
.error,
|
|
.success {
|
|
color: black;
|
|
padding: 0.5rem;
|
|
border-radius: 5px;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.error p,
|
|
.success p {
|
|
margin: 0;
|
|
}
|
|
|
|
.options {
|
|
margin-top: 1rem;
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.title {
|
|
display: flex;
|
|
width: 100%;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.logo {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
}
|