Files
mue/src/components/widgets/navbar/scss/_notes.scss
2021-04-02 13:51:22 +01:00

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;
}