-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
69 lines (69 loc) · 1.18 KB
/
styles.css
File metadata and controls
69 lines (69 loc) · 1.18 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
*, ::after, *::before {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
font-family: 'Source Sans Pro', sans-serif;
font-size: 80%;
}
body {
background: #524266;
color: #BD98EA;
}
.container {
height: 100vp;
width: 70vw;
margin: 2rem auto;
}
.container h2 {
text-transform: uppercase;
text-align: center;
margin-bottom: 2rem;
font: 2.3rem;
}
.formulario {
display: block;
width: 50%;
margin: 1rem auto;
display: flex;
flex-direction: column;
}
.formulario input {
margin: 1rem 0rem;
line-height: 3rem;
background: none;
outline: 0;
border: 0;
color: white;
}
.formulario input:active {
border-bottom: 1px solid white;
}
.formulario input:focus {
border-bottom: 1px solid white;
}
.formulario button {
margin: 1rem 0rem;
background-color: #9350E6;
border: 0;
outline: 0;
height: 3rem;
border-radius: 5px;
text-transform: uppercase;
color: white;
}
.listado {
display: flex;
flex-direction: column;
}
.dato {
display: flex;
flex-direction: row;
justify-content: space-between;
height: 4rem;
}
.icono {
color: tomato;
cursor: pointer;
}