Skip to content

Commit 4db3bf7

Browse files
committed
First commit
0 parents  commit 4db3bf7

File tree

7 files changed

+1654
-0
lines changed

7 files changed

+1654
-0
lines changed

css/app.css

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
body {
2+
background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
3+
font-family: "Staatliches", cursive;
4+
}
5+
html {
6+
font-size: 62.5%;
7+
}
8+
h1 {
9+
font-family: "Staatliches", cursive;
10+
font-size: 6rem;
11+
padding: 3rem 0;
12+
margin: 0;
13+
}
14+
h2 {
15+
font-family: "Staatliches", cursive;
16+
font-size: 3rem;
17+
padding: 3rem 0;
18+
margin: 0;
19+
text-align: center;
20+
}
21+
p {
22+
font-size: 2rem;
23+
}
24+
h1,
25+
p {
26+
text-align: center;
27+
}
28+
#app,
29+
form {
30+
max-width: 1100px;
31+
margin: 0 auto;
32+
padding: 4rem;
33+
background: white;
34+
margin-bottom: 10rem;
35+
font-family: Arial, Helvetica, sans-serif;
36+
border-radius: 2rem;
37+
}
38+
#app p {
39+
text-align: left !important;
40+
font-size: 2rem;
41+
font-family: Arial, Helvetica, sans-serif;
42+
}
43+
#resultado p {
44+
margin: 0;
45+
padding: 2rem;
46+
border-bottom: 1px solid #e1e1e1;
47+
}
48+
#resultado p span {
49+
font-weight: bold;
50+
}
51+
#resultado p:last-of-type {
52+
border: none;
53+
}
54+
.alerta {
55+
padding: 1rem;
56+
text-align: center;
57+
font-weight: bold;
58+
text-transform: uppercase;
59+
color: white;
60+
font-size: 2rem;
61+
}
62+
.error {
63+
background-color: red;
64+
}
65+
66+
footer {
67+
border-top: 1px solid #e1e1e1;
68+
padding: 2rem;
69+
text-align: center;
70+
}
71+
72+
footer a {
73+
text-decoration: none;
74+
font-weight: bold;
75+
}

0 commit comments

Comments
 (0)