-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (79 loc) · 1.26 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
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
86
87
88
89
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
html,body{
height: 100%;
overflow: hidden;
}
.center{
display: flex;
flex-wrap: wrap;
max-width: 100%;
margin: 0 auto;
padding: 0 2%;
margin-top: 10px;
margin-right: 10%;
margin-left: 10%;
}
header{
height: 15%;
padding: 20x 0;
}
.logo{
width: 50%;
}
.menu{
padding-top: 2%;
width: 50%;
text-align: right;
}
.menu a{
color: black ;
text-decoration: none;
font-weight: bold;
margin-left: 15px;
}
section.sobre{
height: calc(100% - 15%);
position: relative;
}
.extras{
position: absolute;
bottom: -10%;
right: -15%;
width: 50%;
height: 100%;
border-radius: 50%;
background-color: #017143;
}
.extras img{
bottom: 100px;
right: 100px;
}
.texto-sobre{
margin-top:100px;
}
.texto-sobre h1{
font-size:50px;
max-width: 60%;
max-height: 60%;
}
.texto-sobre p{
margin: 20px 0;
color: black;
font-size: 14;
font-weight: bold;
max-width: 60%;
}
.texto-sobre button{
border: 0;
background-color: #017143;
color: white;
border-radius: 10px;
width: 100px;
height: 30px;
cursor: pointer;
}