-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (67 loc) · 1.84 KB
/
style.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/* ****************************************************************************************** */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
body{
background-image: linear-gradient(to bottom, #0fd850 0%, #f9f047 100%);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
}
*{
font-family: 'Poppins', sans-serif;
font-weight: 400;
}
.centrar{
margin-left: auto;
margin-right: auto;
}
.title{
color: white;
text-align: center;
margin-bottom: 20px;
font-weight: 500;
}
/* Contenedor del formulario */
.container-main{
margin: 0 auto;
margin-top: 40px;
margin-bottom: 30px;
padding: 30px;
background-color: rgba(255, 255, 255, 0.5);
box-shadow: 0px 4px 8px rgb(89 73 30 / 16%);
border-radius: 1.5em;
}
.container-login{
margin: 0 auto;
margin-top: 40px;
margin-bottom: 30px;
padding: 30px;
background-color: rgba(255, 255, 255, 0.5);
box-shadow: 0px 4px 8px rgb(89 73 30 / 16%);
border-radius: 1.5em;
}
/* Bordes de los inputs */
.input-container{
border-radius: 1em;
}
/* Estilo radio button*/
.margin-radiobtn{
margin-left: -40px;
}
/* Estilos botón */
.btnEnviar{
margin-top: 10px;
background-image: linear-gradient(to left, #0fd850 0%, #f9f047 100%);
border: none;
box-shadow: 0px 1px 3px rgb(128, 128, 128);
border-radius: 1em;
padding: 10px;
}
input.btnEnviar:hover{
background-image: linear-gradient(to right, #0fd850 0%, #f9f047 100%);
}
/* Centrar elementos de la tabla */
thead, tbody{
text-align: center;
}
/* ****************************************************************************************** */