| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- /*************PAGINAS¨*******************/
- #paginas_wrapper
- {
- width: 80%;
- display: table-cell;
- position: fixed;
- margin-left: 210px;
- }
- .pagina{ height: 470px; }
- #paginas_list
- {
- font-size: 36pt;
- color: #475A68;
- margin: 20px auto;
- width: 60px;
- text-align: center;
- position: relative;
- }
- #paginas_list li
- {
- margin: 0px auto;
- width: 0%;
- vertical-align: middle;
- cursor: pointer;
- display: table-cell;
- text-align: center;
- }
- /*************LISTA PRODUCTOS************/
- #productosbar
- {
- width:230px;
- height: auto;
- margin-top: 20px;
- display: table-cell;
- z-index: 2;
- position: absolute;
- }
- #categorias
- {
- width: 200px;
- margin: 0px auto;
- }
- #categorias li:hover
- {
- opacity: 0.5;
- transition: opacity 0.2s ease-in-out;
- }
- #lista_productos
- {
- margin-left: 50px;
- float: left;
- vertical-align: middle;
- width: 820px;
- margin-top: 20px;
- }
- #productos_wrapper
- {
- width: 90%;
- /*text-align: center;*/
- margin: 70px auto;
- display: table;
- }
- .listaproductos{display:inline-flex;}
- .imagen{
- width: 15%;
- margin-top: 20px;
- margin-left: 30px;
- display: inline-block;
- text-align: center;
-
- }
- .texto{
- display: inline-block;
- width: 65%;
- margin-top:30px;
- }
|