general.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. .link{
  17. cursor: pointer;
  18. color: gray;
  19. text-decoration: underline;
  20. text-align: center;
  21. font-size: 20px;
  22. }
  23. .link:hover {
  24. color: #ff636b;
  25. text-decoration: underline;
  26. cursor: pointer;
  27. }
  28. .button{
  29. background: rgb(0, 27, 45);
  30. border: none;
  31. text-decoration: none;
  32. padding: 10px 25px;
  33. color: rgb(255, 99, 107);
  34. cursor: pointer;
  35. text-align: center;
  36. font-size: 15px;
  37. min-width: 100px;
  38. margin: 5px;
  39. max-height: 52px;
  40. }
  41. .button:hover{
  42. background: rgb(179, 191, 209);
  43. }
  44. .button:active{
  45. background: rgb(240, 252, 255);
  46. }
  47. .dangerButton{
  48. display: initial;
  49. background: rgb(255, 99, 107);
  50. border: none;
  51. text-decoration: none;
  52. padding: 10px 25px;
  53. color: black;
  54. cursor: pointer;
  55. text-align: center;
  56. font-size: 15px;
  57. min-width: 100px;
  58. margin: 5px;
  59. max-height: 52px;
  60. }
  61. .dangerButton:hover{
  62. background: rgb(255, 129, 137);
  63. }
  64. .dangerButton:active{
  65. background: rgb(240, 252, 255);
  66. }
  67. .linkButton{
  68. background: none;
  69. border: none;
  70. text-decoration: underline;
  71. color: white;
  72. cursor: pointer;
  73. margin: 5px;
  74. font-size: 15px;
  75. }
  76. .public-buttons {
  77. position: inherit;
  78. align-self: center;
  79. margin-right: 39px;
  80. }
  81. .buttonDisabled{
  82. background: gray;
  83. text-decoration: none;
  84. border-radius: 10px;
  85. padding: 10px 5px;
  86. color: rgb(0, 27, 45);
  87. cursor: default;
  88. font-size: 25px;
  89. text-align: center;
  90. }
  91. .line-break{
  92. border: 1px solid rgb(255, 99, 107);
  93. margin: 30px 0;
  94. }
  95. @media screen and (max-width: 1400px){
  96. .button{
  97. font-size: 15px;
  98. }
  99. .header{
  100. height: 30px;
  101. }
  102. .headerStart{
  103. margin-left: 10px;
  104. }
  105. .headerEnd{
  106. font-size: 8px;
  107. }
  108. .headerLogo{
  109. white-space: nowrap;
  110. font-size: 10px;
  111. }
  112. .truncateLong{
  113. max-width: 100px;
  114. white-space: nowrap;
  115. overflow: hidden;
  116. text-overflow: ellipsis;
  117. }
  118. .mobileHide{
  119. display: none !important;
  120. }
  121. .headerStart{
  122. width: 0;
  123. }
  124. }