-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfuncionarios.css
121 lines (101 loc) · 2.03 KB
/
funcionarios.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
}
.top-footer {
margin-left: -5%;
background-color: #333;
color: #fff;
position: fixed;
top: 0;
width: 110%;
padding: 20px 0;
z-index: 1000;
}
.top-footer nav ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
}
.top-footer nav ul li {
margin: 0 15px;
}
.top-footer nav ul li a {
color: #fff;
text-decoration: none;
font-size: 16px;
}
.top-footer nav ul li a:hover {
text-decoration: underline;
}
.logout-container {
position: absolute;
}
#logout-button {
background-color: transparent;
color: white;
border: none;
padding: 0px; /* Ajuste o padding para ajustar o tamanho do botão */
border-radius: 50%; /* Faz o botão ser redondo */
cursor: pointer;
font-size: 14px; /* Tamanho do ícone */
display: flex;
align-items: center;
justify-content: center;
margin-left: 1950%;
}
#logout-button i {
font-size: 24px; /* Tamanho do ícone */
}
.container {
max-width: 600px;
margin: auto;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-top: 5%;
}
h2 {
color: #333;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.form-group input,
.form-group select {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #0056b3;
}
a {
display: inline-block;
margin-top: 20px;
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}