EditorsPage.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. body {
  2. margin-top: 20px;
  3. }
  4. .button_plus {
  5. display: flex;
  6. justify-content: center;
  7. cursor: pointer;
  8. margin-left: 47.2%;
  9. margin-bottom: 20px;
  10. width: 6em;
  11. height: 2.5em;
  12. cursor: pointer;
  13. margin-top: 7px;
  14. line-height: 2.4em;
  15. vertical-align: middle;
  16. font-weight: 550;
  17. text-align: center;
  18. text-decoration: none;
  19. user-select: none;
  20. color: rgb(41, 14, 66);
  21. outline: none;
  22. border: 1px solid rgba(110, 121, 128, 0.8);
  23. border-top-color: rgba(0, 0, 0, 0.3);
  24. border-radius: 5px;
  25. background: rgb(206, 220, 231) linear-gradient(rgb(206, 220, 231), rgb(106, 70, 148));
  26. box-shadow: 0 -1px rgba(10, 21, 28, 0.9) inset, 0 1px rgba(255, 255, 255, 0.5) inset;
  27. }
  28. .button_plus:hover {
  29. background: linear-gradient(#baa7cc, #9285b4);
  30. }
  31. .pane {
  32. background-color: white;
  33. width: 99%;
  34. height: 300px;
  35. margin-left: 10px;
  36. margin-bottom: 30px;
  37. border: dotted;
  38. }
  39. .input_title {
  40. margin-left: 37.5%;
  41. width: 400px;
  42. }
  43. .text_desc {
  44. margin-left: 37.5%;
  45. width: 400px;
  46. }
  47. .text {
  48. margin-left: 37.5%;
  49. font-size: 17px;
  50. color: rgb(197, 193, 226);
  51. }
  52. .button_submit {
  53. cursor: pointer;
  54. margin-bottom: 90px;
  55. margin-left: 46%;
  56. width: 10em;
  57. height: 2.5em;
  58. cursor: pointer;
  59. margin-top: 30px;
  60. line-height: 2.4em;
  61. vertical-align: middle;
  62. font-weight: 550;
  63. text-align: center;
  64. text-decoration: none;
  65. user-select: none;
  66. color: rgb(41, 14, 66);
  67. outline: none;
  68. border: 1px solid rgba(110, 121, 128, 0.8);
  69. border-top-color: rgba(0, 0, 0, 0.3);
  70. border-radius: 5px;
  71. background: rgb(206, 220, 231) linear-gradient(rgb(206, 220, 231), rgb(106, 70, 148));
  72. box-shadow: 0 -1px rgba(10, 21, 28, 0.9) inset, 0 1px rgba(255, 255, 255, 0.5) inset;
  73. }
  74. .button_submit:hover {
  75. background: linear-gradient(#baa7cc, #9285b4);
  76. }
  77. .styles {
  78. padding-left: 10px;
  79. color: rgb(196, 192, 192);
  80. padding-bottom: 30px;
  81. }