Files changed (1) hide show
  1. style.css +15 -0
style.css CHANGED
@@ -119,4 +119,19 @@ th {
119
  background-color: #45a049; /* Cambio de color al pasar el mouse */
120
  }
121
 
 
 
 
 
 
 
 
 
 
 
122
 
 
 
 
 
 
 
119
  background-color: #45a049; /* Cambio de color al pasar el mouse */
120
  }
121
 
122
+ /* Estilo para celdas editables */
123
+ td[contenteditable="true"] {
124
+ background-color: #f0f0f0; /* Color de fondo para indicar que son editables */
125
+ padding: 5px; /* Espaciado interno */
126
+ }
127
+
128
+ /* Estilo para la columna de tiempo */
129
+ td[contenteditable="true"][data-time] {
130
+ text-align: center; /* Alineación central */
131
+ }
132
 
133
+ /* Estilo para la fila de suma total */
134
+ #fila-suma-total {
135
+ font-weight: bold; /* Texto en negrita */
136
+ background-color: #e6e6e6; /* Color de fondo diferente */
137
+ }