57 lines
894 B
CSS
57 lines
894 B
CSS
.new-top {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 1rem 0;
|
|
width: max-content;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.top-title {
|
|
display: flex;
|
|
margin-bottom: 1rem;
|
|
width: 60ch;
|
|
max-width: 100%;
|
|
border-radius: .5rem;
|
|
}
|
|
|
|
.top-title:focus-within {
|
|
outline: 1px solid #1976d2;
|
|
}
|
|
|
|
.theme--dark .top-title:focus-within {
|
|
outline: 1px solid #ffffff;
|
|
}
|
|
|
|
.top-title-input {
|
|
flex-grow: 1;
|
|
max-width: unset;
|
|
outline: none;
|
|
padding: .5rem;
|
|
color: #424242;
|
|
background-color: #eceff1;
|
|
border-radius: 0 .5rem .5rem 0;
|
|
}
|
|
|
|
.theme--dark .top-title-input {
|
|
color: #bdbdbd;
|
|
background-color: #3b3b3b;
|
|
}
|
|
|
|
.top-title-input-prefix {
|
|
padding: 1rem .5rem 1rem 1rem;
|
|
background-color: #607d8b;
|
|
flex-shrink: 0;
|
|
color: #ffffffb2;
|
|
border-radius: .5rem 0 0 .5rem;
|
|
}
|
|
|
|
.top-button {
|
|
align-self: end
|
|
}
|
|
|
|
.top-progress-spinner {
|
|
width: 22px;
|
|
height: 22px;
|
|
margin-left: .5rem;
|
|
}
|