Project

General

Profile

avisos.component.css

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

Download (1.36 KB)

 
1
.avisos-container {
2
  max-width: 400px;
3
  margin: 20px auto;
4
  padding: 10px;
5
  background: #93A3F3;
6
  border-radius: 12px;
7
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
8
}
9

    
10
.avisos-container h3 {
11
  text-align: center;
12
  margin-bottom: 12px;
13
  color: #fff; /* Título en blanco */
14
  background-color: #21f341; /* Fondo azul para que resalte */
15
  padding: 8px 0;
16
  border-radius: 8px 8px 0 0;
17
  position: relative;
18
}
19

    
20
/* Línea divisoria debajo del título */
21
.avisos-container h3::after {
22
  content: "";
23
  display: block;
24
  height: 2px;
25
  background-color: #21f341;
26
  margin: 8px 0 0 0;
27
  width: 100%;
28
}
29

    
30
.avisos-container ul {
31
  list-style: none;
32
  padding: 0;
33
  margin: 0;
34
}
35

    
36
.aviso-card {
37
  display: flex;
38
  align-items: center;
39
  padding: 8px 10px;
40
  margin-bottom: 6px;
41
  border-radius: 8px;
42
  background: #fff;
43
  border-left: 4px solid #21f341;
44
  transition: background 0.3s;
45
}
46

    
47
.aviso-card:hover {
48
  background: #e3f2fd;
49
}
50

    
51
.hora {
52
  font-weight: bold;
53
  margin-right: 8px;
54
  color: #555;
55
  font-size: 0.9em;
56
}
57

    
58
.mensaje {
59
  color: #333;
60
}
61

    
62

    
63
.titulo-wrapper {
64
  padding: 14px 20px;
65
  border-radius: 12px;
66
  text-align: center;
67
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
68
  margin-bottom: 16px;
69
}
70

    
71
.titulo-wrapper h1 {
72
  margin: 0;
73
  color: #ffffff;
74
  font-size: 1.8rem;
75
  font-weight: 600;
76
  letter-spacing: 0.5px;
77
}