Advertisement
Guest User

Bs navwel

a guest
Jan 17th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 KB | None | 0 0
  1. /*
  2. DEMO STYLE
  3. */
  4.  
  5. @import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
  6. body {
  7. font-family: 'Poppins', sans-serif;
  8. background: #fafafa;
  9. }
  10.  
  11. p {
  12. font-family: 'Poppins', sans-serif;
  13. font-size: 1.1em;
  14. font-weight: 300;
  15. line-height: 1.7em;
  16. color: #999;
  17. }
  18.  
  19. a,
  20. a:hover,
  21. a:focus {
  22. color: inherit;
  23. text-decoration: none;
  24. transition: all 0.3s;
  25. }
  26.  
  27. .navbar {
  28. padding: 15px 10px;
  29. background: #fff;
  30. border: none;
  31. border-radius: 0;
  32. margin-bottom: 40px;
  33. box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  34. }
  35.  
  36. .navbar-btn {
  37. box-shadow: none;
  38. outline: none !important;
  39. border: none;
  40. }
  41.  
  42. .line {
  43. width: 100%;
  44. height: 1px;
  45. border-bottom: 1px dashed #ddd;
  46. margin: 40px 0;
  47. }
  48.  
  49. /* ---------------------------------------------------
  50. SIDEBAR STYLE
  51. ----------------------------------------------------- */
  52.  
  53. #sidebar {
  54. width: 250px;
  55. position: fixed;
  56. top: 0;
  57. left: -250px;
  58. height: 100vh;
  59. z-index: 999;
  60. background: #7386D5;
  61. color: #fff;
  62. transition: all 0.3s;
  63. overflow-y: scroll;
  64. box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  65. }
  66.  
  67. #sidebar.active {
  68. left: 0;
  69. }
  70.  
  71. #dismiss {
  72. width: 35px;
  73. height: 35px;
  74. line-height: 35px;
  75. text-align: center;
  76. background: #7386D5;
  77. position: absolute;
  78. top: 10px;
  79. right: 10px;
  80. cursor: pointer;
  81. -webkit-transition: all 0.3s;
  82. -o-transition: all 0.3s;
  83. transition: all 0.3s;
  84. }
  85.  
  86. #dismiss:hover {
  87. background: #fff;
  88. color: #7386D5;
  89. }
  90.  
  91. .overlay {
  92. display: none;
  93. position: fixed;
  94. width: 100vw;
  95. height: 100vh;
  96. background: rgba(0, 0, 0, 0.7);
  97. z-index: 998;
  98. opacity: 0;
  99. transition: all 0.5s ease-in-out;
  100. }
  101. .overlay.active {
  102. display: block;
  103. opacity: 1;
  104. }
  105.  
  106. #sidebar .sidebar-header {
  107. padding: 20px;
  108. background: #6d7fcc;
  109. }
  110.  
  111. #sidebar ul.components {
  112. padding: 20px 0;
  113. border-bottom: 1px solid #47748b;
  114. }
  115.  
  116. #sidebar ul p {
  117. color: #fff;
  118. padding: 10px;
  119. }
  120.  
  121. #sidebar ul li a {
  122. padding: 10px;
  123. font-size: 1.1em;
  124. display: block;
  125. }
  126.  
  127. #sidebar ul li a:hover {
  128. color: #7386D5;
  129. background: #fff;
  130. }
  131.  
  132. #sidebar ul li.active>a,
  133. a[aria-expanded="true"] {
  134. color: #fff;
  135. background: #6d7fcc;
  136. }
  137.  
  138. a[data-toggle="collapse"] {
  139. position: relative;
  140. }
  141.  
  142. .dropdown-toggle::after {
  143. display: block;
  144. position: absolute;
  145. top: 50%;
  146. right: 20px;
  147. transform: translateY(-50%);
  148. }
  149.  
  150. ul ul a {
  151. font-size: 0.9em !important;
  152. padding-left: 30px !important;
  153. background: #6d7fcc;
  154. }
  155.  
  156. ul.CTAs {
  157. padding: 20px;
  158. }
  159.  
  160. ul.CTAs a {
  161. text-align: center;
  162. font-size: 0.9em !important;
  163. display: block;
  164. border-radius: 5px;
  165. margin-bottom: 5px;
  166. }
  167.  
  168. a.download {
  169. background: #fff;
  170. color: #7386D5;
  171. }
  172.  
  173. a.article,
  174. a.article:hover {
  175. background: #6d7fcc !important;
  176. color: #fff !important;
  177. }
  178.  
  179. /* ---------------------------------------------------
  180. CONTENT STYLE
  181. ----------------------------------------------------- */
  182.  
  183. #content {
  184. width: 100%;
  185. padding: 20px;
  186. min-height: 100vh;
  187. transition: all 0.3s;
  188. position: absolute;
  189. top: 0;
  190. right: 0;
  191. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement