Advertisement
Guest User

Untitled

a guest
Jul 12th, 2019
542
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.60 KB | None | 0 0
  1. .goods{
  2.   width: 100%;
  3.  
  4.   background:
  5.   url(img/goods.png)
  6.   center no-repeat;
  7.   background-size: cover;
  8.   text-align: center;
  9.   display: flex;
  10.   border-top: 1px solid black;
  11.   display: inline-block;
  12.  
  13. }
  14.  
  15. .goods__headline{
  16.     color: white;
  17.     font-size: 40px;
  18.     text-transform: uppercase;
  19.     margin-bottom: 30px;
  20.     text-align: center;
  21.     margin-top: 30px;
  22. }
  23.  
  24. .goods__item{
  25.     width: 49%;
  26. }
  27.  
  28. .goods__icon{
  29. }
  30.  
  31. .goods__name{
  32.     color: white;
  33.     font-family: 'Open Sans';
  34.     font-size: 5px;
  35.     text-transform: uppercase;
  36.     margin-bottom: 10px;
  37. }
  38.  
  39. .goods__text{
  40.     color: white;
  41.     font-size: 20px;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement