-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (91 loc) · 1.7 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
.menu-h ul{
list-style: none;
padding: 0 30%;
background-color: rgb(13, 2, 62);
position: fixed;
width: 100vh;
height: 80px;
}
.menu-h ul li{
display: inline;
}
.menu-h ul li a{
color: #FFFFFF;
padding: 30px;
display: inline-block;
text-decoration: none;
transition: background ,4s;
}
.menu-h ul li a:hover{
background-color: #07bcc2;
}
.titulo__principal{
text-align: center;
font-size:60px;
padding: 60px;
}
.main{
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
#sobre {
padding: 50px 0px;
background: url(img/campo.jpg);
background-size: cover;
background-position: center;
}
#sobre {
background-attachment: fixed;
}
#destaque__sobre {
display: flex;
justify-content: center;
}
#destaque__sobre img {
border-radius: 50px;
margin: 50px;
width: 800px;
}
.texto__sobre h2{
background-color: #096e96;
width: 600px;
height: 200px;
text-align: center;
border: solid 8px #07b6c2;
border-radius: 50px;
margin-left: 50px;
}
.texto__sobre{
display: flex;
justify-content: center;
}
#destaque {
display: inline;
}
#destaque img {
border-radius: 50px;
margin: 50px;
width: 800px;
}
.marquee span{
animation: marquee 20s linear infinite;
display: inline-block;
padding-left: 100%;
color: #03ff9ef9;
font-size: 16px;
padding-top: 15px;
}
.marquee {
overflow: hidden;
white-space: nowrap;
}
@keyframes marquee {
0% {
transform: translate(0, 0);
}
100% {
transform: translate(-100%, 0);
}
}