-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
60 lines (58 loc) · 1.02 KB
/
Copy pathstyles.css
File metadata and controls
60 lines (58 loc) · 1.02 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
.container {
width: 300px;
height: 300px;
border-radius: 25px;
justify-self: center;
align-self: center;
float: left;
}
.image {
padding: 5px 10px 5px 10px;
margin: 2px;
display: inline-block;
width: 250px;
height: 300px;
text-align: center;
}
.image:hover {
background-color: blue;
}
.direction-container {
width: 80%;
display: flex;
justify-content: space-around;
margin-left: auto;
margin-right: auto;
text-align: justify;
font-style: italic;
font-size: 17px;
}
.contenedor {
position: relative;
display: inline-block;
text-align: center;
}
.card-size {
margin: 30px;
}
.foto2 {
margin-bottom: -8px;
align-self: center;
}
.foto2:hover {
-webkit-transform: scale(1.1);
transform: scale(1.1);
}
.gallery{
margin: 10px 50px;
}
.gallery img{
width: 230px;
padding: 5px;
filter: grayscale(100%);
transition: 1s;
}
.gallery img:hover{
filter: grayscale(0);
transform: scale(1.1);
}