eq2emu.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /* Custom Elements */
  2. .console {
  3. padding:5px;
  4. border-radius:3px;
  5. display:block;
  6. width:100%;
  7. min-height:300px;
  8. background-color:rgba(0,0,0,0.75);
  9. color:#FFF;
  10. }
  11. .hidden { display:none; }
  12. /* Inline Vertical Middle Alignment */
  13. .vm {
  14. display:inline-block;
  15. }
  16. .m,.vm {
  17. vertical-align:middle;
  18. }
  19. /* Font Weight Bold */
  20. .strong, .bold {
  21. font-weight:bold;
  22. }
  23. /* Item Editor Header Title Bar (Current Item) */
  24. #item-editor-header-label {
  25. margin-left:10px;
  26. }
  27. /* Edit Item View Icon */
  28. .edit-item-ico {
  29. display:inline-block;
  30. max-width:42px;
  31. max-height:42px;
  32. min-width:42px;
  33. min-height:42px;
  34. }
  35. /* Quick Search Item Icon */
  36. .quick-search-item-ico {
  37. display:inline-block;
  38. max-width:42px;
  39. max-height:42px;
  40. width:100%;
  41. height:auto;
  42. min-width:32px;
  43. min-height:32px;
  44. }
  45. /* Quick Search Item Row */
  46. .quick-item-search-row {
  47. transition: all ease 500ms;
  48. padding-top:3px;
  49. padding-bottom:3px;
  50. background-color:rgb(212, 196, 237, 0.01);
  51. border-radius:10px;
  52. }
  53. .quick-item-search-row:hover {
  54. transition: all ease 750ms;
  55. cursor:pointer;
  56. background-color:rgba(212, 196, 237, .99)
  57. }
  58. /* Quick Item Search List Container */
  59. #quick-item-list {
  60. padding-top:4px;
  61. }
  62. /* Theme Adjustments */
  63. .fast-spin {
  64. -webkit-animation: fa-spin 800ms infinite linear!important;
  65. animation: fa-spin 800ms infinite linear!important;
  66. }
  67. .inline { display:inline-block!important; vertical-align:middle!important; }
  68. .info-card {
  69. height:11.50rem!important;
  70. }
  71. .va {
  72. vertical-align:middle!important;
  73. }
  74. .n-b-t {
  75. border-top:none!important;
  76. }
  77. .n-b-l {
  78. border-left:none!important;
  79. }
  80. .n-b-r {
  81. border-right:none!important;
  82. }
  83. .n-b-b {
  84. border-bottom:none!important;
  85. }
  86. .n-b-lr {
  87. border-left:none!important;
  88. border-right:none!important;
  89. }
  90. .n-b-tb {
  91. border-top:none!important;
  92. border-bottom:none!important;
  93. }
  94. .n-p-t {
  95. padding-top:0px!important;
  96. }
  97. .n-p-l {
  98. padding-left:0px!important;
  99. }
  100. .n-p-r {
  101. padding-right:0px!important;
  102. }
  103. .n-p-b {
  104. padding-bottom:0px!important;
  105. }
  106. .n-p-lr {
  107. padding-left:0px!important;
  108. padding-right:0px!important;
  109. }
  110. .n-p-tb {
  111. padding-top:0px!important;
  112. padding-bottom:0px!important;
  113. }
  114. .n-m-t {
  115. margin-top:0px!important;
  116. }
  117. .n-m-l {
  118. margin-left:0px!important;
  119. }
  120. .n-m-r {
  121. margin-right:0px!important;
  122. }
  123. .n-m-b {
  124. margin-bottom:0px!important;
  125. }
  126. .n-m-lr {
  127. margin-left:0px!important;
  128. margin-right:0px!important;
  129. }
  130. .n-m-tb {
  131. margin-top:0px!important;
  132. margin-bottom:0px!important;
  133. }