-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilos.css
More file actions
67 lines (61 loc) · 1.5 KB
/
estilos.css
File metadata and controls
67 lines (61 loc) · 1.5 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
body {
font-family: Arial, sans-serif;
background-image: url(https://previews.123rf.com/images/ssstocker/ssstocker1704/ssstocker170400086/76154548-horizontal-vector-background-store-shelves-with-groceries-products.jpg);
margin: 0;
padding: 20px;
}
h2 {
color: aqua;
font-family: "Kaushan Script", cursive;
font-weight: 700;
font-style: normal;
text-align: center;
font-size: 36px;
margin-top: 30px;
}
h3 {
color: rgb(15, 175, 175);
font-family: "Kaushan Script", cursive;
font-weight: 700;
font-style: normal;
text-align: center;
font-size: 36px;
margin-top: 30px;
}
form {
background-image: url(https://img.freepik.com/vector-premium/interior-tienda-supermercado-productos-gran-centro-comercial-tienda-interior-interior-mostrador-pago-comestibles-bebidas-alimentos-frutas-productos-lacteos-ilustracion-vector-estilo-plano_169241-4555.jpg?semt=ais_hybrid&w=740);
padding: 20px;
border-radius: 10px;
max-width: 500px;
margin: auto;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
input[type="text"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="submit"] {
width: 100%;
padding: 10px;
margin-top: 8px;
margin-bottom: 15px;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type="submit"] {
background-color: #190768;
color: white;
cursor: pointer;
}
input[type="submit"]:hover {
background-color: #1abc9c;
}
@media (max-width: 768px) {
h1 {
font-size: 24px;
text-align: center;
}
.form-container {
padding: 10px;
}
}