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.
 
 
 

67 lines
801 B

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