-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
161 lines (133 loc) · 3.79 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/* Estilos personalizados */
body {
background-color: rgb(0, 0, 0); /* Cor de fundo preta com 50% de transparência */
background-image: url("fundo5.jpg");
background-size: cover;
padding: 5px;
}
h1 {
font-size: 20px;
font-weight: 800;
color: #ffffff;
text-align: center;
}
p {
font-weight:400 ;
color:#ffd000 ;
text-align: center ;
margin-bottom: 15px ;
text-transform: uppercase ;
color: #FFBF00;
}
p.info{
font-size:15px;
}
.top-rectangle {
background-color: #000000;
padding: 2px;
text-align: center;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 25px;
overflow: hidden; /* Para esconder o texto que ultrapassa os limites do retângulo */
}
.top-rectangle p {
font-weight: 600;
font-size: 14px;
padding: 1px ;
color: #ffd000;
}
.top-rectangle p {
white-space: nowrap; /* Para que o texto não quebre a linha */
animation: slide-text 10s linear infinite; /* Definindo a animação com duração de 10 segundos e repetição infinita */
}
@keyframes slide-text {
from {
transform: translateX(100%); /* Começa fora da tela à direita */
}
to {
transform: translateX(-100%); /* Termina fora da tela à esquerda */
}
}
.logo {
width: 130px;
height: 130px;
border-radius: 50%;
margin: auto ;
align-items: center;
display: flex ;
margin-bottom:15px;
margin-top: 35px;
}
.social-icons {
display: flex;
justify-content: center;
align-items: center;
margin: 5px 0;
}
.social-icons img {
width: 30px;
height: 30px;
margin: 10px 10px;
margin-bottom: 20px;
filter: invert(1); /* Inverta a cor do ícone para branco */
}
.botoes {
margin: 9px 15px;
justify-items:center;
}
.link-button {
display: flex;
align-items: center;
border-radius: 20px;
margin: 13px 0;
padding: 8px;
background-color: #ff0000;
box-shadow: 0 3px 7px #000000;
color: #ffffff;
}
.link-button:hover {
display: flex;
align-items: center;
border-radius: 20px;
border: solid #ff0000 2px;
margin: 10px 0;
padding: 5px;
background-color:#0000009c;
color: #ffffff;
}
.link-button img {
width: 30px;
height: 30px;
margin-right: 30px;
margin-left: 5px;
filter: invert(1); /* Inverta a cor do ícone para branco */
}
.link-button span {
font-size: 18px;
font-weight: bold;
display: block ;
align-items: center ;
}
.link {
text-decoration: none;
color: #000000;
}
.link:hover{
text-decoration:none ;
color: #000000;
}
.footer p {
text-align: center;
color: #ffffff;
font-size: 10px;
background-color: #ff0000;
font-weight: 700 ;
position: fixed;
bottom:0;
left: 0;
padding: 2px ;
width:100%;
}