-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (53 loc) · 1.14 KB
/
style.css
File metadata and controls
60 lines (53 loc) · 1.14 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
@charset "UTF-8";
* {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
}
html, body {
width: 100vw;
height: 100vh;
}
body {
background: url(imagens/fundo-tijolo.jpg) no-repeat top center;
background-size: cover;
background-attachment: fixed;
}
main {
height: 100vh;
position: relative;
}
section#computador {
width: 700px;
height: 700px;
background: url(imagens/computador.png) no-repeat center;
background-size: contain;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
iframe#tela {
width: 530px;
height: 335px;
background-size: cover;
border-radius: 1%;
position: relative;
top: 45%;
left: 50%;
transform: translate(-50%, -50%);
}
section#sites img {
width: 50px;
height: 50px;
border-radius: 35%;
margin: 25px 10px 0px 20px;
}
section#sites img:hover {
cursor: pointer;
border: 1px solid rgb(255, 255, 255);
box-sizing: border-box;
box-shadow: 0 0 15px rgb(255, 255, 255);
transform: translate(-10%, -10%);
transition: border 0.2s, box-shadow 0.5s, transform 0.25s;
}