Guest User

Untitled

a guest
Feb 24th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. <html>
  2. <div class="img_card">
  3. <img src="assets/imgs/1.jpg">
  4. <div class="card_time">18:00</div>
  5. <div class="card_name">Подтянутые ягодицы</div>
  6. </div>
  7. </html>
  8.  
  9. <style>
  10.  
  11. .img_card{
  12. height:140px;
  13. }
  14. .img_card img{
  15. position:relative;
  16. top:-60px;
  17. }
  18. .card_name{
  19. border-radius:50px;
  20. width:90%;
  21. height:33px;
  22. margin:auto;
  23. background: -webkit-gradient(linear, 40% 10%, 100% 10%, from(#08DA8A), to(#46EEAA));
  24. z-index:10;
  25. top:24px;
  26. position: relative;
  27. box-shadow: 0 10px 16px 0 rgba(8, 218, 138, 0.3),0 6px 20px 0 rgba(0,0,0,0.49);
  28. text-align: center;
  29. padding-top: 7px;
  30. font-size: 16px;
  31. color:white;
  32. text-align: center;
  33. }
  34.  
  35. .card_time{
  36. position: relative;
  37. border-radius:50px;
  38. height:33px;
  39. width:80px;
  40. background: -webkit-gradient(linear, 40% 10%, 100% 10%, from(#08DA8A), to(#46EEAA));
  41. z-index:11;
  42. margin-top: -170px;
  43. left:10px;
  44. top:-60px;
  45. box-shadow: 0 10px 16px 0 rgba(8, 218, 138, 0.3),0 6px 20px 0 rgba(0,0,0,0.49);
  46. text-align: center;
  47. font-size: 16px;
  48. padding:16px;
  49. padding-top: 7px;
  50. color:white;
  51.  
  52. }
  53. </style>
Add Comment
Please, Sign In to add comment