-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (55 loc) · 1.01 KB
/
style.css
File metadata and controls
72 lines (55 loc) · 1.01 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: Arial, Helvetica, sans-serif;
background-color: #555764;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.form-content{
background: linear-gradient(
50deg,
rgba(40,42,55,1)50%,
rgba(40,42,55,0.7)),
url(./fondo..jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
padding: 50px;
width: 1000px;
border-radius: 25px;
}
.uno{
color:#f4f6f9;
font-size: 40px;
margin-bottom: 25px;
}
.sexo{
color: #f4f6f9;
}
.label{
color: #f4f6f9;
font-size: 20px;
}
.reset{
background-color: #219bf9;
width: 150px;
height: 30px;
text-align: center;
cursor: pointer;
color: #f4f6f9;
}
.boton{
background-color: #219bf9;
width: 150px;
height: 50px;
align-self: flex-end;
cursor: pointer;
font-size: 30px;
color: #f4f6f9;
}