-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo_comida.css
More file actions
79 lines (75 loc) · 1.51 KB
/
estilo_comida.css
File metadata and controls
79 lines (75 loc) · 1.51 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
69
70
71
72
73
74
75
76
77
78
79
/* //////////////// GENERAL ////////////////*/
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.body{
background-color: #8f5e31;
}
/* //////////////// CABECERA ////////////////*/
.header{
width: 100%;
height: 70px;
background-color: #724012;
display: flex;
position: fixed;
align-items: center;
justify-content: center;
margin-top: -140px;
font-family: 'Revalia', cursive;
color: #fff;
}
.header a{
position: absolute;
left: 0;
margin-left: 20px;
color: #fff;
font-size: 25px;
}
.header a:hover{
color: rgb(187, 187, 187);
}
/* //////////////// TARGETAS ////////////////*/
.seccion_targetas{
width: 100%;
text-align: center;
margin-top: 140px;
/* background-color: aqua; */
}
.seccion_targetas .espaseado_targeta{
padding: 20px;
}
.seccion_targetas h2{
margin-bottom: 20px;
color: #fff;
}
.seccion_targetas .row{
width: 95%;
margin: auto;
/* background-color: blueviolet; */
}
.row .targeta{
background-color: rgb(255, 255, 255);
padding: 10px;
text-align: center;
margin-bottom: 70px;
}
.targeta .contenedor_imagen{
width: auto;
height: 200px;
/* background-color: burlywood; */
margin-bottom: 20px;
}
.contenedor_imagen img{
width: 100%;
height: 100%;
object-fit: cover;
}
#nombre{
line-height: 15px;
font-weight: bold;
}
#precio{
color: rgb(185, 185, 185);
}