-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
136 lines (121 loc) · 2.66 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
130
131
132
133
134
135
136
/* You can add global styles to this file, and also import other style files */
body, h1{
margin: 0px;
}
.panel-catalogo-productos, .panel-detalle-producto, .panel-pedido-producto{
width: 70%;
margin: 0 auto;
margin-top: 10px;
}
.imagen-fondo-principal{
background-image: url('./assets/img/main-fondo.jpg');
height: 100%;
}
.container-info{
display: flex;
display: -webkit-flex;
flex-flow: row;
flex-wrap: wrap;
}
.ocultar-elemento{
display: none !important;
}
.mostrar-elemento-block{
display: block;
}
.mostrar-elemento-inline{
display: inline;
}
.container-info > *{
width: 47%;
margin: 10px;
}
.controles-item *{
margin-right: 5px;
}
/*****************************INICIAR SESION**********************************/
.campo-formulario > *{
display: block;
}
.form-login span{
color: red;
text-shadow: 1.2px 1.5px black;
}
.container-login{
background-image: url('./assets/img/login-fondo.jpg');
background-repeat: no-repeat;
height: 630px;
padding-top: 10%;
}
.form-login label, .form-login h1{
color: white;
text-shadow: 1px 1px black;
}
.form-login h1{
text-align: center;
}
.form-login{
width: 25%;
margin: 0 auto;
}
.form-login input{
width: 100%;
border-radius: 5px;
}
.form-login button{
margin-top: 12px;
margin-left: 38%;
}
/*****************************CATALOGO**********************************/
.panel-catalogo-productos .formulario-buscar *{
display: block;
margin-right: 15px;
}
.panel-catalogo-productos .panel-heading {
height: 78px;
}
.panel-catalogo-productos .panel-body{
display: flex;
display: -webkit-flex;
flex-flow: row;
flex-wrap: wrap;
}
.panel-catalogo-productos .item-producto{
width: 31%;
margin: 10px;
}
/*****************************BARRA DE NAVEGACION**********************************/
.barra-navegacion{
width: 70%;
margin: 0 auto;
border-radius: 0px 0px 5px 5px;
margin-top: -1px;
}
/*****************************ITEM PRODUCTO**********************************/
.panel-item-producto .imagen-producto{
height: 156px;
}
.panel-item-producto input{
width: 45px;
height: 33px;
}
.panel-item-producto .panel-body div{
width: 100%;
}
/*****************************DETALLE PRODUCTO**********************************/
.panel-detalle-producto img{
width: 100%;
border: 1px solid #dadaf3;
border-radius: 3px;
padding: 2px;
}
.panel-detalle-producto ul{
list-style: none;
}
.panel-detalle-producto a{
margin-left: 9px;
}
/*****************************PEDIDOS PRODUCTO**********************************/
.panel-pedido-producto .imagen-pedidos{
width: 80px;
}