shared.css 2.6 KB

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