36 lines
1.3 KiB
Markdown
36 lines
1.3 KiB
Markdown
![]() |
---
|
||
|
title: CSS Framework Bulma
|
||
|
localeTitle: CSS Framework Bulma
|
||
|
---
|
||
|
# CSS Framework Bulma
|
||
|
|
||
|
Bulma es un marco CSS moderno basado en [Flexbox](http://forum.freecodecamp.com/t/css-flexbox-tips-and-tricks) y altamente personalizable utilizando [Sass](http://sass-lang.com/) (SCSS).
|
||
|
|
||
|
## Empezando
|
||
|
|
||
|
Aquí hay una plantilla HTML simple que incluye el último CSS compilado y minificado para la biblioteca Bulma.
|
||
|
|
||
|
```html
|
||
|
|
||
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>Bulma Template</title>
|
||
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.0.23/css/bulma.min.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Hello World</h1>
|
||
|
<!-- Add all HTML Code here -->
|
||
|
</body>
|
||
|
</html>
|
||
|
```
|
||
|
|
||
|
Hemos utilizado un CDN en este ejemplo, pero puede consultar otras formas de instalar Bulma [aquí](http://bulma.io/documentation/overview/start/) .
|
||
|
|
||
|
## Recursos de aprendizaje
|
||
|
|
||
|
* La documentación oficial de Bulma está disponible [aquí](http://bulma.io/documentation/overview/start/) .
|
||
|
* Revisa el repositorio GitHub de código abierto de Bulma [aquí](https://github.com/jgthms/bulma) .
|