1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
.noteView { @keyframes fade-in { from {opacity: 0;} to {opacity: 1;} } position: absolute; top: 0; right: 0; bottom: 0; left: 0; animation: fade-in .3s; h2 { font-size: 1.25em; font-weight: 600; user-select: text; } p { padding-top: 1em; line-height: 1.33; white-space: pre-line; user-select: text; } }