54 lines
No EOL
1 KiB
CSS
Executable file
54 lines
No EOL
1 KiB
CSS
Executable file
main {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
gap: 50px;
|
|
}
|
|
|
|
main > form {
|
|
display: flex;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
main > form > input {
|
|
width: 420px;
|
|
height: 50px;
|
|
border-radius: 0px;
|
|
border-bottom-left-radius: 25px;
|
|
border-top-left-radius: 25px;
|
|
border: none;
|
|
font-size: 24px;
|
|
padding: 0 10px 0 10px;
|
|
background-color: var(--bg-light);
|
|
color: var(--fg);
|
|
border-right: 2px solid var(--bg-border);
|
|
}
|
|
|
|
main > form > input:focus {
|
|
outline: none;
|
|
}
|
|
|
|
main > form > button {
|
|
width: 50px;
|
|
height: 50px;
|
|
border: none;
|
|
border-radius: 0px;
|
|
border-bottom-right-radius: 25px;
|
|
border-top-right-radius: 25px;
|
|
cursor: pointer;
|
|
background-color: var(--bg-light);
|
|
font-size: 24px;
|
|
}
|
|
|
|
main > table {
|
|
width: 800px;
|
|
border-collapse: collapse;
|
|
background-color: var(--bg-light);
|
|
}
|
|
|
|
main > table tr :is(td, th) {
|
|
border: 2px solid var(--bg-border);
|
|
padding: 5px;
|
|
text-align: center;
|
|
} |