-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (86 loc) · 2.17 KB
/
style.css
File metadata and controls
107 lines (86 loc) · 2.17 KB
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
body {
background-image: url(https://i.pinimg.com/564x/a3/98/17/a398172205ddb643df1c322b9cf93c75.jpg);
}
h1 {
font-family: "Satisfy", cursive;
color: whitesmoke;
font-size: 70px;
padding: 20px;
border: 5px solid rgb(162 116 142);
background: rgb(162 116 142);
}
.bg-translucent{
background-color: rgba(255, 255, 255, 0.7);
}
.nav-item {
font-family: "Bebas Neue", sans-serif;
font-size: 30px;
padding: 20px;
}
.card-body{
font-family: "Book Antiqua", serif;
color: black;
}
.nav-link {
color: black ;
}
.carousel{
max-width: 200px;
}
.img-fluid{
max-width: 200px;
}
.d-flex {
justify-content: center; /* Centrar horizontalmente dentro del contenedor */
align-items: center; /* Centrar verticalmente dentro del contenedor */
}
@media (max-width: 600px) {
h1 {
justify-content: center;
font-family: "Satisfy", cursive;
color: whitesmoke;
font-size: 40px;
padding: 10px;
border: 2px solid rgb(162, 116, 142);
background: rgb(162, 116, 142);
width: 100%; /* Ancho completo en dispositivos móviles */
text-align: center; /* Alineación de texto al centro */
box-sizing: border-box; /* Incluye el padding y el borde en el ancho total */
}
.nav-item {
font-family: "Bebas Neue", sans-serif;
font-size: 30px;
padding: 10px;
justify-content: center;
}
.carousel{
max-width: 100px;
}
.img-fluid {
max-width: 100px; /* Ancho máximo del 100px para dispositivos móviles */
}
.card {
max-width: 100%; /* Ancho máximo del 100% para dispositivos móviles */
background: whitesmoke;
border: 5px solid rgb(142 158 235);
justify-content: center;
margin-left: auto; /* Centrar el elemento a la derecha */
margin-right: auto; /* Centrar el elemento a la izquierda */
}
}
.card {
max-width: 100%;
background:whitesmoke ;
border: 5px solid rgb(142 158 235);
}
.btn {
background: rgb(219 120 87);
color: whitesmoke;
border: 2px solid rgb(219 120 87);
}
/*rgb(142 158 235) azul
rgb(162 116 142) lila oscuro
rgb(211 195 206) lila claro
rgb(247 214 112) amarillito
rgb(219 120 87) rosadito naranja
*/