-
Notifications
You must be signed in to change notification settings - Fork 0
/
registro.css
55 lines (45 loc) · 1.05 KB
/
registro.css
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
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Concert+One&family=Montserrat:wght@800&family=Press+Start+2P&family=Special+Elite&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat|Montserrat+Alternates|Poppins&display=swap');
*{
margin: 0;
padding: auto;
box-sizing: border-box;
font-family: 'Montserrat Alternates', sans-serif;
}
body{
background-image: url(img/fondo.jpg);
}
form{
padding: 30px;
width: 400px;
margin: auto;
margin-top: 100px;
background-color: rgb(196, 202, 196);
border-radius: 5px;
}
.text-form{
font-family: 'Anton', sans-serif;
font-size: 25px;
margin-bottom: 25px;
}
.control{
width: 100%;
background-color: white;
padding: 10px;
border-radius: 5px;
margin-bottom: 15px;
border: 1px solid;
border-color: green;
}
.boton{
width: 100%;
padding: 10px;
border-radius: 5px;
margin-bottom: 15px;
border: 1px solid;
border-color: green;
}
.boton:hover{
background-color: green;
border-color: black;
}