-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaboutus.css
101 lines (86 loc) · 1.67 KB
/
aboutus.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
/* Estilos para testimonios */
.sobrenosotros {
max-width: 1200px;
margin: 0 auto;
/*padding: 0 1em;*/
padding: 20px;
/*background-color: #ffffff;
/*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
/*display: flex;*/
justify-content: space-between;
align-items: center;
}
/* Estilos titulo Sobre Nosotros*/
.sobrenosotros h1{
text-align: center;
margin-top: 40px;
font-size: 25px;
animation: fadeInUp 1s ease forwards;
}
/*.sobrenosotros h1 {
margin-top: 0;
font-size: 20px;
margin-top: 20px;
margin-bottom: 20px;
}*/
.sobrenosotros h2 {
margin-top: 0;
font-size: 20px;
margin-top: 20px;
margin-bottom: 20px;
}
.breve-explicacion {
text-align: justify;
}
.testimonios {
display: flex;
flex-direction: column;
gap: 20px;
padding-bottom: 20px;
}
.card {
display: flex;
border: 1px solid #ccc;
border-radius: 8px;
overflow: hidden;
width: 95%;
background-color: #fff;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
padding: 20px;
}
.card-image {
margin: 0;
padding: 5px;
width: 20%;
min-width: 100px;
display: flex;
flex-direction: column;
justify-content: center;
}
.card-image img {
width: 100%;
height: auto;
display: block;
}
.card-image figcaption {
text-align: center;
font-size: 0.9em;
color: #555;
padding: 8px;
background-color: #f4f4f4;
}
.card-content {
padding: 20px;
width: 100%;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: center;
}
.card-content h2 {
margin-top: 0;
}
.card-content p {
margin-bottom: 0;
text-align: justify;
}