mirror of
https://github.com/seriousm4x/UpSnap.git
synced 2026-08-04 19:25:13 -04:00
16 lines
259 B
CSS
16 lines
259 B
CSS
.note{
|
|
visibility: hidden;
|
|
opacity:0;
|
|
transition: opacity 0.2s, top 0.2s, visibility 0.2s;
|
|
transition-timing-function: ease-in;
|
|
}
|
|
|
|
.note-visible{
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
.note-title{
|
|
font-weight: bold;
|
|
}
|