general.css 2.4 KB

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