mirror of
https://github.com/mue/mue.git
synced 2026-07-11 18:31:47 +02:00
59 lines
744 B
SCSS
59 lines
744 B
SCSS
.notes {
|
|
position: relative;
|
|
|
|
h3 {
|
|
text-shadow: none;
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
.notescontainer {
|
|
padding: 15px;
|
|
visibility: hidden;
|
|
background-color: var(--background);
|
|
color: var(--modal-text);
|
|
text-align: center;
|
|
border-radius: 12px;
|
|
position: absolute;
|
|
top: 80%;
|
|
margin-left: -150px;
|
|
|
|
svg {
|
|
float: left;
|
|
}
|
|
|
|
::placeholder {
|
|
color: #636e72;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.notes:hover .notescontainer {
|
|
visibility: visible;
|
|
}
|
|
|
|
textarea {
|
|
border: none;
|
|
width: 200px;
|
|
resize: none;
|
|
height: 100px;
|
|
margin: 10px;
|
|
}
|
|
|
|
.topbarnotes {
|
|
svg {
|
|
font-size: 46px;
|
|
padding: 9px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 46px;
|
|
margin-right: 20px;
|
|
}
|
|
}
|
|
|
|
.dark textarea {
|
|
background-color: #2f3542;
|
|
color: white;
|
|
}
|