starterlog-theme 1.1.3 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (112) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +52 -8
  3. data/_layouts/slide.html +105 -0
  4. data/_pages/profile/index.html +1 -1
  5. data/_pages/start/index.html +7 -2
  6. data/assets/modules/reveal.js/.gitignore +13 -0
  7. data/assets/modules/reveal.js/.travis.yml +5 -0
  8. data/assets/modules/reveal.js/CONTRIBUTING.md +23 -0
  9. data/assets/modules/reveal.js/Gruntfile.js +187 -0
  10. data/assets/modules/reveal.js/LICENSE +19 -0
  11. data/assets/modules/reveal.js/README.md +1185 -0
  12. data/assets/modules/reveal.js/bower.json +27 -0
  13. data/assets/modules/reveal.js/css/print/paper.css +203 -0
  14. data/assets/modules/reveal.js/css/print/pdf.css +171 -0
  15. data/assets/modules/reveal.js/css/reveal.css +1365 -0
  16. data/assets/modules/reveal.js/css/reveal.scss +1446 -0
  17. data/assets/modules/reveal.js/css/theme/README.md +21 -0
  18. data/assets/modules/reveal.js/css/theme/beige.css +296 -0
  19. data/assets/modules/reveal.js/css/theme/black.css +292 -0
  20. data/assets/modules/reveal.js/css/theme/blood.css +315 -0
  21. data/assets/modules/reveal.js/css/theme/league.css +298 -0
  22. data/assets/modules/reveal.js/css/theme/moon.css +296 -0
  23. data/assets/modules/reveal.js/css/theme/night.css +290 -0
  24. data/assets/modules/reveal.js/css/theme/serif.css +292 -0
  25. data/assets/modules/reveal.js/css/theme/simple.css +295 -0
  26. data/assets/modules/reveal.js/css/theme/sky.css +299 -0
  27. data/assets/modules/reveal.js/css/theme/solarized.css +296 -0
  28. data/assets/modules/reveal.js/css/theme/source/beige.scss +39 -0
  29. data/assets/modules/reveal.js/css/theme/source/black.scss +49 -0
  30. data/assets/modules/reveal.js/css/theme/source/blood.scss +78 -0
  31. data/assets/modules/reveal.js/css/theme/source/league.scss +34 -0
  32. data/assets/modules/reveal.js/css/theme/source/moon.scss +57 -0
  33. data/assets/modules/reveal.js/css/theme/source/night.scss +34 -0
  34. data/assets/modules/reveal.js/css/theme/source/serif.scss +35 -0
  35. data/assets/modules/reveal.js/css/theme/source/simple.scss +43 -0
  36. data/assets/modules/reveal.js/css/theme/source/sky.scss +46 -0
  37. data/assets/modules/reveal.js/css/theme/source/solarized.scss +63 -0
  38. data/assets/modules/reveal.js/css/theme/source/white.scss +49 -0
  39. data/assets/modules/reveal.js/css/theme/template/mixins.scss +29 -0
  40. data/assets/modules/reveal.js/css/theme/template/settings.scss +43 -0
  41. data/assets/modules/reveal.js/css/theme/template/theme.scss +352 -0
  42. data/assets/modules/reveal.js/css/theme/white.css +292 -0
  43. data/assets/modules/reveal.js/demo.html +410 -0
  44. data/assets/modules/reveal.js/index.html +50 -0
  45. data/assets/modules/reveal.js/js/reveal.js +4961 -0
  46. data/assets/modules/reveal.js/lib/css/zenburn.css +80 -0
  47. data/assets/modules/reveal.js/lib/font/league-gothic/LICENSE +2 -0
  48. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.css +10 -0
  49. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.eot +0 -0
  50. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.ttf +0 -0
  51. data/assets/modules/reveal.js/lib/font/league-gothic/league-gothic.woff +0 -0
  52. data/assets/modules/reveal.js/lib/font/source-sans-pro/LICENSE +45 -0
  53. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
  54. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.ttf +0 -0
  55. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
  56. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
  57. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.ttf +0 -0
  58. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
  59. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
  60. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.ttf +0 -0
  61. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
  62. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.eot +0 -0
  63. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.ttf +0 -0
  64. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro-semibolditalic.woff +0 -0
  65. data/assets/modules/reveal.js/lib/font/source-sans-pro/source-sans-pro.css +39 -0
  66. data/assets/modules/reveal.js/lib/js/classList.js +2 -0
  67. data/assets/modules/reveal.js/lib/js/head.min.js +9 -0
  68. data/assets/modules/reveal.js/lib/js/html5shiv.js +7 -0
  69. data/assets/modules/reveal.js/package.json +45 -0
  70. data/assets/modules/reveal.js/plugin/highlight/highlight.js +78 -0
  71. data/assets/modules/reveal.js/plugin/markdown/example.html +129 -0
  72. data/assets/modules/reveal.js/plugin/markdown/example.md +31 -0
  73. data/assets/modules/reveal.js/plugin/markdown/markdown.js +411 -0
  74. data/assets/modules/reveal.js/plugin/markdown/marked.js +6 -0
  75. data/assets/modules/reveal.js/plugin/math/math.js +67 -0
  76. data/assets/modules/reveal.js/plugin/multiplex/client.js +13 -0
  77. data/assets/modules/reveal.js/plugin/multiplex/index.js +64 -0
  78. data/assets/modules/reveal.js/plugin/multiplex/master.js +31 -0
  79. data/assets/modules/reveal.js/plugin/multiplex/package.json +19 -0
  80. data/assets/modules/reveal.js/plugin/notes-server/client.js +65 -0
  81. data/assets/modules/reveal.js/plugin/notes-server/index.js +69 -0
  82. data/assets/modules/reveal.js/plugin/notes-server/notes.html +585 -0
  83. data/assets/modules/reveal.js/plugin/notes/notes.html +609 -0
  84. data/assets/modules/reveal.js/plugin/notes/notes.js +145 -0
  85. data/assets/modules/reveal.js/plugin/print-pdf/print-pdf.js +51 -0
  86. data/assets/modules/reveal.js/plugin/search/search.js +196 -0
  87. data/assets/modules/reveal.js/plugin/zoom-js/zoom.js +288 -0
  88. data/assets/modules/reveal.js/test/examples/assets/image1.png +0 -0
  89. data/assets/modules/reveal.js/test/examples/assets/image2.png +0 -0
  90. data/assets/modules/reveal.js/test/examples/barebones.html +41 -0
  91. data/assets/modules/reveal.js/test/examples/embedded-media.html +49 -0
  92. data/assets/modules/reveal.js/test/examples/math.html +185 -0
  93. data/assets/modules/reveal.js/test/examples/slide-backgrounds.html +144 -0
  94. data/assets/modules/reveal.js/test/examples/slide-transitions.html +101 -0
  95. data/assets/modules/reveal.js/test/qunit-1.12.0.css +244 -0
  96. data/assets/modules/reveal.js/test/qunit-1.12.0.js +2212 -0
  97. data/assets/modules/reveal.js/test/simple.md +12 -0
  98. data/assets/modules/reveal.js/test/test-markdown-element-attributes.html +134 -0
  99. data/assets/modules/reveal.js/test/test-markdown-element-attributes.js +46 -0
  100. data/assets/modules/reveal.js/test/test-markdown-external.html +36 -0
  101. data/assets/modules/reveal.js/test/test-markdown-external.js +24 -0
  102. data/assets/modules/reveal.js/test/test-markdown-options.html +41 -0
  103. data/assets/modules/reveal.js/test/test-markdown-options.js +26 -0
  104. data/assets/modules/reveal.js/test/test-markdown-slide-attributes.html +128 -0
  105. data/assets/modules/reveal.js/test/test-markdown-slide-attributes.js +47 -0
  106. data/assets/modules/reveal.js/test/test-markdown.html +52 -0
  107. data/assets/modules/reveal.js/test/test-markdown.js +15 -0
  108. data/assets/modules/reveal.js/test/test-pdf.html +83 -0
  109. data/assets/modules/reveal.js/test/test-pdf.js +15 -0
  110. data/assets/modules/reveal.js/test/test.html +86 -0
  111. data/assets/modules/reveal.js/test/test.js +597 -0
  112. metadata +117 -10
@@ -0,0 +1,49 @@
1
+ /**
2
+ * White theme for reveal.js. This is the opposite of the 'black' theme.
3
+ *
4
+ * By Hakim El Hattab, http://hakim.se
5
+ */
6
+
7
+
8
+ // Default mixins and settings -----------------
9
+ @import "../template/mixins";
10
+ @import "../template/settings";
11
+ // ---------------------------------------------
12
+
13
+
14
+ // Include theme-specific fonts
15
+ @import url(../../lib/font/source-sans-pro/source-sans-pro.css);
16
+
17
+
18
+ // Override theme settings (see ../template/settings.scss)
19
+ $backgroundColor: #fff;
20
+
21
+ $mainColor: #222;
22
+ $headingColor: #222;
23
+
24
+ $mainFontSize: 42px;
25
+ $mainFont: 'Source Sans Pro', Helvetica, sans-serif;
26
+ $headingFont: 'Source Sans Pro', Helvetica, sans-serif;
27
+ $headingTextShadow: none;
28
+ $headingLetterSpacing: normal;
29
+ $headingTextTransform: uppercase;
30
+ $headingFontWeight: 600;
31
+ $linkColor: #2a76dd;
32
+ $linkColorHover: lighten( $linkColor, 15% );
33
+ $selectionBackgroundColor: lighten( $linkColor, 25% );
34
+
35
+ $heading1Size: 2.5em;
36
+ $heading2Size: 1.6em;
37
+ $heading3Size: 1.3em;
38
+ $heading4Size: 1.0em;
39
+
40
+ section.has-dark-background {
41
+ &, h1, h2, h3, h4, h5, h6 {
42
+ color: #fff;
43
+ }
44
+ }
45
+
46
+
47
+ // Theme template ------------------------------
48
+ @import "../template/theme";
49
+ // ---------------------------------------------
@@ -0,0 +1,29 @@
1
+ @mixin vertical-gradient( $top, $bottom ) {
2
+ background: $top;
3
+ background: -moz-linear-gradient( top, $top 0%, $bottom 100% );
4
+ background: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) );
5
+ background: -webkit-linear-gradient( top, $top 0%, $bottom 100% );
6
+ background: -o-linear-gradient( top, $top 0%, $bottom 100% );
7
+ background: -ms-linear-gradient( top, $top 0%, $bottom 100% );
8
+ background: linear-gradient( top, $top 0%, $bottom 100% );
9
+ }
10
+
11
+ @mixin horizontal-gradient( $top, $bottom ) {
12
+ background: $top;
13
+ background: -moz-linear-gradient( left, $top 0%, $bottom 100% );
14
+ background: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) );
15
+ background: -webkit-linear-gradient( left, $top 0%, $bottom 100% );
16
+ background: -o-linear-gradient( left, $top 0%, $bottom 100% );
17
+ background: -ms-linear-gradient( left, $top 0%, $bottom 100% );
18
+ background: linear-gradient( left, $top 0%, $bottom 100% );
19
+ }
20
+
21
+ @mixin radial-gradient( $outer, $inner, $type: circle ) {
22
+ background: $outer;
23
+ background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
24
+ background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) );
25
+ background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
26
+ background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
27
+ background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% );
28
+ background: radial-gradient( center, $type cover, $inner 0%, $outer 100% );
29
+ }
@@ -0,0 +1,43 @@
1
+ // Base settings for all themes that can optionally be
2
+ // overridden by the super-theme
3
+
4
+ // Background of the presentation
5
+ $backgroundColor: #2b2b2b;
6
+
7
+ // Primary/body text
8
+ $mainFont: 'Lato', sans-serif;
9
+ $mainFontSize: 40px;
10
+ $mainColor: #eee;
11
+
12
+ // Vertical spacing between blocks of text
13
+ $blockMargin: 20px;
14
+
15
+ // Headings
16
+ $headingMargin: 0 0 $blockMargin 0;
17
+ $headingFont: 'League Gothic', Impact, sans-serif;
18
+ $headingColor: #eee;
19
+ $headingLineHeight: 1.2;
20
+ $headingLetterSpacing: normal;
21
+ $headingTextTransform: uppercase;
22
+ $headingTextShadow: none;
23
+ $headingFontWeight: normal;
24
+ $heading1TextShadow: $headingTextShadow;
25
+
26
+ $heading1Size: 3.77em;
27
+ $heading2Size: 2.11em;
28
+ $heading3Size: 1.55em;
29
+ $heading4Size: 1.00em;
30
+
31
+ // Links and actions
32
+ $linkColor: #13DAEC;
33
+ $linkColorHover: lighten( $linkColor, 20% );
34
+
35
+ // Text selection
36
+ $selectionBackgroundColor: #FF5E99;
37
+ $selectionColor: #fff;
38
+
39
+ // Generates the presentation background, can be overridden
40
+ // to return a background image or gradient
41
+ @mixin bodyBackground() {
42
+ background: $backgroundColor;
43
+ }
@@ -0,0 +1,352 @@
1
+ // Base theme template for reveal.js
2
+
3
+ /*********************************************
4
+ * GLOBAL STYLES
5
+ *********************************************/
6
+
7
+ body {
8
+ @include bodyBackground();
9
+ background-color: $backgroundColor;
10
+ }
11
+
12
+ .reveal {
13
+ font-family: $mainFont;
14
+ font-size: $mainFontSize;
15
+ font-weight: normal;
16
+ color: $mainColor;
17
+ }
18
+
19
+ ::selection {
20
+ color: $selectionColor;
21
+ background: $selectionBackgroundColor;
22
+ text-shadow: none;
23
+ }
24
+
25
+ ::-moz-selection {
26
+ color: $selectionColor;
27
+ background: $selectionBackgroundColor;
28
+ text-shadow: none;
29
+ }
30
+
31
+ .reveal .slides>section,
32
+ .reveal .slides>section>section {
33
+ line-height: 1.3;
34
+ font-weight: inherit;
35
+ }
36
+
37
+ /*********************************************
38
+ * HEADERS
39
+ *********************************************/
40
+
41
+ .reveal h1,
42
+ .reveal h2,
43
+ .reveal h3,
44
+ .reveal h4,
45
+ .reveal h5,
46
+ .reveal h6 {
47
+ margin: $headingMargin;
48
+ color: $headingColor;
49
+
50
+ font-family: $headingFont;
51
+ font-weight: $headingFontWeight;
52
+ line-height: $headingLineHeight;
53
+ letter-spacing: $headingLetterSpacing;
54
+
55
+ text-transform: $headingTextTransform;
56
+ text-shadow: $headingTextShadow;
57
+
58
+ word-wrap: break-word;
59
+ }
60
+
61
+ .reveal h1 {font-size: $heading1Size; }
62
+ .reveal h2 {font-size: $heading2Size; }
63
+ .reveal h3 {font-size: $heading3Size; }
64
+ .reveal h4 {font-size: $heading4Size; }
65
+
66
+ .reveal h1 {
67
+ text-shadow: $heading1TextShadow;
68
+ }
69
+
70
+
71
+ /*********************************************
72
+ * OTHER
73
+ *********************************************/
74
+
75
+ .reveal p {
76
+ margin: $blockMargin 0;
77
+ line-height: 1.3;
78
+ }
79
+
80
+ /* Ensure certain elements are never larger than the slide itself */
81
+ .reveal img,
82
+ .reveal video,
83
+ .reveal iframe {
84
+ max-width: 95%;
85
+ max-height: 95%;
86
+ }
87
+ .reveal strong,
88
+ .reveal b {
89
+ font-weight: bold;
90
+ }
91
+
92
+ .reveal em {
93
+ font-style: italic;
94
+ }
95
+
96
+ .reveal ol,
97
+ .reveal dl,
98
+ .reveal ul {
99
+ display: inline-block;
100
+
101
+ text-align: left;
102
+ margin: 0 0 0 1em;
103
+ }
104
+
105
+ .reveal ol {
106
+ list-style-type: decimal;
107
+ }
108
+
109
+ .reveal ul {
110
+ list-style-type: disc;
111
+ }
112
+
113
+ .reveal ul ul {
114
+ list-style-type: square;
115
+ }
116
+
117
+ .reveal ul ul ul {
118
+ list-style-type: circle;
119
+ }
120
+
121
+ .reveal ul ul,
122
+ .reveal ul ol,
123
+ .reveal ol ol,
124
+ .reveal ol ul {
125
+ display: block;
126
+ margin-left: 40px;
127
+ }
128
+
129
+ .reveal dt {
130
+ font-weight: bold;
131
+ }
132
+
133
+ .reveal dd {
134
+ margin-left: 40px;
135
+ }
136
+
137
+ .reveal q,
138
+ .reveal blockquote {
139
+ quotes: none;
140
+ }
141
+
142
+ .reveal blockquote {
143
+ display: block;
144
+ position: relative;
145
+ width: 70%;
146
+ margin: $blockMargin auto;
147
+ padding: 5px;
148
+
149
+ font-style: italic;
150
+ background: rgba(255, 255, 255, 0.05);
151
+ box-shadow: 0px 0px 2px rgba(0,0,0,0.2);
152
+ }
153
+ .reveal blockquote p:first-child,
154
+ .reveal blockquote p:last-child {
155
+ display: inline-block;
156
+ }
157
+
158
+ .reveal q {
159
+ font-style: italic;
160
+ }
161
+
162
+ .reveal pre {
163
+ display: block;
164
+ position: relative;
165
+ width: 90%;
166
+ margin: $blockMargin auto;
167
+
168
+ text-align: left;
169
+ font-size: 0.55em;
170
+ font-family: monospace;
171
+ line-height: 1.2em;
172
+
173
+ word-wrap: break-word;
174
+
175
+ box-shadow: 0px 0px 6px rgba(0,0,0,0.3);
176
+ }
177
+ .reveal code {
178
+ font-family: monospace;
179
+ }
180
+
181
+ .reveal pre code {
182
+ display: block;
183
+ padding: 5px;
184
+ overflow: auto;
185
+ max-height: 400px;
186
+ word-wrap: normal;
187
+ }
188
+
189
+ .reveal table {
190
+ margin: auto;
191
+ border-collapse: collapse;
192
+ border-spacing: 0;
193
+ }
194
+
195
+ .reveal table th {
196
+ font-weight: bold;
197
+ }
198
+
199
+ .reveal table th,
200
+ .reveal table td {
201
+ text-align: left;
202
+ padding: 0.2em 0.5em 0.2em 0.5em;
203
+ border-bottom: 1px solid;
204
+ }
205
+
206
+ .reveal table th[align="center"],
207
+ .reveal table td[align="center"] {
208
+ text-align: center;
209
+ }
210
+
211
+ .reveal table th[align="right"],
212
+ .reveal table td[align="right"] {
213
+ text-align: right;
214
+ }
215
+
216
+ .reveal table tbody tr:last-child th,
217
+ .reveal table tbody tr:last-child td {
218
+ border-bottom: none;
219
+ }
220
+
221
+ .reveal sup {
222
+ vertical-align: super;
223
+ }
224
+ .reveal sub {
225
+ vertical-align: sub;
226
+ }
227
+
228
+ .reveal small {
229
+ display: inline-block;
230
+ font-size: 0.6em;
231
+ line-height: 1.2em;
232
+ vertical-align: top;
233
+ }
234
+
235
+ .reveal small * {
236
+ vertical-align: top;
237
+ }
238
+
239
+
240
+ /*********************************************
241
+ * LINKS
242
+ *********************************************/
243
+
244
+ .reveal a {
245
+ color: $linkColor;
246
+ text-decoration: none;
247
+
248
+ -webkit-transition: color .15s ease;
249
+ -moz-transition: color .15s ease;
250
+ transition: color .15s ease;
251
+ }
252
+ .reveal a:hover {
253
+ color: $linkColorHover;
254
+
255
+ text-shadow: none;
256
+ border: none;
257
+ }
258
+
259
+ .reveal .roll span:after {
260
+ color: #fff;
261
+ background: darken( $linkColor, 15% );
262
+ }
263
+
264
+
265
+ /*********************************************
266
+ * IMAGES
267
+ *********************************************/
268
+
269
+ .reveal section img {
270
+ margin: 15px 0px;
271
+ background: rgba(255,255,255,0.12);
272
+ border: 4px solid $mainColor;
273
+
274
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
275
+ }
276
+
277
+ .reveal section img.plain {
278
+ border: 0;
279
+ box-shadow: none;
280
+ }
281
+
282
+ .reveal a img {
283
+ -webkit-transition: all .15s linear;
284
+ -moz-transition: all .15s linear;
285
+ transition: all .15s linear;
286
+ }
287
+
288
+ .reveal a:hover img {
289
+ background: rgba(255,255,255,0.2);
290
+ border-color: $linkColor;
291
+
292
+ box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
293
+ }
294
+
295
+
296
+ /*********************************************
297
+ * NAVIGATION CONTROLS
298
+ *********************************************/
299
+
300
+ .reveal .controls .navigate-left,
301
+ .reveal .controls .navigate-left.enabled {
302
+ border-right-color: $linkColor;
303
+ }
304
+
305
+ .reveal .controls .navigate-right,
306
+ .reveal .controls .navigate-right.enabled {
307
+ border-left-color: $linkColor;
308
+ }
309
+
310
+ .reveal .controls .navigate-up,
311
+ .reveal .controls .navigate-up.enabled {
312
+ border-bottom-color: $linkColor;
313
+ }
314
+
315
+ .reveal .controls .navigate-down,
316
+ .reveal .controls .navigate-down.enabled {
317
+ border-top-color: $linkColor;
318
+ }
319
+
320
+ .reveal .controls .navigate-left.enabled:hover {
321
+ border-right-color: $linkColorHover;
322
+ }
323
+
324
+ .reveal .controls .navigate-right.enabled:hover {
325
+ border-left-color: $linkColorHover;
326
+ }
327
+
328
+ .reveal .controls .navigate-up.enabled:hover {
329
+ border-bottom-color: $linkColorHover;
330
+ }
331
+
332
+ .reveal .controls .navigate-down.enabled:hover {
333
+ border-top-color: $linkColorHover;
334
+ }
335
+
336
+
337
+ /*********************************************
338
+ * PROGRESS BAR
339
+ *********************************************/
340
+
341
+ .reveal .progress {
342
+ background: rgba(0,0,0,0.2);
343
+ }
344
+ .reveal .progress span {
345
+ background: $linkColor;
346
+
347
+ -webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
348
+ -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
349
+ transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);
350
+ }
351
+
352
+