diff options
author | 2021-09-04 11:20:34 +0200 | |
---|---|---|
committer | 2021-09-04 11:20:34 +0200 | |
commit | 6c54c9d57d5fa4c52aa454ed3ca09060b0674ad3 (patch) | |
tree | 0d236ccdf51f264cced4c8adbad24d1dba065ddf /apps/Notes/styles/_import.scss | |
parent | a28b952eafc83ac6f6fc1a3d99805866bc41fde9 (diff) | |
download | my_apps-6c54c9d57d5fa4c52aa454ed3ca09060b0674ad3.tar.gz my_apps-6c54c9d57d5fa4c52aa454ed3ca09060b0674ad3.tar.bz2 my_apps-6c54c9d57d5fa4c52aa454ed3ca09060b0674ad3.zip |
split scss into partials
Diffstat (limited to 'apps/Notes/styles/_import.scss')
-rw-r--r-- | apps/Notes/styles/_import.scss | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/apps/Notes/styles/_import.scss b/apps/Notes/styles/_import.scss new file mode 100644 index 0000000..5d167a8 --- /dev/null +++ b/apps/Notes/styles/_import.scss @@ -0,0 +1,39 @@ +.import { + @keyframes fade-in { + from {opacity: 0;} + to {opacity: 1;} + } + + padding: 1rem; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + animation: fade-in .3s; + + form { + padding: 1em; + } + + input[type=file] { + display: none; + } + + label { + display: inline-block; + // cursor: pointer; + } + + li { + padding: .25em; + } + + p { + padding: 1em 0; + } + + .fa-check ~ span { + color: var(--color-success); + } +} |