-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
59 lines (52 loc) · 1.42 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/src/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>3s | Sistema de Solicitação de Serviços</title>
<style>
#barra-brasil {
z-index: 3;
padding: 0;
width: 100%;
position: relative; /* Alterado para relative */
display: block;
background: #313235 !important;
border-bottom: 1px solid #313235;
}
#menu-barra-temp {
list-style: none;
margin: 0;
padding: 10px; /* Adicionado padding */
}
#menu-barra-temp li {
display: inline;
padding-right: 10px;
margin-right: 10px;
border-right: 1px solid #ededed;
}
#menu-barra-temp a {
font-family: sans, sans-serif;
text-decoration: none;
color: #fff;
}
#root {
margin-top: 0px; /* Ajustando margem superior para evitar sobreposição */
}
</style>
</head>
<body>
<div id="barra-brasil">
<ul id="menu-barra-temp">
<li>
<a href="http://brasil.gov.br">Portal do Governo Brasileiro</a>
</li>
</ul>
</div>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
<script defer="defer" src="//barra.brasil.gov.br/barra_2.0.js" type="text/javascript"></script>
</body>
</html>