Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.77 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Opa</title>
  5.  
  6.     <style>
  7.  
  8.  
  9.         .wrapper{
  10.             width: 300px;
  11.  
  12.         }
  13.  
  14.         .card{
  15.             border: solid 1px;
  16.             border-color: darkturquoise;
  17.             padding: 10px;
  18.             border-width: 5px;
  19.             border-radius: 20px;
  20.  
  21.             display: grid;
  22.             grid-template-columns: 30% 70%;
  23.  
  24.             text-align: center;
  25.         }
  26.  
  27.         .card-image > img{
  28.             max-width: 100px;
  29.         }
  30.  
  31.         .card-content, .card-image{
  32.             align-self: center;
  33.         }
  34.  
  35.     </style>
  36. </head>
  37. <body>
  38.     <div class="wrapper">
  39.         <div class="card">
  40.             <div class="card-image">
  41.                 <img src="home-128.png"/>
  42.             </div>
  43.             <div class="card-content">
  44.                 <div>Texto aqui</div>
  45.                 <div>
  46.                     <button>on</button>
  47.                     <button>off</button>
  48.                 </div>
  49.             </div>
  50.         </div>
  51.     </div>
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement