Explorer
project
docs
bulma.html
images
styles
index.html
Dependencies
Bootcamp
Study group
Collaborate with peers in your dedicated #study-group channel.
Code reviews
Submit projects for review using the /review
command in your #code-reviews channel
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello Bulma!</title>
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.0/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<!-- <link rel="stylesheet" href="styles/debug.css"> -->
<style>
.center {
display: flex;
justify-content: center;
align-items: center;
}
.emoticon { white-space: pre; }
</style>
</head>
<body>
<!-- .hero -->
<section class="hero">
<div class="hero-body">
<div class="container">
<figure class="image center">
<img src="images/bulma-logo.png" style="max-width: 160px;">
</figure>
</div>
</div>
</section>
<!-- /.hero -->
<!-- .section -->
<section class="section has-background-light">
<div class="container">
<div class="columns">
<div class="column">
<div class="notification is-info">
<h1 class="title is-size-4">Bulma?</h1>
<p class="is-size-5">
Bulma is a modern CSS framework from @jgthms, based on Flexbox.
Using Bulma, we can describe our website's design using just classes. <span class="emoticon">ᕕ( ᐛ )ᕗ</span>
</p>
</div>
</div>
<div class="column">
<div class="notification is-primary">
<h1 class="title is-size-4">…Flexbox?</h1>
<p class="is-size-5">
Flexbox is a CSS spec that makes sectioning and aligning more natural.
We don't need to know Flexbox but it's how Bulma works behind-the-scenes. <span class="emoticon">⦤(^ー^)⦥</span>
</p>
</div>
</div>
<div class="column">
<div class="notification is-warning">
<h1 class="title is-size-4">…Classes?</h1>
<p class="is-size-5">
Instead of writing our CSS per-element, we can use predefined classes.
With enough classes, we can describe our website design using semantics. <span class="emoticon">٩(^ᴗ^)۶</span>
</p>
</div>
</div>
</div>
</div>
</section>
<!-- /.section -->
</body>
</html>