public.css 697 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. }
  5. html {
  6. --width: 100%;
  7. --height: 100%;
  8. }
  9. html, body, .body {
  10. width: var(--width);
  11. height: var(--height);
  12. }
  13. .body {
  14. display: flex;
  15. overflow: hidden;
  16. }
  17. #cad {
  18. flex: 1;
  19. background-color: #000;
  20. }
  21. .variable {
  22. cursor: pointer;
  23. }
  24. .content {
  25. /* position: absolute;
  26. right: 0;
  27. top: 0;
  28. bottom: 0; */
  29. background-color: #fff;
  30. }
  31. i {
  32. display: inline-block;
  33. width: 50px;
  34. height: 50px;
  35. border: 1px solid red;
  36. }
  37. .chose li {
  38. text-align: center;
  39. }
  40. .btn {
  41. display: inline-block;
  42. width: 45%;
  43. height: 30px;
  44. border-radius: 5px;
  45. background-color: #181c1d;
  46. color: #fff;
  47. text-align: center;
  48. cursor: pointer;
  49. line-height: 30px;
  50. }