-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrid.css
More file actions
113 lines (95 loc) · 1.63 KB
/
Copy pathgrid.css
File metadata and controls
113 lines (95 loc) · 1.63 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
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
.container {
display: grid;
grid-template-areas:
"titulo titulo titulo titulo "
"article article article article"
"mantos pelajes pelajes pelajes"
"mantos imagen_final aside aside";
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: repeat(4, auto);
gap: 20px;
justify-content: stretch;
align-content: stretch;
}
.titulo {
grid-area: titulo;
}
.article {
grid-area: article;
display: flex;
justify-content: space-between;
margin-left: 20px;
margin-right: 20px;
}
.mantos {
grid-area: mantos;
margin-left: 20px;
padding-right: 50px;
}
.manto {
width: 100%;
min-width: 350px;
min-height: 200px;
padding: 100px 20px;
object-fit: cover;
}
.pelajes {
grid-area: pelajes;
width: 100%;
}
.pelaje {
width: 100%;
height: auto;
align-self: stretch;
padding-right: 20px;
}
.aside {
grid-area: aside;
height: auto;
padding-right: 20px;
margin-right: 20px;
}
.imagen_final {
grid-area: imagen_final;
background-image: url(imagenes/ojazos.jpg);
width:100%;
height:auto;
background-size: cover;
background-position:center;
}
.
.container>div{
border-radius: 20px;
}
.container img {
border-radius: 20px;
}
.article p {
padding: 10px;
font-size: 16px;
}
.aside ul li {
font-size: 16px;
padding: 10px;
font-weight: bold;
}
.aside p {
font-size: 14px;
padding: 10px;
}
.footer ul {
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-content: center;
padding: 20px;
}
.footer ul li {
background: rgb(46, 8, 46);
color: white;
font-size: 30px;
}
.footer ul li:hover {
background: white;
color: rgb(46, 8, 46);
}