diff options
Diffstat (limited to 'point/plugins/doge/doge.css')
-rw-r--r-- | point/plugins/doge/doge.css | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/point/plugins/doge/doge.css b/point/plugins/doge/doge.css new file mode 100644 index 0000000..9b341d2 --- /dev/null +++ b/point/plugins/doge/doge.css | |||
@@ -0,0 +1,55 @@ | |||
1 | /* | ||
2 | * This file is part of "What's The Point" <https://github.com/Pacien/WhatsThePoint> | ||
3 | * Copyright (C) 2014 Pacien TRAN-GIRARD | ||
4 | * | ||
5 | * "What's The Point" is free software: you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU Affero General Public License as | ||
7 | * published by the Free Software Foundation, either version 3 of the | ||
8 | * License, or (at your option) any later version. | ||
9 | * | ||
10 | * "What's The Point" is distributed in the hope that it will be useful, | ||
11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU Affero General Public License for more details. | ||
14 | * | ||
15 | * You should have received a copy of the GNU Affero General Public License | ||
16 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
17 | */ | ||
18 | |||
19 | d-doge { | ||
20 | position: absolute; | ||
21 | font-family: "Comic Sans MS"; | ||
22 | font-weight: bold; | ||
23 | animation: fade forwards; | ||
24 | -webkit-animation: fade forwards; | ||
25 | } | ||
26 | |||
27 | @keyframes fade { | ||
28 | 0% { | ||
29 | opacity: 0; | ||
30 | } | ||
31 | 25% { | ||
32 | opacity: 1; | ||
33 | } | ||
34 | 50% { | ||
35 | opacity: 1; | ||
36 | } | ||
37 | 100% { | ||
38 | opacity: 0; | ||
39 | } | ||
40 | } | ||
41 | |||
42 | @-webkit-keyframes fade { | ||
43 | 0% { | ||
44 | opacity: 0; | ||
45 | } | ||
46 | 25% { | ||
47 | opacity: 1; | ||
48 | } | ||
49 | 50% { | ||
50 | opacity: 1; | ||
51 | } | ||
52 | 100% { | ||
53 | opacity: 0; | ||
54 | } | ||
55 | } | ||