Project

General

Profile

monitoreo.component.css

antonella butron, 01/06/2026 11:13 AM

Download (1.19 KB)

 
1
.label {
2
  background-color: #f5f5f5; /* un gris suave */
3
  padding: 8px 12px;
4
  margin-bottom: 6px;
5
  border-radius: 6px;
6
  display: flex;
7
  justify-content: space-between;
8
  font-weight: 500;
9
  color: #333;
10
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
11
  transition: background-color 0.2s;
12
}
13

    
14
.label:hover {
15
  background-color: #e0e0e0;
16
}
17

    
18
label {
19
  display: block;
20
  margin-top: 12px;
21
  font-weight: 600;
22
  color: #444;
23
  font-size: 14px;
24
}
25

    
26
.frame {
27
  background-color: #93A3F3;
28
  padding: 16px;
29
  border-radius: 12px;
30
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
31
  margin: 16px 0;
32
}
33

    
34
/* contenido interno (blanco, para contraste) */
35
.frame-content {
36
  background-color: #ffffff;
37
  padding: 14px 16px;
38
  border-radius: 8px;
39
  color: #333;
40
}
41

    
42
/* opcional: título dentro del frame */
43
.frame-title {
44
  font-weight: 600;
45
  font-size: 1.1rem;
46
  color: #ffffff;
47
  margin-bottom: 10px;
48
}
49

    
50
.titulo-wrapper {
51
  padding: 14px 20px;
52
  border-radius: 12px;
53
  text-align: center;
54
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
55
  margin-bottom: 16px;
56
}
57

    
58
.titulo-wrapper h1 {
59
  margin: 0;
60
  color: #ffffff;
61
  font-size: 1.8rem;
62
  font-weight: 600;
63
  letter-spacing: 0.5px;
64
}