Advertisement
raselahmed7

ElementorWoo Class #5 | Contentblock style

Feb 26th, 2019
416
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.75 KB | None | 0 0
  1. .content-box {
  2.     position: relative;
  3. }
  4.  
  5. .content-box-bg {
  6.     background-color: #ddd;
  7.     background-size: cover;
  8.     background-position: center;
  9.     height: 100%;
  10.     width: 85%;
  11.     position: absolute;
  12.     right: 0;
  13.     bottom: 0;
  14. }
  15.  
  16. .content-box-content {
  17.     position: relative;
  18.     z-index: 2;
  19.     padding-top: 300px;
  20.     padding-bottom: 50px;
  21. }
  22.  
  23. .content-box-content h2 {
  24.     margin: 0;
  25.     font-size: 70px;
  26. }
  27.  
  28. .content-box-content h6 {
  29.     font-family: inherit;
  30.     margin-top: 20px;
  31. }
  32.  
  33. .content-box-content i.fa {
  34.     color: #CE272A;
  35.     font-size: 24px;
  36. }
  37.  
  38. .content-box-theme-2 .content-box-bg {
  39.     width: 100%;
  40.     height: 70%;
  41.     top: 0;
  42. }
  43.  
  44. .content-box-theme-2 .content-box-content {
  45.     text-align: center;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement