Advertisement
info1atual

CSS extra - Tema Admin Xtreme

Jan 6th, 2024
1,263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.66 KB | Source Code | 0 0
  1. .card.card-lista {
  2.   /* border: 0.5px solid #bdc2c5; */
  3.   transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
  4.   overflow: hidden;
  5.   border-radius: 4px;
  6.   /* box-shadow: 0 0 3px 0 rgba(0,0,0,0.2); */
  7.   -webkit-box-shadow: 0 7.5px 6px -6px #ccc;
  8.      -moz-box-shadow: 0 7.5px 6px -6px #ccc;
  9.           box-shadow: 0 7.5px 6px -6px #ccc;
  10.   margin-bottom: 10px;
  11. }
  12.  
  13. /* .input-group-text {
  14.   border-top-left-radius: 8px !important;
  15.   border-bottom-left-radius: 8px !important;
  16. } */
  17.  
  18. /* .input-group-text .d-line-block {
  19.   border-top-left-radius: 0 !important; border-bottom-left-radius: 0 !important;
  20. } */
  21.  
  22. .input-group .btn {
  23.   border-top-left-radius: 0 !important;
  24.   border-bottom-left-radius: 0 !important;
  25.   border-top-right-radius: 8px;
  26.   border-bottom-right-radius: 8px;
  27. }
  28.  
  29. select, textarea {
  30.   border-color: #6c757d !important;
  31.   font-family: Arial, sans-serif;
  32.   font-size: 14px;
  33.   border-radius: 8px !important;
  34. }
  35.  
  36. input[type="text"], input[type="password"], input[type="email"], input[type="date"], input[type="number"] {
  37.   border-color: #6c757d;
  38.   font-family: Arial, sans-serif;
  39.   font-size: 14px;
  40.   border-radius: 8px;
  41. }
  42.  
  43. .input-group-text {
  44.   border-color: #6c757d;
  45. }
  46.  
  47. .table.condensed td, .table.condensed th {
  48.   padding-top: 0.8rem !important;
  49.   padding-bottom: 0.8rem !important;
  50. }
  51.  
  52. .table.bottom-min td, .table.bottom-min th {
  53.   padding-bottom: 0.4rem !important;
  54. }
  55.  
  56. .table td.top-min-cell-2, .table th.top-min-cell-2 {
  57.   padding-top: 0.2rem !important;
  58. }
  59.  
  60. .table td.top-min-cell-4, .table th.top-min-cell-2 {
  61.   padding-top: 0.4rem !important;
  62. }
  63.  
  64. .table td.top-min-cell-6, .table th.top-min-cell-6 {
  65.   padding-top: 0.6rem !important;
  66. }
  67.  
  68. .table td.top-min-btn, .table th.top-min-btn {
  69.   padding-top: 0.2rem !important;
  70. }
  71.  
  72. .hr-line {
  73.   border: #555;
  74.   margin: 4px 0;
  75.   margin-top: 6px;
  76.   margin-bottom: 6px;
  77.   opacity: 0.5;
  78.   size: 2;
  79. }
  80.  
  81. .hr-line-light {
  82.   border: #777;
  83.   margin: 4px 0;
  84.   margin-top: 5px;
  85.   margin-bottom: 5px;
  86.   opacity: 0.4;
  87.   size: 2;
  88. }
  89.  
  90. .hr-line-light-2 {
  91.   border: #ccc;
  92.   margin: 6px 0;
  93.   margin-top: 5px;
  94.   margin-bottom: 5px;
  95.   opacity: 0.3;
  96.   size: 2;
  97. }
  98.  
  99. .hr-line-dashed {
  100.   border-top: 1px dashed #666;
  101.   color: #ffffff;
  102.   margin: 6px 0;
  103.   margin-top: 5px;
  104.   background-color: #ffffff;
  105.   height: 1px;
  106. }
  107.  
  108. .ellipsis {
  109.   overflow: hidden;
  110.   /*display: block;*/
  111.   text-overflow: ellipsis;
  112.   white-space: nowrap;
  113. }
  114.  
  115. .btn-38 {
  116.   min-width: 38.25px;
  117. }
  118.  
  119. .btn-80 {
  120.   min-width: 80px;
  121. }
  122.  
  123. .no-select {
  124.   -webkit-touch-callout: none;
  125.   -webkit-user-select: none;
  126.   -khtml-user-select: none;
  127.   -moz-user-select: none;
  128.   -ms-user-select: none;
  129.   user-select: none;
  130. }
  131.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement