You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nostrweb/src/styles/write.css

67 lines
1.1 KiB
CSS

#bubble {
background-color: darkmagenta;
border-color: darkmagenta;
border-radius: 10rem;
bottom: 5rem;
height: 10rem;
padding: 0;
position: fixed;
right: 5rem;
width: 10rem;
z-index: 1;
}
@media (orientation: portrait) {
#bubble {
bottom: 7rem;
right: 3rem;
height: 7rem;
width: 7rem;
}
}
#bubble svg {
height: 100%;
position: relative;
width: 100%;
top: .5rem;
}
#newNote {
align-items: center;
display: flex;
height: 100vh;
justify-content: center;
position: fixed;
top: 0;
width: 100vw;
z-index: 20;
}
@media (orientation: portrait) {
#newNote {
align-items: start;
}
}
#newNote #writeForm {
align-items: start;
background-color: var(--bgcolor);
display: flex;
flex-direction: row;
flex-grow: 1;
flex-wrap: wrap;
gap: 0;
justify-content: end;
max-height: 100vh;
min-height: 64vh;
outline: 100vh solid var(--bgcolor);
overflow-y: auto;
padding: 2rem;
}
#newNote .form-inline textarea {
flex-basis: 100%;
margin: var(--gap) 0;
}
#newNote .buttons {
align-self: end;
}