EditorsPage.css 1.9 KB

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