Frontend for viewing Dungeon Defender layouts
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.

style.css 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. body {
  2. font-family: sans-serif;
  3. margin: 0;
  4. padding: 0;
  5. }
  6. #header, #header h1 {
  7. margin: 0;
  8. padding: 0;
  9. }
  10. #header {
  11. padding: 10px 20px;
  12. background-image: linear-gradient(bottom, rgb(255,255,255) 28%, rgb(244,245,242) 64%);
  13. background-image: -o-linear-gradient(bottom, rgb(255,255,255) 28%, rgb(244,245,242) 64%);
  14. background-image: -moz-linear-gradient(bottom, rgb(255,255,255) 28%, rgb(244,245,242) 64%);
  15. background-image: -webkit-linear-gradient(bottom, rgb(255,255,255) 28%, rgb(244,245,242) 64%);
  16. background-image: -ms-linear-gradient(bottom, rgb(255,255,255) 28%, rgb(244,245,242) 64%);
  17. background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.28, rgb(255,255,255)), color-stop(0.64, rgb(244,245,242)));
  18. border-bottom: 1px solid rgb(244, 245, 242);
  19. }
  20. #header img {
  21. vertical-align: bottom;
  22. }
  23. #header span {
  24. display: inline-block;
  25. padding-bottom: 10px;
  26. margin-left: 20px;
  27. color: #300;
  28. }
  29. #sidebar {
  30. float: left;
  31. width: 200px;
  32. padding: 10px;
  33. min-height: 1024px;
  34. border-right: 1px solid rgb(244, 245, 242);
  35. }
  36. #sidebar > div {
  37. text-align: center;
  38. margin-bottom: 20px;
  39. }
  40. h2 {
  41. margin: 0;
  42. color: #300;
  43. }
  44. #notecontent {
  45. width: 100%;
  46. height: 300px;
  47. max-width: 100%;
  48. }
  49. #palette p {
  50. font-size: x-small;
  51. margin-top: 0;
  52. }
  53. #stats p {
  54. margin: 0;
  55. padding: 3px 0;
  56. }
  57. #mapcontainer {
  58. position: relative;
  59. width: 1024px;
  60. height: 1024px;
  61. margin-left: 221px;
  62. }
  63. #du_wrapper.over {
  64. background-color: #600;
  65. color: white;
  66. }
  67. .tower, .core, #palette .tower.monk { width: 40px; height: 40px; }
  68. .tower.monk, #palette .tower.monk.ui-draggable-dragging { width: 95px; height: 95px; }
  69. .tower.monk { z-index: 97; }
  70. .tower.huntress { z-index: 98; }
  71. .tower.squire { z-index: 99; }
  72. .tower.apprentice { z-index: 100; }
  73. body .tower.ui-draggable-dragging { z-index: 101; }