Advertisement
ZvonimirAnic

Untitled

Feb 27th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. body {
  2. padding: 0;
  3. margin: 0;
  4. background: #f2f6e9;
  5. }
  6.  
  7. .navbar {
  8. background: #6ab446;
  9. }
  10.  
  11. .nav-link,
  12. .navbar-brand {
  13. color: #fff;
  14. cursor: pointer;
  15. }
  16.  
  17. .nav-link {
  18. margin-right: 1em !important;
  19. }
  20.  
  21. .nav-link:hover {
  22. color: #000;
  23. }
  24.  
  25. .navbar-collapse {
  26. justify-content: flex-end;
  27. }
  28.  
  29. .header {
  30. background-image: url('/images/woman-background.jpg');
  31. background-size: cover;
  32. background-position: center;
  33. position: relative;
  34. }
  35.  
  36. .overlay {
  37. position: absolute;
  38. min-height: 100%;
  39. min-width: 100%;
  40. left: 0;
  41. top: 0;
  42. background: rgba(0, 0, 0, 0.8);
  43. }
  44.  
  45. .description {
  46. left: 50%;
  47. position: absolute;
  48. top: 45%;
  49. transform: translate(-50%, -55%);
  50. text-align: center;
  51. }
  52.  
  53. .description h1 { color: #6ab446; }
  54.  
  55. .description p { color: #fff; font-size: 1.3rem; line-height: 1.5; }
  56.  
  57. .features {
  58. margin: 4em auto;
  59. padding: 1em;
  60. position: relative;
  61. }
  62.  
  63. .feature-title {
  64. color: #333;
  65. font-size: 1.3rem;
  66. font-weight: 700;
  67. margin-bottom: 20px;
  68. text-transform: uppercase;
  69. }
  70.  
  71. .features img {
  72. box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
  73. margin-bottom: 16px;
  74. }
  75.  
  76. .page-footer {
  77. background-color: #222;
  78. color: #ccc;
  79. padding: 60px 0 30px;
  80. }
  81.  
  82. .footer-copyright {
  83. color: #666;
  84. padding: 40px 0;
  85. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement