Advertisement
Guest User

Untitled

a guest
Oct 17th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.60 KB | None | 0 0
  1. <style>
  2.   .cont {
  3.     text-align: center;
  4.     position: relative;
  5.   }
  6.  
  7.   .half {
  8.     border: 1px solid red;
  9.     display: inline-block;
  10.     height: 500px;
  11.   }
  12.  
  13.   .center-left {
  14.     text-align: right;
  15.   }
  16.  
  17.   .center-right {
  18.     text-align: left;
  19.     width: 500px;
  20.   }
  21.  
  22.   .sub {
  23.     position: absolute;
  24.   }
  25. </style>
  26.  
  27. <div class="cont">
  28.   <div class="center-left half">
  29.     <img src="https://images-na.ssl-images-amazon.com/images/I/718pIJ74CkL.jpg" height="500px" />
  30.   </div>
  31.   <div class="center-right half">
  32.     <div class="sub">
  33.       <h2>LINGUAGEM C</h2>
  34.       <div>
  35.         <h3>Preço</h3> <span>R$ 50,00</span>
  36.       </div>
  37.       <div>
  38.         <h3>Descrição</h3> <span>Deixe de ser noob! Venha aprender C!</span>
  39.       </div>
  40.       <div>
  41.         <h3>Categoria</h3> <span>Livro</span>
  42.       </div>
  43.       <div>
  44.         <h3>Estoque restante</h3> <span>5</span>
  45.       </div>
  46.       <div>
  47.         <h3>Estoque restante</h3> <span>5</span>
  48.       </div>
  49.       <div>
  50.         <h3>Estoque restante</h3> <span>5</span>
  51.       </div>
  52.       <div>
  53.         <h3>Estoque restante</h3> <span>5</span>
  54.       </div>
  55.       <div>
  56.         <h3>Estoque restante</h3> <span>5</span>
  57.       </div>
  58.    
  59.       <form>
  60.         <label>Checkout</label>
  61.         <input required type="number" name="quantity" min="1" [max]="product?.stock" [(ngModel)]="qnt">
  62.         <button type="button" class="btn btn-success" (click)="addToCheckout()">+Carrinho</button>
  63.         <button type="button" class="btn btn-info" [routerLink]="['/editProduct', id]">Editar</button>
  64.       </form>
  65.     </div>
  66.   </div>
  67. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement