You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

182 line
3.2 KiB

  1. @import "../../../css/colors.less";
  2. @leftWidth: 400px;
  3. @rightWidth: 400px;
  4. @boxPadding: 16px;
  5. @logoWidth: 559px;
  6. @logoHeight: 200px;
  7. @boxHeight: 169px;
  8. @messageHeight: @boxPadding;
  9. @totalWidth: @rightWidth;
  10. @totalHeight: (@logoHeight + @boxHeight + (@boxPadding * 3) + @messageHeight);
  11. .uiLogin {
  12. display: none;
  13. width: @totalWidth;
  14. height: @totalHeight;
  15. margin-top: -80px;
  16. .logo {
  17. width: 562px;
  18. height: @logoHeight;
  19. margin-left: ((@totalWidth / 2) - (@logoWidth / 2));
  20. margin-bottom: (@boxPadding * 3);
  21. }
  22. .right {
  23. height: @boxHeight;
  24. background-color: #3a3b4a;
  25. width: @rightWidth;
  26. padding: @boxPadding;
  27. .label, input {
  28. float: left;
  29. }
  30. .label {
  31. width: 30%;
  32. padding-top: 10px;
  33. color: @yellow;
  34. }
  35. input {
  36. width: 70%;
  37. }
  38. input, .textbox, input:-webkit-autofill {
  39. box-shadow: 0 0 0px 1000px darken(@gray, 15%) inset;
  40. color: @white;
  41. -webkit-text-fill-color: @white;
  42. margin-bottom: @boxPadding;
  43. }
  44. /* We duplicate this for firefox which doesn't like the webkit selector */
  45. input, .textbox {
  46. box-shadow: 0 0 0px 1000px darken(@gray, 15%) inset;
  47. color: @white;
  48. -webkit-text-fill-color: @white;
  49. margin-bottom: @boxPadding;
  50. }
  51. .message {
  52. height: @messageHeight;
  53. width: 200%;
  54. margin-left: -50%;
  55. margin-top: 36px;
  56. float: left;
  57. text-align: center;
  58. color: @orange;
  59. filter:
  60. brightness(100%)
  61. drop-shadow(0px -4px 0px @blackD)
  62. drop-shadow(0px 4px 0px @blackD)
  63. drop-shadow(4px 0px 0px @blackD)
  64. drop-shadow(-4px 0px 0px @blackD);
  65. -moz-filter:
  66. brightness(100%)
  67. drop-shadow(0px -4px 0px @blackD)
  68. drop-shadow(0px 4px 0px @blackD)
  69. drop-shadow(4px 0px 0px @blackD)
  70. drop-shadow(-4px 0px 0px @blackD);
  71. }
  72. .top-buttons {
  73. width: 100%;
  74. height: 35px;
  75. .btn {
  76. background-color: @orangeC;
  77. width: calc((100% - @boxPadding) / 2);
  78. float: left;
  79. margin-right: @boxPadding;
  80. color: @white;
  81. &:last-child {
  82. margin-right: 0px;
  83. }
  84. &:hover {
  85. background-color: @orangeB;
  86. }
  87. }
  88. }
  89. }
  90. .news {
  91. margin-left: -100px;
  92. margin-top: 40px;
  93. color: @white;
  94. width: 600px;
  95. text-align: center;
  96. cursor: pointer;
  97. filter:
  98. drop-shadow(0px -4px 0px @blackD)
  99. drop-shadow(0px 4px 0px @blackD)
  100. drop-shadow(4px 0px 0px @blackD)
  101. drop-shadow(-4px 0px 0px @blackD);
  102. }
  103. .spacer-h {
  104. height: 61px;
  105. }
  106. }
  107. .uiLoginExtra {
  108. .extra {
  109. position: absolute;
  110. left: 10px;
  111. bottom: 10px;
  112. .btn {
  113. padding-left: 10px;
  114. padding-right: 10px;
  115. width: 100%;
  116. margin-bottom: 10px;
  117. background-color: @purpleC;
  118. color: @white;
  119. &:last-child {
  120. margin-bottom: 0px;
  121. }
  122. &:hover {
  123. background-color: @purpleA;
  124. }
  125. }
  126. }
  127. .version {
  128. position: absolute;
  129. right: 10px;
  130. bottom: 10px;
  131. color: @yellow;
  132. cursor: pointer;
  133. filter:
  134. brightness(100%)
  135. drop-shadow(0px -4px 0px @blackD)
  136. drop-shadow(0px 4px 0px @blackD)
  137. drop-shadow(4px 0px 0px @blackD)
  138. drop-shadow(-4px 0px 0px @blackD);
  139. -moz-filter:
  140. brightness(100%)
  141. drop-shadow(0px -4px 0px @blackD)
  142. drop-shadow(0px 4px 0px @blackD)
  143. drop-shadow(4px 0px 0px @blackD)
  144. drop-shadow(-4px 0px 0px @blackD);
  145. }
  146. }
  147. .mobile .uiLogin {
  148. margin-top: 0px;
  149. }