-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
85 lines (84 loc) · 1.37 KB
/
index.css
File metadata and controls
85 lines (84 loc) · 1.37 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
81
82
83
84
85
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.center{
display: flex;
flex-wrap: wrap;
max-width: 1280px;
margin: 0 auto;
padding: 0 2%;
}
html,body{
height: 100%;
overflow-y:hidden;
overflow-x: hidden;
}
header{
height: 200px;
padding: 20px 0;
}
.logo {
width: 50%;
}
.logo img {
width: 25%;
}
.menu{
padding-top: 30px;
width: 50%;
text-align: right;
}
.menu a{
color: black;
text-decoration: none;
font-weight: bold;
margin-right: 15px;
}
section.sobre {
height: calc(100% - 200px);
position: relative;
}
.extras {
position: absolute;
bottom: -430px;
right: -450px;
width: 900px;
height: 900px;
border-radius: 50%;
background-color: #017143;
}
.social-media {
position: absolute;
right:460px;
top: 200px;
}
.social-media img {
width: 25px;
display: block;
margin: 20px 0;
}
.textp-sobre {
margin-top: 100px;
}
.texto-sobre h1 {
font-size: 50px;
}
.texto-sobre p {
margin: 20px 0;
color: black;
font-size: 14px;
font-weight: bold;
max-width: 700px;
}
.texto-sobre button{
border: 0;
background-color: #017143;
color: white;
border-radius: 10px;
width: 100px;
height: 30px;
cursor: pointer;
}