-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (52 loc) · 1.1 KB
/
style.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
@charset "UTF-8";
*{
margin: 0px;
padding: 0px;
font-family: Arial, Helvetica, sans-serif;
}
html, body{
height: 100vh;
width: 100vw;
background-color: black;
}
body{
background: url(imagens/fundo-madeira.jpg) no-repeat top center;
background-size: cover;
background-attachment: fixed;
}
main{
height: 100vh;
position: relative;
}
section#telefone{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
height: 627px;
width: 311px;
background: url(imagens/frame-iphone.png) no-repeat;
}
iframe#tela{
position: relative;
top: 80px;
left: 22px;
width: 267px;
height: 471px;
}
section#redes-sociais{
text-align: right;
}
section#redes-sociais img{
width: 50px;
margin: 10px;
border-radius: 50%;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.479);
box-sizing: border-box;
}
section#redes-sociais img:hover{
border: 2px solid rgba(255, 255, 255, 0.342);
transform: translate(-3px, -3px);
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.603);
transition: transform 0.2s, border 0.2s;
}