-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
130 lines (103 loc) · 1.95 KB
/
style.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
.encabezado{
z-index: 1;
}
.logosheader{
display: none;
}
.carousel-inner{
text-shadow: 2px 2px 2px black;
border-radius: 150px;
border:1px solid black;
}
.titulos{
margin:50px 0 30px 60px;
display: flex;
}
.container{
align-items: center ;
margin-top: 20px;
margin-left: 5%;
}
.card{
background-color: rgb(236, 236, 236);
width: 300px;
display: flex;
margin: 0 0 20px 50px;
padding-bottom: 20px;
box-shadow: 2px 4px 5px black;
}
.card:hover{
transform: scale(1.03);
}
.card a{
box-shadow: 2px 2px black;
}
.btn:hover{
transform: scale(1.09);
background-color: rgb(155, 153, 153);
}
#image{
max-width: 100%;
width: 200px;
display: flex;
margin-left: auto;
margin-right: auto;
margin-top:10px;
cursor: pointer;
}
.row{
text-align:center;
font-size: auto;
}
#consolaItems .card img{
height: 150px;
}
.piePag{
background-color: rgb(241, 242, 243);
padding:20px;
text-align: right;
}
.piePag strong{
color: rgb(17, 91, 177);
}
#aumenta{
padding:0 5px;
}
#disminuye{
padding:0 5px;
}
/*agregando estilo para que no se vea vacia la navbar y se ajuste el tamaño de las cards en pantalla completa*/
@media (min-width: 1024px){
.logosheader{
display: inline-flex;
margin-right: 10px;
}
.logosheader img{
margin-left: 10px;
}
.card{
width: 250px;
display: flex;
margin-left: auto;
margin-bottom: 20px;
padding-bottom: 20px;
box-shadow: 2px 4px 5px black;
}
}
@media (min-width: 1200px){ /*escritorio*/
.logosheader{
display: inline-flex;
margin-right: 10px;
}
.logosheader img{
margin-left: 10px;
}
.card{
width: 180px;
display: flex;
margin-left: 10px;
margin-bottom: 20px;
padding-bottom: 20px;
box-shadow: 2px 4px 5px black;
}
}