-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.php
138 lines (138 loc) · 4.22 KB
/
dashboard.php
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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Início</title>
<link rel="apple-touch-icon" sizes="180x180" href="img/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="img/favicon_io/favicon-16x16.png">
<link rel="manifest" href="img/favicon_io/site.webmanifest">
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f4f4f4;
display: flex;
flex-direction: column;
min-height: 10vh;
}
.navbar {
width: 100%;
background-color: #005073;
color: #fff;
padding: 0.1px 1px;
position: fixed;
top: 0;
left: 0;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 1000;
}
.navbar h1 {
margin: 0;
font-size: 1.5em;
}
.navbar ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
}
.navbar li {
position: relative;
}
.navbar a {
text-decoration: none;
color: #fff;
padding: 10px 15px;
display: block;
transition: background-color 0.3s ease;
}
.navbar a:hover {
background-color: #079DC2;
}
.dropdown {
position: relative;
}
.dropdown-content {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: #005073;
box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
z-index: 1000;
}
.dropdown-content a {
padding: 10px;
color: #fff;
display: block;
}
.dropdown-content a:hover {
background-color: #2795A6;
}
.dropdown:hover .dropdown-content {
display: block;
}
.content {
padding: 1px;
margin-top: 60px;
flex: 1;
}
.footer {
width: 100%;
background-color: #005073;
color: #fff;
text-align: center;
padding: 1px 0;
position: fixed;
bottom: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
font-size: 0.8em;
}
.footer .version {
position: absolute;
left: 20px;
display: flex;
align-items: center;
}
</style>
</head>
<body>
<div class="navbar">
<a href="dashboard.php"><img src="img/LOGO.png" alt="Descrição da Foto" width="50" height="25" title="Início" />
</a>
<ul>
<li><a href="entrada.php">Entrada</a></li>
<li><a href="saida.php">Saída</a></li>
<li><a href="cadastro_produto.php">Cadastro de Produtos</a></li>
<li class="dropdown">
<a href="#">Relatórios</a>
<div class="dropdown-content">
<a href="relatorios_entrada_saida.php">Entrada e Saída</a>
<a href="relatorios_estoque.php">Estoque</a>
<a href="relatorios_produtos.php">Produtos</a>
</div>
</li>
<li><a href="gerenciar_usuarios.php">Usuários</a></li>
<li><a href="backup.php">Backup</a></li>
<li><a href="logout.php">Sair</a></li>
</ul>
</div>
<div class="content">
<!-- O conteúdo da página será exibido aqui -->
</div>
<div class="footer">
<div class="version">
<span>versão 1.0</span>
</div>
<span>Developed by Eugenio Oliveira</span>
</div>
</body>
</html>