-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
121 lines (112 loc) · 3.67 KB
/
Copy pathtest.html
File metadata and controls
121 lines (112 loc) · 3.67 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="superResete.css">
<link rel="stylesheet" href="firefly.css">
<link rel="stylesheet" href="styles.css">
<title>Firefly CSS</title>
</head>
<body>
<header>
<div class="fy-container-l">
<div class="fy-row fy-row-centerVertical">
<div class="">
<h1>Firefly CSS</h1>
<p>Solución para globalizar css, no intrusivo</p>
<p>@antony999k</p>
</div>
</div>
</div>
</header>
<section id="containers">
<div class="fy-container-l">
<h1>Contenedores</h1>
<p class="lead">Todo contenido debe ir dentro de un container "fy-container-", hay tres tipos de contenedor</p>
</div>
<div class="fy-container-l">
<h2>Contenedor Grande</h2>
<p>fy-container-l de 1160px</p>
</div>
<div class="bg-container">
<div class="fy-container-m">
<h2>Contenedor Mediano</h2>
<p>fy-container-m de 1040px</p>
</div>
</div>
</section>
<section id="row">
<div class="fy-container-l">
<h1>Filas</h1>
<h2>Fila Izquierda a derecha (Sin child)</h2>
<p>Div padre: fy-row</p>
<div class="fy-row" style="background-color:#ccc; height:100px;">
<div style="background-color:#7E85A2;">
<h3>hijo Row</h3>
</div>
<div style="background-color:#02DBA9">
<h3>hijo Row 2</h3>
</div>
<div style="background-color:#7E85A2">
<h3>hijo Row 3</h3>
</div>
<div style="background-color:#02DBA9">
<h3>hijo Row 4</h3>
</div>
</div>
<h2>Fila Izquierda a derecha (Child)</h2>
<p>Div padre: fy-row</p>
<p>Div hijo: fy-row-child</p>
<div class="fy-row" style="background-color:#ccc; height:100px;">
<div class="fy-row-chid" style="background-color:#7E85A2; padding-left:20px;">
<h3>hijo Row</h3>
</div>
<div class="fy-row-chid" style="background-color:#02DBA9; padding-left:20px;">
<h3>hijo Row 2</h3>
</div>
<div class="fy-row-chid" style="background-color:#7E85A2; padding-left:20px;">
<h3>hijo Row 3</h3>
</div>
<div class="fy-row-chid" style="background-color:#02DBA9; padding-left:20px;">
<h3>hijo Row 4</h3>
</div>
</div>
<h2>Fila arriba a abajo (Sin child)</h2>
<p>Div padre: fy-row</p>
<div class="fy-rowVertical" style="background-color:#ccc; height:200px;">
<div style="background-color:#7E85A2;">
<h3>hijo Row</h3>
</div>
<div style="background-color:#02DBA9">
<h3>hijo Row 2</h3>
</div>
<div style="background-color:#7E85A2">
<h3>hijo Row 3</h3>
</div>
<div style="background-color:#02DBA9">
<h3>hijo Row 4</h3>
</div>
</div>
<h2>Fila arriba a abajo (Child)</h2>
<p>Div padre: fy-row</p>
<p>Div hijo: fy-row-child</p>
<div class="fy-rowVertical" style="background-color:#ccc; height:200px;">
<div class="fy-row-chid" style="background-color:#7E85A2;">
<h3>hijo Row</h3>
</div>
<div class="fy-row-chid" style="background-color:#02DBA9">
<h3>hijo Row 2</h3>
</div>
<div class="fy-row-chid" style="background-color:#7E85A2">
<h3>hijo Row 3</h3>
</div>
<div class="fy-row-chid" style="background-color:#02DBA9">
<h3>hijo Row 4</h3>
</div>
</div>
</div>
</section>
</body>
</html>