forked from tyayya/AEDChallenge_Ilyas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyleEquipos.css
110 lines (94 loc) · 1.9 KB
/
styleEquipos.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
/* Fondo de partículas */
#particles-js {
position: fixed;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: -1; /* Fondo detrás del contenido */
background-color: #ffffff; /* Fondo blanco como fallback */
}
/* General Styles */
body {
margin: 0;
font-family: 'Inter', sans-serif;
background-color: #f9f9f9;
color: #333;
line-height: 1.6;
overflow: hidden; /* Evita el scroll */
}
h1 {
margin-left: 20%;
}
/* Barra de navegación */
.navbar {
background-color: #003366;
padding: 10px 0;
text-align: center;
}
.navbar ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.navbar ul li {
display: inline;
margin: 0 15px;
}
.navbar ul li a {
color: #ffffff;
text-decoration: none;
font-size: 1rem;
}
.navbar ul li a:hover {
text-decoration: underline;
}
.recommendation-container {
display: flex;
flex-direction: column;
gap: 10px;
margin: 20px;
}
.recommendation-card {
position: relative;
background-color: #c9d2d8;
border-radius: 8px;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
display: grid;
grid-template-rows: auto auto 1fr;
grid-template-columns: auto 1fr auto;
gap: 10px;
}
.recommendation-card h2 {
grid-column: 1 / spa;
margin-left: 1cm;
font-size: 1.2rem;
}
.recommendation-card .age {
margin: 0;
align-self:flex-start;
}
.recommendation-card .intro {
grid-column: 2 / -1;
margin-left: 1cm;
font-size: 1rem;
color: #555;
padding-left: 3cm;
}
.recommendation-card .reject-btn {
position: absolute;
top: 10px;
right: 10px;
background-color: #ffc107;
border: none;
color: #000;
font-size: 0.9rem;
padding: 5px 10px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s;
}
.recommendation-card .reject-btn:hover {
background-color: #e0a800;
}