Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

162 lignes
2.8 KiB

  1. @import "../../../css/ui.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. float: left;
  25. background-color: #3a3b4a;
  26. width: @rightWidth;
  27. padding: @boxPadding;
  28. .label, input {
  29. float: left;
  30. }
  31. .label {
  32. width: 30%;
  33. padding-top: 10px;
  34. color: @green;
  35. }
  36. input {
  37. width: 70%;
  38. }
  39. input, .textbox, input:-webkit-autofill {
  40. box-shadow: 0 0 0px 1000px darken(@gray, 15%) inset;
  41. color: @white;
  42. -webkit-text-fill-color: @white;
  43. margin-bottom: @boxPadding;
  44. }
  45. /* We duplicate this for firefox which doesn't like the webkit selector */
  46. input, .textbox {
  47. box-shadow: 0 0 0px 1000px darken(@gray, 15%) inset;
  48. color: @white;
  49. -webkit-text-fill-color: @white;
  50. margin-bottom: @boxPadding;
  51. }
  52. .message {
  53. height: @messageHeight;
  54. width: 200%;
  55. margin-left: -50%;
  56. margin-top: 36px;
  57. float: left;
  58. text-align: center;
  59. color: @orange;
  60. filter:
  61. brightness(100%)
  62. drop-shadow(0px -4px 0px @blackD)
  63. drop-shadow(0px 4px 0px @blackD)
  64. drop-shadow(4px 0px 0px @blackD)
  65. drop-shadow(-4px 0px 0px @blackD);
  66. -moz-filter:
  67. brightness(100%)
  68. drop-shadow(0px -4px 0px @blackD)
  69. drop-shadow(0px 4px 0px @blackD)
  70. drop-shadow(4px 0px 0px @blackD)
  71. drop-shadow(-4px 0px 0px @blackD);
  72. }
  73. .top-buttons {
  74. width: 100%;
  75. height: 35px;
  76. .button {
  77. background-color: @purpleB;
  78. width: calc((100% - @boxPadding) / 2);
  79. float: left;
  80. margin-right: @boxPadding;
  81. color: @white;
  82. &:last-child {
  83. margin-right: 0px;
  84. }
  85. &:hover {
  86. background-color: @purpleA;
  87. }
  88. }
  89. }
  90. }
  91. .spacer-h {
  92. height: 61px;
  93. }
  94. }
  95. .uiLoginExtra {
  96. .extra {
  97. position: absolute;
  98. left: 10px;
  99. bottom: 10px;
  100. .button {
  101. padding-left: 10px;
  102. padding-right: 10px;
  103. width: 100%;
  104. margin-bottom: 10px;
  105. background-color: @blueD;
  106. color: @white;
  107. &:last-child {
  108. margin-bottom: 0px;
  109. }
  110. &:hover {
  111. background-color: @blueC;
  112. }
  113. }
  114. }
  115. .version {
  116. position: absolute;
  117. right: 10px;
  118. bottom: 10px;
  119. color: @yellow;
  120. filter:
  121. brightness(100%)
  122. drop-shadow(0px -4px 0px @blackD)
  123. drop-shadow(0px 4px 0px @blackD)
  124. drop-shadow(4px 0px 0px @blackD)
  125. drop-shadow(-4px 0px 0px @blackD);
  126. -moz-filter:
  127. brightness(100%)
  128. drop-shadow(0px -4px 0px @blackD)
  129. drop-shadow(0px 4px 0px @blackD)
  130. drop-shadow(4px 0px 0px @blackD)
  131. drop-shadow(-4px 0px 0px @blackD);
  132. }
  133. }