-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
57 lines (50 loc) · 1.06 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
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
body {
min-height: 100vh;
background: black;
font-family: 'Pacifico', cursive;
}
header h1{
font-size: 3em;
color: whitesmoke;
text-align: center;
}
main {
display: flex;
align-items: center;
justify-content: center;
}
.imagens {
flex: 0 0 80%;
min-height: 70vh;
background: url(img/dog1.png)center/cover no-repeat;
box-shadow: 5px 5px 3px rgba(245, 245, 245, 0.603);
position: relative;
}
.botao {
display: inline-block;
background: whitesmoke;
color: black;
border: 3px solid black;
border-radius: 8px;
font-size: 1.2em;
padding: 0.5em;
box-shadow: 2px 2px rgba(245, 245, 245, 0.603);
outline: none;
font-family: 'Pacifico', cursive;
}
.botaoAnterior {
position: absolute;
top: 50%;
left: 0;
transform: translate(-50%,-50%);
}
.botaoPosterior {
position: absolute;
top: 50%;
right: 0;
transform: translate(50%,-50%);
}
.botao:active {
background: rgb(248, 210, 217);
}