Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

59 linhas
754 B

  1. @import "../../../css/ui.less";
  2. .uiDeath {
  3. display: none;
  4. width: 400px;
  5. background-color: @gray;
  6. border: 4px solid @lightGray;
  7. text-align: center;
  8. padding: 16px 16px 0px 16px;
  9. .msg {
  10. color: @white;
  11. .inner {
  12. display: inline-block;
  13. color: @orange;
  14. }
  15. }
  16. .penalty {
  17. color: @yellowB;
  18. margin-top: 15px;
  19. }
  20. .btn {
  21. color: @white;
  22. width: 100%;
  23. height: 32px;
  24. background-color: @blue;
  25. margin: 16px 0px;
  26. padding-top: 8px;
  27. cursor: pointer;
  28. &:hover {
  29. background-color: lighten(@blue, 15%);
  30. color: @black;
  31. }
  32. }
  33. &.permadeath {
  34. .buttons {
  35. .btn-respawn {
  36. display: none;
  37. }
  38. .btn-logout {
  39. display: block;
  40. }
  41. }
  42. }
  43. .buttons {
  44. .btn-logout {
  45. display: none;
  46. }
  47. }
  48. }