diff options
author | Julius Härtl <jus@bitgrid.net> | 2022-08-26 08:15:56 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2022-12-22 10:48:21 +0100 |
commit | 6a82e6528cf41839c95b0de4d379a5fd2b6f8bd7 (patch) | |
tree | 029bc405d05745acd74dbd265f24db65d6d4a687 /core/css/animations.scss | |
parent | 5c4b4bde1b2da872c3e03846954214a8aa8c598e (diff) | |
download | nextcloud-server-6a82e6528cf41839c95b0de4d379a5fd2b6f8bd7.tar.gz nextcloud-server-6a82e6528cf41839c95b0de4d379a5fd2b6f8bd7.zip |
style(guests): Rename guest.css to scss
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/css/animations.scss')
-rw-r--r-- | core/css/animations.scss | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/core/css/animations.scss b/core/css/animations.scss new file mode 100644 index 00000000000..5eda7c848ea --- /dev/null +++ b/core/css/animations.scss @@ -0,0 +1,41 @@ +/*! + * @copyright Copyright (c) 2022 Julius Härtl <jus@bitgrid.net> + * + * @author Julius Härtl <jus@bitgrid.net> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +@-webkit-keyframes rotate { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} +@keyframes rotate { + from { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + to { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} |