Last active
May 9, 2018 07:39
-
-
Save jkprg/a0fb2e7b9eea0a6c9f2f7eeab000c1fe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Test UIKit</title> | |
| <link rel="stylesheet" href="node_modules/uikit/dist/css/uikit.min.css"> | |
| <link rel="stylesheet" href="node_modules/uikit/dist/css/uikit-rtl.min.css"> | |
| </head> | |
| <body> | |
| <div class="uk-container"> | |
| <div class="uk-card uk-card-body"> | |
| <h3 class="uk-card-title">Example headline</h3> | |
| <div class="uk-button-group"> | |
| <button class="uk-button uk-button-secondary" uk-tooltip="title: Hello World">Hover</button> | |
| <button class="uk-button uk-button-secondary" uk-tooltip="title: Hello World">Hover</button> | |
| <button class="uk-button uk-button-default" uk-tooltip="title: Hello World">Hover</button> | |
| <button class="uk-button uk-button-default" uk-tooltip="title: Hello World">Hover</button> | |
| <button class="uk-button uk-button-default" uk-tooltip="title: Hello World">Hover</button> | |
| <button class="uk-button uk-button-default" uk-tooltip="title: Hello World">Hover</button> | |
| </div> | |
| </div> | |
| </div> | |
| <script src="dist/bundle.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment