-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTablesStyles.css
More file actions
79 lines (69 loc) · 1.27 KB
/
Copy pathTablesStyles.css
File metadata and controls
79 lines (69 loc) · 1.27 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f9fafb;
color: #333;
padding: 20px;
}
/* Título principal */
h1 {
font-size: 2.5rem;
color: #111827;
margin-bottom: 20px;
}
/* Enlaces de navegación */
a {
color: #4f46e5;
text-decoration: none;
font-weight: 500;
margin-right: 10px;
}
a:hover {
text-decoration: underline;
color: #4338ca;
}
/* Tabla general */
table {
width: 100%;
border-collapse: collapse;
background-color: white;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
border-radius: 8px;
overflow: hidden;
}
/* Encabezado de la tabla */
th {
background-color: #f3f4f6;
color: #374151;
text-align: left;
padding: 12px 16px;
font-size: 0.95rem;
}
/* Celdas de la tabla */
td {
padding: 12px 16px;
border-top: 1px solid #e5e7eb;
font-size: 0.95rem;
}
/* Fila de acciones */
td a {
margin-right: 8px;
}
/* Fila hover */
tr:hover {
background-color: #f9fafb;
}
/* Botón de agregar */
.agregar-producto {
display: inline-block;
margin-bottom: 15px;
font-size: 1rem;
padding: 8px 14px;
background-color: #2563eb;
color: white;
border-radius: 6px;
text-decoration: none;
transition: background-color 0.3s ease;
}
.agregar-producto:hover {
background-color: #1d4ed8;
}