|
1 | 1 | @charset 'UTF-8';
|
2 | 2 | @import 'consts/consts.scss';
|
3 | 3 |
|
4 |
| -/* basic styles ends */ |
5 |
| -/* animation starts */ |
6 |
| -.animated { |
7 |
| - -webkit-animation-fill-mode: both; |
8 |
| - -moz-animation-fill-mode: both; |
9 |
| - -ms-animation-fill-mode: both; |
10 |
| - -o-animation-fill-mode: both; |
11 |
| - animation-fill-mode: both; |
12 |
| - -webkit-animation-duration: 0.5s; |
13 |
| - -moz-animation-duration: 0.5s; |
14 |
| - -ms-animation-duration: 0.5s; |
15 |
| - -o-animation-duration: 0.5s; |
16 |
| - animation-duration: 0.5s; |
17 |
| -} |
18 |
| - |
19 |
| -.animated.hinge { |
20 |
| - -webkit-animation-duration: 0.5s; |
21 |
| - -moz-animation-duration: 0.5s; |
22 |
| - -ms-animation-duration: 0.5s; |
23 |
| - -o-animation-duration: 0.5s; |
24 |
| - animation-duration: 0.5s; |
25 |
| -} |
26 |
| - |
27 |
| -@keyframes fadeInDown { |
28 |
| - 0% { |
29 |
| - opacity: 0; |
30 |
| - -webkit-transform: translateY(-20px); |
31 |
| - } |
32 |
| - |
33 |
| - 100% { |
34 |
| - opacity: 1; |
35 |
| - -webkit-transform: translateY(0); |
36 |
| - } |
37 |
| -} |
38 |
| - |
39 |
| -@keyframes fadeInDown { |
40 |
| - 0% { |
41 |
| - opacity: 0; |
42 |
| - -moz-transform: translateY(-20px); |
43 |
| - } |
44 |
| - |
45 |
| - 100% { |
46 |
| - opacity: 1; |
47 |
| - -moz-transform: translateY(0); |
48 |
| - } |
49 |
| -} |
50 |
| - |
51 |
| -@keyframes fadeInDown { |
52 |
| - 0% { |
53 |
| - opacity: 0; |
54 |
| - -o-transform: translateY(-20px); |
55 |
| - } |
56 |
| - |
57 |
| - 100% { |
58 |
| - opacity: 1; |
59 |
| - -o-transform: translateY(0); |
60 |
| - } |
61 |
| -} |
62 |
| - |
63 |
| -@keyframes fadeInDown { |
64 |
| - 0% { |
65 |
| - opacity: 0; |
66 |
| - transform: translateY(-20px); |
67 |
| - } |
68 |
| - |
69 |
| - 100% { |
70 |
| - opacity: 1; |
71 |
| - transform: translateY(0); |
72 |
| - } |
73 |
| -} |
74 |
| - |
75 |
| -.fadeInDown { |
76 |
| - -webkit-animation-name: fadeInDown; |
77 |
| - -moz-animation-name: fadeInDown; |
78 |
| - -o-animation-name: fadeInDown; |
79 |
| - animation-name: fadeInDown; |
80 |
| -} |
81 |
| - |
82 |
| -@keyframes fadeOutDown { |
83 |
| - 0% { |
84 |
| - opacity: 1; |
85 |
| - -webkit-transform: translateY(0); |
86 |
| - } |
87 |
| - |
88 |
| - 100% { |
89 |
| - opacity: 0; |
90 |
| - -webkit-transform: translateY(20px); |
91 |
| - } |
92 |
| -} |
93 |
| - |
94 |
| -@keyframes fadeOutDown { |
95 |
| - 0% { |
96 |
| - opacity: 1; |
97 |
| - -moz-transform: translateY(0); |
98 |
| - } |
99 |
| - |
100 |
| - 100% { |
101 |
| - opacity: 0; |
102 |
| - -moz-transform: translateY(20px); |
103 |
| - } |
104 |
| -} |
105 |
| - |
106 |
| -@keyframes fadeOutDown { |
107 |
| - 0% { |
108 |
| - opacity: 1; |
109 |
| - -o-transform: translateY(0); |
110 |
| - } |
111 |
| - |
112 |
| - 100% { |
113 |
| - opacity: 0; |
114 |
| - -o-transform: translateY(20px); |
115 |
| - } |
116 |
| -} |
117 |
| - |
118 |
| -@keyframes fadeOutDown { |
119 |
| - 0% { |
120 |
| - opacity: 1; |
121 |
| - transform: translateY(0); |
122 |
| - } |
123 |
| - |
124 |
| - 100% { |
125 |
| - opacity: 0; |
126 |
| - transform: translateY(20px); |
127 |
| - } |
128 |
| -} |
129 |
| - |
130 |
| -.fadeOutDown { |
131 |
| - -webkit-animation-name: fadeOutDown; |
132 |
| - -moz-animation-name: fadeOutDown; |
133 |
| - -o-animation-name: fadeOutDown; |
134 |
| - animation-name: fadeOutDown; |
135 |
| -} |
136 |
| - |
137 |
| -@keyframes fadeOut { |
138 |
| - 0% { |
139 |
| - opacity: 1; |
140 |
| - } |
141 |
| - |
142 |
| - 100% { |
143 |
| - opacity: 0; |
144 |
| - } |
145 |
| -} |
146 |
| - |
147 |
| -.fadeOut { |
148 |
| - -webkit-animation-name: fadeOut; |
149 |
| - -moz-animation-name: fadeOut; |
150 |
| - -o-animation-name: fadeOut; |
151 |
| - animation-name: fadeOut; |
152 |
| -} |
153 |
| - |
154 |
| -@keyframes fadeIn { |
155 |
| - 0% { |
156 |
| - opacity: 0; |
157 |
| - } |
158 |
| - |
159 |
| - 100% { |
160 |
| - opacity: 1; |
161 |
| - } |
162 |
| -} |
163 |
| - |
164 |
| -.fadeIn { |
165 |
| - -webkit-animation-name: fadeIn; |
166 |
| - -moz-animation-name: fadeIn; |
167 |
| - -o-animation-name: fadeIn; |
168 |
| - animation-name: fadeIn; |
169 |
| -} |
170 |
| - |
171 |
| -/* animation ends */ |
172 | 4 | .content {
|
173 | 5 | height: auto;
|
174 | 6 | float: right;
|
175 | 7 | width: calc(100% - $sidebar-width);
|
176 | 8 | margin-top: 60px;
|
177 | 9 | }
|
178 | 10 |
|
| 11 | +@import 'animation.scss'; |
179 | 12 | @import 'raw-components/nav.scss';
|
180 | 13 | @import 'raw-components/sidebar.scss';
|
181 | 14 |
|
|
0 commit comments