Advertisement
HilmiMubarok

ideb css

Sep 30th, 2022
693
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.69 KB | None | 0 0
  1. .box {
  2.   border: 3px dotted #ccc;
  3.   padding: 5px 10px;
  4.   background: #efe;
  5. }
  6. .mat-button.mat-success,
  7. .mat-stroked-button.mat-success {
  8.   color: #44ae04;
  9. }
  10. .mat-button.mat-success:hover,
  11. .mat-stroked-button.mat-success:hover {
  12.   background-color: #f0fff3;
  13. }
  14.  
  15. .mat-raised-button.mat-success,
  16. .mat-flat-button.mat-success,
  17. .mat-fab.mat-success,
  18. .mat-mini-fab.mat-success {
  19.   color: #f0fff3;
  20.   background-color: #44ae04;
  21. }
  22.  
  23. .mat-icon-button.mat-success {
  24.   color: #44ae04;
  25. }
  26.  
  27. .mat-raised-button.mat-success:disabled,
  28. .mat-flat-button.mat-success:disabled,
  29. .mat-fab.mat-success:disabled,
  30. .mat-mini-fab.mat-success:disabled {
  31.   color: rgba(0, 0, 0, 0.26);
  32.   background-color: rgba(0, 0, 0, 0.12);
  33. }
  34.  
  35. .mat-button.mat-danger,
  36. .mat-stroked-button.mat-danger {
  37.   color: #ae0404;
  38. }
  39. .mat-button.mat-danger:hover,
  40. .mat-stroked-button.mat-danger:hover {
  41.   background-color: #f0fff3;
  42. }
  43.  
  44. .mat-raised-button.mat-danger,
  45. .mat-flat-button.mat-danger,
  46. .mat-fab.mat-danger,
  47. .mat-mini-fab.mat-danger {
  48.   color: #f0fff3;
  49.   background-color: #ae0404;
  50. }
  51.  
  52. .mat-icon-button.mat-danger {
  53.   color: #ae0404;
  54. }
  55.  
  56. .mat-raised-button.mat-danger:disabled,
  57. .mat-flat-button.mat-danger:disabled,
  58. .mat-fab.mat-danger:disabled,
  59. .mat-mini-fab.mat-danger:disabled {
  60.   color: rgba(0, 0, 0, 0.26);
  61.   background-color: rgba(0, 0, 0, 0.12);
  62. }
  63.  
  64. .e-upload .e-upload-files .e-upload-file-list {
  65.   display: hidden;
  66. }
  67.  
  68. .e-upload .e-upload-files .e-upload-file-list {
  69.   display: hidden;
  70. }
  71.  
  72. .e-card {
  73.   padding: 10px;
  74.   margin-bottom: 1rem;
  75. }
  76.  
  77. .e-card .e-card-header .e-card-header-caption .e-card-header-title {
  78.   font-family: 'Poppins', sans-serif;
  79.   font-size: 24px;
  80.   font-weight: 600;
  81.   color: #008881;
  82.   font-style: normal;
  83.   line-height: 36px;
  84.   flex: none;
  85.   order: 0;
  86.   flex-grow: 0;
  87. }
  88. .e-card .e-card-header .e-card-header-caption .e-card-sub-title {
  89.   font-family: 'Poppins', sans-serif;
  90.   font-size: 20px;
  91.   font-weight: 1000;
  92.   color: red;
  93.   line-height: 35px;
  94.   margin-left: 10px;
  95.   padding-top: 13px;
  96. }
  97.  
  98. .e-card-content {
  99.   border: 1px solid #008881;
  100.   margin: 1rem;
  101. }
  102.  
  103. .back-image {
  104.   width: 35px;
  105.   height: 35px;
  106.   margin: 1rem;
  107.   cursor: pointer;
  108. }
  109.  
  110. .back-prefix {
  111.   font-family: 'Poppins', sans-serif;
  112.   font-size: 20px;
  113.   color: rgba(136, 136, 136);
  114.   padding-top: 20px;
  115.   cursor: pointer;
  116. }
  117.  
  118. .header-container {
  119.   display: flex;
  120.   margin-top: 20px;
  121.   margin-left: 10px;
  122. }
  123.  
  124. .header-content {
  125.   display: flex;
  126. }
  127.  
  128. .button-info {
  129.   color: white;
  130.   padding: 10px;
  131.   background-color: #008881;
  132.   font-family: 'Poppins', sans-serif;
  133.   font-weight: 500;
  134.   font-size: 15px;
  135.   font-style: normal;
  136.   border-radius: 6px;
  137. }
  138.  
  139. .form-group {
  140.   margin-top: 12px;
  141. }
  142.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement