基质喷涂
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.5 KiB

6 months ago
6 months ago
6 months ago
6 months ago
5 months ago
5 months ago
6 months ago
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. :root {
  5. --primaryColor: #26509c;
  6. --headerHeight: 64px;
  7. --footerHeight: 64px;
  8. --borderWidth: 24px;
  9. }
  10. @layer utilities {
  11. .dark-gradient {
  12. background: linear-gradient(110deg, #0349a8 11%, #1663b7 105%);
  13. }
  14. .btn-dark {
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. background: linear-gradient(90deg, #0657c0 24%, #096ae0 101%);
  19. border-radius: 4px;
  20. color: white;
  21. }
  22. .btn-dark:disabled {
  23. background: #ccc;
  24. }
  25. .btn-light {
  26. display: flex;
  27. justify-content: center;
  28. align-items: center;
  29. background: linear-gradient(180deg, #ebf1fa 0%, #f8fafd 100%);
  30. box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.3), 0px 1px 5px 0px rgba(173, 173, 173, 0.47);
  31. border-radius: 4px;
  32. color: var(--primaryColor);
  33. }
  34. .btn-light:disabled {
  35. background: #ccc;
  36. color: #fff;
  37. }
  38. .main-page {
  39. /* height: calc(100vh - var(--headerHeight));
  40. background: linear-gradient(180deg, #dfe8f7 0%, #ffffff 100%); */
  41. }
  42. .shadow-card {
  43. background: linear-gradient(180deg, #e8effa 0%, #fdfdfe 100%);
  44. box-shadow: 0px -1px 0px 0px #ffffff, 0px 2px 6px 0px rgba(174, 174, 174, 0.2);
  45. border-radius: 15px;
  46. }
  47. .true {
  48. display: flex;
  49. justify-content: center;
  50. align-items: center;
  51. color: #fff;
  52. background-color: var(--primaryColor);
  53. border-radius: 6px;
  54. padding: 6px 10px;
  55. }
  56. .false {
  57. display: flex;
  58. justify-content: center;
  59. align-items: center;
  60. color: var(--primaryColor);
  61. background-color: #e8ecf7;
  62. border-radius: 6px;
  63. padding: 6px 10px;
  64. }
  65. }