Guest User

Untitled

a guest
Dec 12th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. /*************************************************************/
  2. /* For fast customization, simply search for the COLOR word
  3. /* and change the value related to your needs/customer chart
  4. /*************************************************************/
  5.  
  6.  
  7. /* Background picture */
  8. .header {
  9. background-image: url("/assets/theme_image/home3.png");
  10. background-color: white;
  11. background-position: top center;
  12. background-size: cover;
  13. margin: -20px -40px 0 -40px;
  14. padding: 230px 0;
  15. position: relative;
  16. color: white; /* COLOR */
  17. }
  18. .copyright {
  19. position: absolute;
  20. bottom: 0px;
  21. right: 2px;
  22. text-shadow: 1px 1px #000;
  23. }
  24.  
  25. /* INTRO Over the picture */
  26. .intro-block {
  27. color: white; /* COLOR */
  28. background-color: rgba(0,57,88,0.8);
  29. max-width: 550px;
  30. padding: 20px 40px 25px 40px;
  31. position: relative;
  32. margin-top: -125px;
  33. }
  34. .intro-block h2 {
  35. color: white; /* COLOR */
  36. }
  37.  
  38.  
  39. /* BLOCKS */
  40. .themeblock {
  41. color:black; /* COLOR */
  42. text-align: center;
  43. padding-top: 20px;
  44. }
  45. .themeblock h3 {
  46. color: rgb(0,57,88); /* COLOR */
  47. text-transform: uppercase;
  48. }
  49. .themeblock p {
  50. color: rgb(0,57,88); /* COLOR */
  51. }
  52. .themeblock__icon {
  53. font-size: 3rem;
  54. color: rgb(0,57,88); /* COLOR */
  55. }
  56. .themeblock__content {
  57. padding: 20px;
  58. display: block;
  59. text-decoration: none;
  60. border-radius: 0px;
  61. border: 2px solid rgb(0,57,88); /* COLOR */
  62. background-color: #f2f2f2; /* COLOR */
  63. }
  64. .themeblock__content:hover {
  65. text-decoration: none;
  66. }
  67. @media (min-width: 768px) and (max-width: 991px) {
  68. .themeblock__content {
  69. min-height: 225px;
  70. }
  71. }
  72. @media (min-width: 992px) {
  73. .themeblock__content {
  74. min-height: 250px;
  75. }
  76. }
Add Comment
Please, Sign In to add comment