general.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. h1 {
  2. text-align: center;
  3. padding-bottom: 13px;
  4. }
  5. h3 {
  6. text-align: center;
  7. font-weight: 500;
  8. font-size: 20px;
  9. }
  10. button{
  11. outline: 0;
  12. }
  13. button::-moz-focus-inner{
  14. border: 0;
  15. }
  16. input[type=text],
  17. input[type=email],
  18. input[type=password],
  19. input[type=number]{
  20. border-radius: 0;
  21. border: none;
  22. border-bottom: 1px solid black;
  23. font-size: 18px;
  24. padding: 0 0 1px 5px;
  25. }
  26. input[type=text]:focus,
  27. input[type=email]:focus,
  28. input[type=password]:focus,
  29. input[type=number]:focus{
  30. outline: none;
  31. border-bottom: 2px solid rgb(255, 99, 107);
  32. }
  33. .link{
  34. cursor: pointer;
  35. color: gray;
  36. text-decoration: underline;
  37. text-align: center;
  38. font-size: 20px;
  39. }
  40. .link:hover {
  41. color: #ff636b;
  42. text-decoration: underline;
  43. cursor: pointer;
  44. }
  45. .button{
  46. background: rgb(0, 27, 45);
  47. border: none;
  48. text-decoration: none;
  49. padding: 10px 25px;
  50. cursor: pointer;
  51. text-align: center;
  52. font-size: 15px;
  53. min-width: 100px;
  54. margin: 5px;
  55. max-height: 52px;
  56. color: white;
  57. }
  58. .button:hover{
  59. background: rgb(179, 191, 209);
  60. color: black;
  61. }
  62. .button:active{
  63. background: rgb(240, 252, 255);
  64. color: black;
  65. }
  66. .dangerButton{
  67. display: initial;
  68. background: rgb(255, 99, 107);
  69. border: none;
  70. text-decoration: none;
  71. padding: 10px 25px;
  72. color: black;
  73. cursor: pointer;
  74. text-align: center;
  75. font-size: 15px;
  76. min-width: 100px;
  77. margin: 5px;
  78. max-height: 52px;
  79. }
  80. .dangerButton:hover{
  81. background: rgb(255, 129, 137);
  82. }
  83. .dangerButton:active{
  84. background: rgb(240, 252, 255);
  85. }
  86. .linkButton{
  87. background: none;
  88. border: none;
  89. text-decoration: underline;
  90. color: white;
  91. cursor: pointer;
  92. margin: 5px;
  93. font-size: 15px;
  94. }
  95. .public-buttons {
  96. position: inherit;
  97. align-self: center;
  98. margin-right: 39px;
  99. }
  100. .buttonDisabled{
  101. background: gray;
  102. text-decoration: none;
  103. border-radius: 10px;
  104. padding: 10px 5px;
  105. color: rgb(0, 27, 45);
  106. cursor: default;
  107. font-size: 25px;
  108. text-align: center;
  109. }
  110. .line-break{
  111. border: 1px solid rgb(255, 99, 107);
  112. margin: 30px 0;
  113. }
  114. @media screen and (max-width: 1400px){
  115. .button{
  116. font-size: 15px;
  117. }
  118. .header{
  119. height: 30px;
  120. }
  121. .headerStart{
  122. margin-left: 10px;
  123. }
  124. .headerEnd{
  125. font-size: 8px;
  126. }
  127. .headerLogo{
  128. white-space: nowrap;
  129. font-size: 10px;
  130. }
  131. .truncateLong{
  132. max-width: 100px;
  133. white-space: nowrap;
  134. overflow: hidden;
  135. text-overflow: ellipsis;
  136. }
  137. .mobileHide{
  138. display: none !important;
  139. }
  140. .headerStart{
  141. width: 0;
  142. }
  143. }