-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
90 lines (76 loc) · 1.61 KB
/
main.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Roboto, sans-serif;
}
header {
background-color: #5f27cd;
padding: 16px 0;
color: #fff;
display: flex; /* botão ao lado do título (estava em baixo)*/
border-bottom: 16px solid #341f97;
justify-content: center;
text-transform: uppercase; /* efeito de capslok */
font-style: italic;
}
header button {
margin-left: 16px;
}
form {
background-color: #c8d6e5;
padding: 24px 0;
text-align: center;
display: none;
}
form h2 {
margin-bottom: 16px;
}
input, button {
padding: 8px;
}
button {
background-color: #009432;
border: none;
cursor: pointer;
font-weight: bold;
text-transform: uppercase;
color: #fff;
}
#botao-cancelar {
background-color: red;
}
ul {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
ul li {
max-width: 25%;
list-style: none;
position: relative;
max-height: 200px;
overflow-y: hidden; /* o flow no eixo y (ou seja vertical) corta o pedaço da imagem que vaza pra baixo pra fora do li */
}
ul li img {
width: 100%;
/*height: 200px;
object-fit: cover; se eu quiser redimensionar a imagem*/
}
.overlay-imagem-link {
padding: 16px;
background-color: rgba(0, 0, 0, 0.7);
position: absolute;
bottom: 0;
left: 0;
width: 100%;
opacity: 0;
transition: all ease .5s; /* faz o link da imagem aparecer devagar, quanto maior o numero, mais devagar*/
}
.overlay-imagem-link a {
color:#fff;
text-decoration: none;
}
ul li:hover .overlay-imagem-link {
opacity: 1;
}