Advertisement
Savelyev_Vyacheslav

OverviewWidget

Jun 26th, 2023
565
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.27 KB | None | 0 0
  1. select  {margin:0; hight:30}
  2. .column {
  3.   max-width: 200px;
  4.  
  5. }
  6. .column span{
  7. color: white;
  8. }
  9. .flex-container {
  10.   display: flex;
  11.   background-color: DodgerBlue;
  12. }
  13.  
  14. .flex-container > div {
  15.   background-color: #f1f1f1;
  16.   margin: 0px;
  17.   padding: 10px;
  18.   font-size: 30px;
  19. }
  20.  
  21. /* Table Styles */
  22.  
  23. .table-wrapper{
  24.  /*   margin: 10px 70px 70px; */
  25.   /*  box-shadow: 0px 35px 50px rgba( 0, 0, 0, 0.2 );*/
  26. }
  27.  
  28. .fl-table {
  29.     border-radius: 5px;
  30.     font-size: 12px;
  31.     font-weight: normal;
  32.     border: none;
  33.     border-collapse: collapse;
  34.     width: 100%;
  35.     max-width: 100%;
  36.     white-space: nowrap;
  37.     background-color: white;
  38. }
  39.  
  40. .fl-table td, .fl-table th {
  41.     text-align: left;
  42.     padding: 8px;
  43. }
  44.  
  45. .fl-table td {
  46.     border-right: 1px solid #f8f8f8;
  47.     font-size: 12px;
  48. }
  49.  
  50. .fl-table thead th {
  51.     color: #ffffff;
  52.     background: grey;
  53. }
  54.  
  55.  
  56. .fl-table thead th:nth-child(odd) {
  57.     color: #ffffff;
  58.     background: grey;
  59. }
  60.  
  61. .fl-table tr:nth-child(even) {
  62.     background: #F8F8F8;
  63. }
  64.  
  65. /* Responsive */
  66.  
  67. @media (max-width: 767px) {
  68.  
  69. }
  70. .Mandatory {color: red;}
  71. .ReadOnly {color: grey;}
  72. .Names {color: blue;}
  73. .Values {color: green;}
  74. .Sections {color: #8B8000;}
  75. #btn2 span {
  76. color: white;
  77. }
  78. .button  {
  79. margin: 20px 5px 20px 5px;
  80. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement