You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -146,6 +152,7 @@ You can found default variables in [dist/default/vars.scss](https://github.com/c
146
152
## Get started
147
153
148
154
### The simplest grid system
155
+
149
156
> Just add columns, they will resize themselves
150
157
151
158
```html
@@ -158,6 +165,7 @@ You can found default variables in [dist/default/vars.scss](https://github.com/c
158
165
</div>
159
166
```
160
167
### Sticky footer
168
+
161
169
> Sticky footer with one class
162
170
163
171
```html
@@ -168,13 +176,41 @@ You can found default variables in [dist/default/vars.scss](https://github.com/c
168
176
</body>
169
177
```
170
178
179
+
### Tabs
180
+
181
+
> Tabs without the JavaScript
182
+
183
+
```html
184
+
<div class="tabs">
185
+
<ul>
186
+
<li><a href="#tab-1">Tab 1</a></li>
187
+
<li><a href="#tab-2">Tab 2</a></li>
188
+
<li><a href="#tab-3">Tab 3</a></li>
189
+
</ul>
190
+
</div>
191
+
<section class="tab-content">
192
+
<article id="tab-2">Content of second tab</article>
193
+
<article id="tab-3">Content of third tab</article>
194
+
<!-- Default tab -->
195
+
<article id="tab-1">Content of first tab</article>
196
+
</section>
197
+
```
198
+
171
199
### em.oji
200
+
172
201
> You can use Emoji as icons with effects on it
173
202
174
203
```html
175
204
<em class="oji flat">📥</em>
176
205
```
177
206
207
+
### Current version
208
+
> You can call current version with following code:
209
+
210
+
```html
211
+
<span class="coco version">version </span>
212
+
```
213
+
178
214
## Browser Support
179
215
180
216
COCO uses [autoprefixer](https://github.com/postcss/autoprefixer) to make (most) Flexbox features compatible with earlier browser versions. According to [Can I use](https://caniuse.com/#feat=flexbox), COCO is compatible with **recent** versions of:
@@ -191,6 +227,10 @@ Internet Explorer (10+) is only partially supported.
191
227
192
228
Browse the online documentation in [WIKI page](https://github.com/cryptohub-digital/coco/wiki) or [Online manual](https://cryptohub-digital.github.io/coco/).
193
229
230
+
## Changelog
231
+
232
+
You can check the changes in our [changelog](https://github.com/cryptohub-digital/coco/blob/master/CHANGELOG.md).
233
+
194
234
## Copyright and license
195
235
196
236
Code copyright 2018 [Crypto ▪ Hub®](https://github.com/cryptohub-digital), [Raisty](https://github.com/raisty); [Jeremy Thomas](https://github.com/jgthms). Code released under the [MIT license](https://github.com/cryptohub-digital/coco/blob/master/LICENSE).
0 commit comments