Advertisement
Katsiree

style_all

Jun 8th, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.68 KB | None | 0 0
  1. body {
  2.     padding: 0;
  3.     margin: 0;
  4. }
  5.  
  6. .bar {
  7.     margin: 0 auto;
  8.     width: 100%;
  9.     border-bottom: 1px solid #e6e6e6;
  10. }
  11.  
  12. a {
  13.     color: #ca0002;
  14. }
  15.  
  16. a:hover {
  17.     color: #720002;
  18. }
  19.  
  20. .row {
  21.     margin: 0;
  22.     padding: 0;
  23. }
  24.  
  25. #sidebar {
  26.     padding-left: 5px;
  27.     padding-right: 5px;
  28. }
  29.  
  30. .list-group-item.active {
  31.     background: #ca0002 !important;
  32. }
  33.  
  34. .content {
  35.     width: 100%;
  36.     height: 100%;
  37. }
  38.  
  39.  
  40. .main {
  41.     width: 100%;
  42.     height: 100%;
  43.     font-size: 13px;
  44. }
  45.  
  46. @media (max-width: 992px) {
  47.  
  48.     .main {
  49.         width: 1170px;
  50.         /* margin: 0 auto; */
  51.         height: 100%;
  52.         font-size: 12px;
  53.     }
  54.  
  55.     .bar {
  56.         margin: 0 auto;
  57.         width: 1170px;
  58.     }
  59. }
  60.  
  61. .topbar {
  62.     border-top: 4px solid #ca0002;
  63.     width: 100%;
  64. }
  65.  
  66. .footer {
  67.     position: fixed;
  68.     bottom: 0;
  69.     left: 0;
  70.     right: 0;
  71.     border-bottom: 4px solid #ca0002;
  72. }
  73.  
  74. .top-bar {
  75.     overflow: hidden;
  76.     height: 45px;
  77.     line-height: 45px;
  78.     position: relative;
  79.     margin-bottom: 0;
  80.     background: linear-gradient(to right, #1e3c72, #2a5298);
  81.     width: 100%;
  82.     margin: 0 auto;
  83. }
  84.  
  85. .top-bar ul {
  86.     margin-bottom: 0;
  87.     list-style: none;
  88. }
  89.  
  90. .top-bar-section ul li {
  91.     float: left;
  92. }
  93.  
  94. .top-bar-section li a:not(.button) {
  95.     padding: 0 15px;
  96.     line-height: 45px;
  97. }
  98.  
  99. .top-bar-section ul li>a {
  100.     display: block;
  101.     width: 100%;
  102.     color: white;
  103.     padding: 12px 0 12px 0;
  104.     padding-left: 15px;
  105.     font-size: 0.8125rem;
  106.     font-weight: normal;
  107.     text-decoration: none;
  108.     font-weight: bold;
  109. }
  110.  
  111. .nav-tabs,
  112. .nav-tabs .nav-link {
  113.     border: none;
  114. }
  115.  
  116. .a.nav-item .nav-link {
  117.     padding: 0 !important;
  118.     margin: 0 !important;
  119. }
  120.  
  121. .readonly {
  122.     border: 1px #6c757d solid !important;
  123. }
  124.  
  125. .readonly img {
  126.     opacity: 0.5 !important;
  127. }
  128.  
  129. .read .text-title {
  130.     color: #343434 !important;
  131.     float: left;
  132.     font-size: 16px;
  133.     font-weight: bold;
  134. }
  135.  
  136. .read .text-date {
  137.     color: #343434 !important;
  138.     float: left;
  139.     font-size: 11px;
  140. }
  141.  
  142. .read .text-end_date {
  143.     color: #dc3545 !important
  144. }
  145.  
  146.  
  147. .readonly .text-title {
  148.     color: rgba(0, 0, 0, .5) !important;
  149.     float: left;
  150.     font-size: 16px;
  151.     font-weight: bold;
  152. }
  153.  
  154. .readonly .text-date {
  155.     color: rgba(0, 0, 0, .5) !important;
  156.     float: left;
  157.     font-size: 11px;
  158. }
  159.  
  160. .readonly .text-end_date {
  161.     color: rgba(0, 0, 0, .5) !important;
  162. }
  163.  
  164. .bg-tb_primary {
  165.     background: #e6f5ff;
  166.     box-shadow: 0 4px 13px rgba(93, 216, 247,.35)!important;
  167. }
  168.  
  169. #sidebar {
  170.     width: 272px;
  171. }
  172.  
  173. .bg-tb_order{
  174.     background: blue !important;
  175.     color: #ffffff
  176. }
  177.  
  178. .price td {
  179.     padding: 6px 6px;
  180. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement