-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
190 lines (163 loc) · 3.29 KB
/
styles.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
*{
padding: 0;
margin: 0;
font-family: poppins,sans-serif;
}
body{
background-repeat: no-repeat;
background-image: url('https://cdn.pixabay.com/photo/2016/03/22/15/29/blue-1273089_1280.jpg');
background-size: 100%;
}
form{
background-color: #fff;
border-radius: 1.5rem;
background-color: none;
width: 400px;
padding: 20px;
margin: 20px;
display: flex;
flex-direction: column;
box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
form label{
font-size: 1.2rem;
color: #000;
}
.form-container{
margin-top: 4.5rem;
display: flex;
justify-content: center;
}
.head-form h1{
font-size: 1.6rem;
font-weight: 800;
text-align: center;
margin-bottom: 0.3rem;
}
.head-form p{
text-align: center;
font-size: 1rem;
}
.user-data .campo{
display: flex;
flex-direction: column;
}
.campo{
position: relative;
}
.user-data span{
position: absolute;
top: 2.8rem;
}
.user-data input{
border-radius: .2rem;
margin-top: 4px;
border: none;
border-bottom: solid #000 1px;
padding: 5px 0 0 30px;
}
.user-data label{
font-weight: 500;
margin-top: 10px;
}
.factura-section{
margin-top: 1rem;
margin-bottom: 1rem;
}
.genero-section{
margin-top: 40px;
display: flex;
flex-direction: column;
}
.genero-section label{
color: rgb(27, 27, 27);
font-size: 1rem;
}
#header{
font-weight: 600;
}
.genero-section input[type="radio"]{
margin-right: 0.2rem;
}
.factura-section input[type="checkbox"]{
margin-right: .2rem;
}
.factura-section label{
font-size: 1rem;
}
.envio-container{
display: flex;
flex-direction: column;
}
.envio-container label{
font-size: 1rem;
margin-bottom: 1rem;
}
.envio-container select{
width: 300px;
margin-bottom: 2rem;
}
.button-container{
display: flex;
justify-content: center;
}
.button-64 {
align-items: center;
background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
font-size: 20px;
color: #fff;
max-width: 100%;
max-height: 100%;
}
.button-64:active,
.button-64:hover {
outline: 0;
}
.button-64 span {
background-color: rgb(0, 0, 0);
padding: 0.5px 90px;
border-radius: 6px;
width: 100%;
height: 100%;
transition: 300ms;
}
.button-64:hover span {
background: none;
}
@media (min-width: 768px) {
.button-64 {
font-size: 24px;
min-width: 196px;
}
}
/*Estilos de recibe.php*/
header{
margin-top: 3rem;
text-align: center;
font-size: 2rem;
font-weight: bold;
}
.main-container{
display: flex;
justify-content: center;
}
main{
padding: 2rem;
width: 400px;
border: solid black 1px;
margin-top: 2rem;
justify-content: center;
align-items: center;
}
.parametros{
display: flex;
justify-content: center;
flex-direction: column;
}
.parametros input{
width: 200px;
}
.preferencias{
margin-top: 1rem;
}