UNPKG

foundation-sites

Version:

The most advanced responsive front-end framework in the world.

57 lines (51 loc) 1.71 kB
<!doctype html> <!--[if IE 9]><html class="lt-ie10" lang="en" > <![endif]--> <html class="no-js" lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no"> <title>Foundation for Sites Testing</title> <link href="../motion-ui/dist/motion-ui.css" rel="stylesheet" /> <link href="../assets/css/foundation-prototype.css" rel="stylesheet" /> </head> <body> <div class="grid-container"> <div class="grid-x grid-padding-x"> <div class="cell"> <h2>Border None</h2> </div> <div class="cell"> <div class="callout primary border-none"> Hi! I am a Primary callout with no Borders </div> </div> <div class="cell"> <div class="callout secondary border-none"> Hi! I am a Secondary callout with no Borders </div> </div> <div class="cell"> <div class="callout success border-none"> Hi! I am a Success callout with no Borders </div> </div> <div class="cell"> <div class="callout warning border-none"> Hi! I am a Warning callout with no Borders </div> </div> <div class="cell"> <div class="callout alert border-none"> Hi! I am a Alert callout with no Borders </div> </div> </div> </div> <script src="../assets/js/vendor.js"></script> <script src="../assets/js/foundation.js"></script> <script> $(document).foundation(); </script> </body> </html>