-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (83 loc) · 2.24 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Botones con CSS | EscuelaWeb</title>
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="font/style.css">
<link rel="stylesheet" href="css/botones.css">
</head>
<body>
<header>
<div class="row">
<h1>Botones con CSS</h1>
</div>
</header>
<section id="botones-simples">
<header class="row">
<h2>Botones estandar</h2>
<p>
Los botones estandar, son enlaces que tienen propiedades graficas
de un boton y pueden presentarse en distintas presentaciones.
</p>
<p>
En este caso vamos a crear un boton con 4 tipos de colores y 3 variantes
de tamaño, extendiendo la clase "boton" para agregar variaciones.
</p>
</header>
<div class="row flex">
<article class="column text-center">
<header>
<h4>Boton Base</h4>
</header>
<p>
<a href="#" class="boton">Boton base</a>
</p>
<p>
<a href="#" class="boton error">Boton de error</a>
</p>
<p>
<a href="#" class="boton success">Boton de success</a>
</p>
<p>
<a href="#" class="boton warning">Boton de warning</a>
</p>
</article>
<article class="column text-center">
<header>
<h4>Variaciones de tamaño</h4>
</header>
<p>
<a href="#" class="boton">Tamaño estandar</a>
</p>
<p>
<a href="#" class="boton m">Boton mediano</a>
</p>
<p>
<a href="#" class="boton l">Boton grande</a>
</p>
<p>
<a href="#" class="boton block">Boton ancho completo</a>
</p>
</article>
<article class="column text-center">
<header>
<h4>Botones con iconos</h4>
</header>
<p>
<a href="#" class="boton icon">
Icono a la izquierda
<span class="icon-link"></span>
</a>
</p>
<p>
<a href="#" class="boton icon right">
Icono a la derecha
<span class="icon-plus2"></span>
</a>
</p>
</article>
</div>
</section>
</body>
</html>