-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsobre.css
More file actions
80 lines (69 loc) · 1.47 KB
/
sobre.css
File metadata and controls
80 lines (69 loc) · 1.47 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Karla', sans-serif;
}
header {
top: 0;
background-color: white;
height: 70px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 10vw;
}
.logo img{
width: 130px;
}
body{
background-image: url(img/fundo_sobre.jpg);
width: 100vw;
height: 100vh;
background-size: cover;
background-position: right top;
display: flex;
flex-direction: column;
font-family: 'Karla', sans-serif;
color: white;
background-color: #00000055;
background-blend-mode: darken;
}
main{
flex-grow: 1;
padding: 25vh 10vw;
}
main h2{
font-size: 30px;
}
main h1{
font-size: 70px;
}
main p{
font-size: 25px;
font-weight: 200;
width: 800px;
max-width: 800px;
}
main a{
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
color: white;
font-size: 20px;
width: 200px;
height: 50px;
background-color: goldenrod;
border-radius: 2px;
margin-top: 30px;
}
main a:hover{
border: solid 1px goldenrod;
background-color: black;
transition: all 0,5s;
}
footer{
text-align: center;
height: 40px;
}