Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.15 KB | None | 0 0
  1. html, body {
  2. font-family: Arial, Helvetica, sans-serif;
  3. font-size: 14px;
  4. color: #ffffff;
  5. background-color: #2c3e50;
  6. height: 100%;
  7. background-image: url(../img/BG.jpg);
  8. background-size: cover;
  9. background-repeat: no-repeat;
  10. }
  11.  
  12. .main {
  13. background-image: url(../img/earth-bg.png);
  14. background-size: contain;
  15. background-repeat: no-repeat;
  16. background-position-x: right;
  17. background-position-y: 400px;
  18. overflow-y: auto;
  19. height: 100%;
  20. margin-left: 100px !important;
  21. }
  22.  
  23. .main .container-fluid {
  24. padding: 0 15px 0 15px;
  25. }
  26.  
  27. .sidebar {
  28. height: 100vh !important;
  29. top: 0;
  30. padding-top: 55px;
  31. background-color: #072450;
  32. width: 100px !important;
  33. }
  34.  
  35. .sidebar > .sidebar-nav,
  36. .sidebar .nav {
  37. width: 100px !important;
  38. }
  39.  
  40. .sidebar .nav-link:hover {
  41. color: #fff;
  42. background: #051C3E;
  43. }
  44.  
  45. .app-top-header {
  46. position: fixed;
  47. top: 0;
  48. left: 100px;
  49. width: calc(100% - 100px);
  50. height: 55px;
  51. background-color: #0F1E49;
  52. color: #ffffff;
  53. z-index: 5;
  54. }
  55.  
  56. .app-top-header-dashboard {
  57. width: 100%;
  58. position: relative;
  59. }
  60.  
  61. .button-sidebar-menu {
  62. position: absolute;
  63. left: 0;
  64. border: 1px solid #ffffff;
  65. }
  66.  
  67. .panel-user {
  68. position: relative;
  69. border-right: 3px solid rgba(22, 160, 133, 1);
  70. background-color: rgba(22, 160, 133, 0.2);
  71. background-image: url(../img/earth2-bg.png);
  72. background-size: contain;
  73. background-repeat: no-repeat;
  74. background-position-x: center;
  75. background-position-y: 50px;
  76. }
  77.  
  78. .panel-calendar {
  79. border-right: 3px solid rgba(142, 68, 173, 1);
  80. background-color: rgba(142, 68, 173, 0.2);
  81. }
  82.  
  83. .panel-visitor {
  84. border-right: 3px solid rgba(41, 128, 185, 1);
  85. background-color: rgba(41, 128, 185, 0.2);
  86. }
  87.  
  88. .panel-feedback {
  89. border-right: 3px solid rgba(52, 152, 219, 1);
  90. background-color: rgba(52, 152, 219, 0.2);
  91. }
  92.  
  93. .panel-feedback-header, .panel-feedback-item {
  94. border-bottom: 1px solid rgba(52, 152, 219, 0.3);
  95. }
  96.  
  97. .panel-activity {
  98. border-right: 3px solid rgba(46, 204, 113, 1);
  99. background-color: rgba(46, 204, 113, 0.2);
  100. }
  101.  
  102. .panel-activity-header, .panel-activity-item {
  103. border-bottom: 1px solid rgba(46, 204, 113, 0.3);
  104. }
  105.  
  106. .panel-staff {
  107. border-right: 3px solid rgba(142, 68, 173, 1);
  108. background-color: rgba(142, 68, 173, 0.2);
  109. }
  110.  
  111. .panel-staff-header {
  112. border-bottom: 1px solid rgba(142, 68, 173, 0.3);
  113. }
  114.  
  115. .event-list {
  116. background-color: rgba(0, 0, 0, 0.2);
  117. }
  118.  
  119. .event-item.active {
  120. background-color: rgba(0, 0, 0, 0.35);
  121. border-right: 3px solid #2ECC71;
  122. }
  123.  
  124. .user-image {
  125. width: 100px;
  126. height: 100px;
  127. padding: 15px;
  128. border-radius: 50%;
  129. border: 2px solid #1ABC9C;
  130. color: #1ABC9C;
  131. }
  132.  
  133. .user-image i {
  134. color: #1ABC9C;
  135. }
  136.  
  137. .panel, .event-list {
  138. box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  139. }
  140.  
  141. footer {
  142. background-image: url(../img/BG-footer.png);
  143. background-size: contain;
  144. background-repeat: no-repeat;
  145. background-position: center center;
  146. background-color: rgba(0, 0, 0, 0.2);
  147. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement