notifications_bar.html
1.21 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
<html>
<body>
<meta charset="UTF-8">
<head>
<title>Barra de avisos</title>
<!--<style>
.info-bar {
color: #8A6C39;
background: #FCF8E3;
border: 1px solid #FAEBCC;
padding: 15px;
margin-bottom: 20px;
border-radius: 4px;
font-family: arial, helvetica;
font-size: 14px;
line-height: 20px;
}
.info-bar span {
text-transform: uppercase;
font-size: 13px;
font-weight: 600;
}
.info-bar a {
text-decoration: none;
border-bottom: 1px dotted #8A6C39;
padding-bottom: 1px;
color: #8A6C39;
}
.info-bar a:hover {
border-bottom: 0;
}
</style>-->
</head>
<!-- Barra de notificações -->
<div class="info-bar" style="color: #8A6C39; background: #FCF8E3; border: 1px solid #FAEBCC; padding: 15px; margin-bottom: 20px; border-radius: 4px; font-family: arial, helvetica; font-size: 14px; line-height: 20px;">
<span style="text-transform: uppercase; font-size: 13px; font-weight: 600;">Versão anterior:</span>
Acesse a versão anterior do
<a href="http://www.softwarepublico.gov.br/paginicial" target="_blank" style="text-decoration: none; border-bottom: 1px dotted #8A6C39; padding-bottom: 1px; color: #8A6C39;"><strong>Portal do Software Púbico Brasileiro</strong></a>
</div>
</body>
</html>