Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 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. }
  8.  
  9. .main {
  10. background-image: url(../img/earth-bg.png);
  11. background-size: contain;
  12. background-repeat: no-repeat;
  13. background-position-x: right;
  14. background-position-y: 400px;
  15. overflow-y: auto;
  16. height: 100%;
  17. }
  18.  
  19. .main .container-fluid {
  20. padding: 0 15px 0 15px;
  21. }
  22.  
  23. .sidebar {
  24. height: 100vh !important;
  25. top: 0;
  26. padding-top: 55px;
  27. background-color: #072450;
  28. }
  29.  
  30. .app-top-header {
  31. position: fixed;
  32. top: 0;
  33. left: 200px;
  34. width: calc(100% - 200px);
  35. height: 55px;
  36. background-color: #0F1E49;
  37. color: #ffffff;
  38. z-index: 5;
  39. }
  40.  
  41. .app-top-header-dashboard {
  42. width: 100%;
  43. position: relative;
  44. }
  45.  
  46. .button-sidebar-menu {
  47. position: absolute;
  48. left: 0;
  49. border: 1px solid #ffffff;
  50. }
  51.  
  52. .panel-user {
  53. position: relative;
  54. border-right: 3px solid rgba(22, 160, 133, 1);
  55. background-color: rgba(22, 160, 133, 0.2);
  56. background-image: url(../img/earth2-bg.png);
  57. background-size: contain;
  58. background-repeat: no-repeat;
  59. background-position-x: center;
  60. background-position-y: 50px;
  61. }
  62.  
  63. .panel-calendar {
  64. border-right: 3px solid rgba(142, 68, 173, 1);
  65. background-color: rgba(142, 68, 173, 0.2);
  66. }
  67.  
  68. .panel-visitor {
  69. border-right: 3px solid rgba(41, 128, 185, 1);
  70. background-color: rgba(41, 128, 185, 0.2);
  71. }
  72.  
  73. .panel-feedback {
  74. border-right: 3px solid rgba(52, 152, 219, 1);
  75. background-color: rgba(52, 152, 219, 0.2);
  76. }
  77.  
  78. .panel-feedback-header, .panel-feedback-item {
  79. border-bottom: 1px solid rgba(52, 152, 219, 1);
  80. }
  81.  
  82. .panel-activity {
  83. border-right: 3px solid rgba(46, 204, 113, 1);
  84. background-color: rgba(46, 204, 113, 0.2);
  85. }
  86.  
  87. .panel-staff {
  88. border-right: 3px solid rgba(142, 68, 173, 1);
  89. background-color: rgba(142, 68, 173, 0.2);
  90. }
  91.  
  92. .event-list {
  93. background-color: rgba(0, 0, 0, 0.2);
  94. }
  95.  
  96. .event-item.active {
  97. background-color: rgba(0, 0, 0, 0.35);
  98. border-right: 3px solid #2ECC71;
  99. }
  100.  
  101. .user-image {
  102. width: 100px;
  103. height: 100px;
  104. padding: 15px;
  105. border-radius: 50%;
  106. border: 2px solid #1ABC9C;
  107. color: #1ABC9C;
  108. }
  109.  
  110. .user-image i {
  111. color: #1ABC9C;
  112. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement