Advertisement
delvinkrasniqi

CSS/header/bluebox/navbari

Dec 6th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. /*Navigation Bar*/
  2. .navbar-gradient {
  3. background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  4. width: 100%;
  5. height: 100px;
  6. }
  7.  
  8. .navbar{
  9. padding: 20px 0;
  10. z-index: 200;
  11. }
  12. .navbar-nav > li{
  13. padding-left:15px;
  14. padding-right:15px;
  15. }
  16. .navbar-nav a{
  17. font-family: 'Raleway', sans-serif;
  18. }
  19.  
  20. .navbar a{
  21. text-decoration: none;
  22. color: #fff;
  23. font-size: 16px;
  24. }
  25. .navbar a:hover{
  26. text-decoration: none;
  27. color: #74b9ff;
  28. }
  29. .current_page_item a{
  30. color: #74b9ff;
  31. }
  32. .navbar span.navbar-toggler-icon {
  33. background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  34. color: white;
  35. }
  36.  
  37. .navbar .navbar-collapse {
  38. text-align: center;
  39. }
  40.  
  41. /*End of Navigation Bar*/
  42.  
  43. /*Section1 Style*/
  44.  
  45. .welcome {
  46. height: 662px;
  47. background-repeat: no-repeat;
  48. background-position: center;
  49. background-size: cover;
  50. position: relative;
  51. }
  52.  
  53. .welcome .content-welcome {
  54. position: absolute;
  55. top: 50%;
  56. left: 50%;
  57. transform: translate(-50%, -50%);
  58. width: 90%;
  59. }
  60.  
  61. .content-welcome h2 {
  62. color: white;
  63. font-size: 36px;
  64. text-align: center;
  65. font-family: 'Raleway', sans-serif;
  66. font-weight: lighter;
  67. }
  68.  
  69. /*BlueBox between section 1 and section2*/
  70.  
  71. .bluebox {
  72.  
  73. background-color: #30aecd;
  74. margin-top: -100px;
  75. position: relative !important;
  76. z-index: 9 !important;
  77.  
  78. }
  79.  
  80. /*bluebox left side text*/
  81.  
  82. .bluebox h2{
  83. padding-left: 75px;
  84. padding-top: 75px;
  85. font-family: 'Raleway', sans-serif;
  86. color: #fff;
  87. font-size: 22px;
  88. line-height: 1.5;
  89. }
  90.  
  91. /*bluebox right side text*/
  92.  
  93. .bluebox p {
  94. padding: 60px 40px 0px 20px;
  95. color: #fff;
  96. font-size: 14px;
  97. font-family: 'Raleway', sans-serif;
  98. line-height: 30px;
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement