Skip to content

Commit 33764cb

Browse files
author
Vanesa
committed
Inicializando proyecto - Estructura
1 parent a4d18a4 commit 33764cb

2 files changed

Lines changed: 371 additions & 0 deletions

File tree

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Codificador de entidades y números HTML
2+
3+
## Índice de contenido
4+
- [Descripción](#descripción)
5+
6+
7+
## Descripción
8+
9+
Aplicación para codificar símbolos obteniendo tanto su
10+
**entidad HTML** como su **número HTML**.
11+
Incluye además un componente tab donde visualizar un
12+
amplio número de símbolos y sus codificaciones.
13+
14+
*Autora:* Vanesa Rodríguez
15+
*Versión:* 1.0
16+
17+

css/normalize.css

Lines changed: 354 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,354 @@
1+
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
2+
3+
/* Document
4+
========================================================================== */
5+
6+
/**
7+
* 1. Correct the line height in all browsers.
8+
* 2. Prevent adjustments of font size after orientation changes in iOS.
9+
*/
10+
* {
11+
box-sizing: border-box;
12+
margin: 0;
13+
padding: 0;
14+
}
15+
16+
html {
17+
line-height: 1.15; /* 1 */
18+
-webkit-text-size-adjust: 100%; /* 2 */
19+
}
20+
21+
/* Sections
22+
========================================================================== */
23+
24+
/**
25+
* Remove the margin in all browsers.
26+
*/
27+
28+
body {
29+
margin: 0;
30+
}
31+
32+
/**
33+
* Render the `main` element consistently in IE.
34+
*/
35+
36+
main {
37+
display: block;
38+
}
39+
40+
/**
41+
* Correct the font size and margin on `h1` elements within `section` and
42+
* `article` contexts in Chrome, Firefox, and Safari.
43+
*/
44+
45+
h1 {
46+
font-size: 2em;
47+
margin: 0.67em 0;
48+
}
49+
50+
/* Grouping content
51+
========================================================================== */
52+
53+
/**
54+
* 1. Add the correct box sizing in Firefox.
55+
* 2. Show the overflow in Edge and IE.
56+
*/
57+
58+
hr {
59+
box-sizing: content-box; /* 1 */
60+
height: 0; /* 1 */
61+
overflow: visible; /* 2 */
62+
}
63+
64+
/**
65+
* 1. Correct the inheritance and scaling of font size in all browsers.
66+
* 2. Correct the odd `em` font sizing in all browsers.
67+
*/
68+
69+
pre {
70+
font-family: monospace, monospace; /* 1 */
71+
font-size: 1em; /* 2 */
72+
}
73+
74+
/* Text-level semantics
75+
========================================================================== */
76+
77+
/**
78+
* Remove the gray background on active links in IE 10.
79+
*/
80+
81+
a {
82+
background-color: transparent;
83+
}
84+
85+
/**
86+
* 1. Remove the bottom border in Chrome 57-
87+
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
88+
*/
89+
90+
abbr[title] {
91+
border-bottom: none; /* 1 */
92+
text-decoration: underline; /* 2 */
93+
text-decoration: underline dotted; /* 2 */
94+
}
95+
96+
/**
97+
* Add the correct font weight in Chrome, Edge, and Safari.
98+
*/
99+
100+
b,
101+
strong {
102+
font-weight: bolder;
103+
}
104+
105+
/**
106+
* 1. Correct the inheritance and scaling of font size in all browsers.
107+
* 2. Correct the odd `em` font sizing in all browsers.
108+
*/
109+
110+
code,
111+
kbd,
112+
samp {
113+
font-family: monospace, monospace; /* 1 */
114+
font-size: 1em; /* 2 */
115+
}
116+
117+
/**
118+
* Add the correct font size in all browsers.
119+
*/
120+
121+
small {
122+
font-size: 80%;
123+
}
124+
125+
/**
126+
* Prevent `sub` and `sup` elements from affecting the line height in
127+
* all browsers.
128+
*/
129+
130+
sub,
131+
sup {
132+
font-size: 75%;
133+
line-height: 0;
134+
position: relative;
135+
vertical-align: baseline;
136+
}
137+
138+
sub {
139+
bottom: -0.25em;
140+
}
141+
142+
sup {
143+
top: -0.5em;
144+
}
145+
146+
/* Embedded content
147+
========================================================================== */
148+
149+
/**
150+
* Remove the border on images inside links in IE 10.
151+
*/
152+
153+
img {
154+
border-style: none;
155+
}
156+
157+
/* Forms
158+
========================================================================== */
159+
160+
/**
161+
* 1. Change the font styles in all browsers.
162+
* 2. Remove the margin in Firefox and Safari.
163+
*/
164+
165+
button,
166+
input,
167+
optgroup,
168+
select,
169+
textarea {
170+
font-family: inherit; /* 1 */
171+
font-size: 100%; /* 1 */
172+
line-height: 1.15; /* 1 */
173+
margin: 0; /* 2 */
174+
}
175+
176+
/**
177+
* Show the overflow in IE.
178+
* 1. Show the overflow in Edge.
179+
*/
180+
181+
button,
182+
input { /* 1 */
183+
overflow: visible;
184+
}
185+
186+
/**
187+
* Remove the inheritance of text transform in Edge, Firefox, and IE.
188+
* 1. Remove the inheritance of text transform in Firefox.
189+
*/
190+
191+
button,
192+
select { /* 1 */
193+
text-transform: none;
194+
}
195+
196+
/**
197+
* Correct the inability to style clickable types in iOS and Safari.
198+
*/
199+
200+
button,
201+
[type="button"],
202+
[type="reset"],
203+
[type="submit"] {
204+
-webkit-appearance: button;
205+
}
206+
207+
/**
208+
* Remove the inner border and padding in Firefox.
209+
*/
210+
211+
button::-moz-focus-inner,
212+
[type="button"]::-moz-focus-inner,
213+
[type="reset"]::-moz-focus-inner,
214+
[type="submit"]::-moz-focus-inner {
215+
border-style: none;
216+
padding: 0;
217+
}
218+
219+
/**
220+
* Restore the focus styles unset by the previous rule.
221+
*/
222+
223+
button:-moz-focusring,
224+
[type="button"]:-moz-focusring,
225+
[type="reset"]:-moz-focusring,
226+
[type="submit"]:-moz-focusring {
227+
outline: 1px dotted ButtonText;
228+
}
229+
230+
/**
231+
* Correct the padding in Firefox.
232+
*/
233+
234+
fieldset {
235+
padding: 0.35em 0.75em 0.625em;
236+
}
237+
238+
/**
239+
* 1. Correct the text wrapping in Edge and IE.
240+
* 2. Correct the color inheritance from `fieldset` elements in IE.
241+
* 3. Remove the padding so developers are not caught out when they zero out
242+
* `fieldset` elements in all browsers.
243+
*/
244+
245+
legend {
246+
box-sizing: border-box; /* 1 */
247+
color: inherit; /* 2 */
248+
display: table; /* 1 */
249+
max-width: 100%; /* 1 */
250+
padding: 0; /* 3 */
251+
white-space: normal; /* 1 */
252+
}
253+
254+
/**
255+
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
256+
*/
257+
258+
progress {
259+
vertical-align: baseline;
260+
}
261+
262+
/**
263+
* Remove the default vertical scrollbar in IE 10+.
264+
*/
265+
266+
textarea {
267+
overflow: auto;
268+
}
269+
270+
/**
271+
* 1. Add the correct box sizing in IE 10.
272+
* 2. Remove the padding in IE 10.
273+
*/
274+
275+
[type="checkbox"],
276+
[type="radio"] {
277+
box-sizing: border-box; /* 1 */
278+
padding: 0; /* 2 */
279+
}
280+
281+
/**
282+
* Correct the cursor style of increment and decrement buttons in Chrome.
283+
*/
284+
285+
[type="number"]::-webkit-inner-spin-button,
286+
[type="number"]::-webkit-outer-spin-button {
287+
height: auto;
288+
}
289+
290+
/**
291+
* 1. Correct the odd appearance in Chrome and Safari.
292+
* 2. Correct the outline style in Safari.
293+
*/
294+
295+
[type="search"] {
296+
-webkit-appearance: textfield; /* 1 */
297+
outline-offset: -2px; /* 2 */
298+
}
299+
300+
/**
301+
* Remove the inner padding in Chrome and Safari on macOS.
302+
*/
303+
304+
[type="search"]::-webkit-search-decoration {
305+
-webkit-appearance: none;
306+
}
307+
308+
/**
309+
* 1. Correct the inability to style clickable types in iOS and Safari.
310+
* 2. Change font properties to `inherit` in Safari.
311+
*/
312+
313+
::-webkit-file-upload-button {
314+
-webkit-appearance: button; /* 1 */
315+
font: inherit; /* 2 */
316+
}
317+
318+
/* Interactive
319+
========================================================================== */
320+
321+
/*
322+
* Add the correct display in Edge, IE 10+, and Firefox.
323+
*/
324+
325+
details {
326+
display: block;
327+
}
328+
329+
/*
330+
* Add the correct display in all browsers.
331+
*/
332+
333+
summary {
334+
display: list-item;
335+
}
336+
337+
/* Misc
338+
========================================================================== */
339+
340+
/**
341+
* Add the correct display in IE 10+.
342+
*/
343+
344+
template {
345+
display: none;
346+
}
347+
348+
/**
349+
* Add the correct display in IE 10.
350+
*/
351+
352+
[hidden] {
353+
display: none;
354+
}

0 commit comments

Comments
 (0)