style.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. /**
  2. * Copyright 2021, 2024 5 Mode
  3. *
  4. * This file is part of Xslt-Master.
  5. *
  6. * Xslt-Master is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Xslt-Master is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with Xslt-Master. If not, see <https://www.gnu.org/licenses/>.
  18. *
  19. * style.css
  20. *
  21. * Xslt-Master CSS stylesheet.
  22. *
  23. * @author Daniele Bonini <my25mb@aol.com>
  24. * @copyrights (c) 2016, 2024 5 Mode
  25. */
  26. #footerCont {
  27. position: fixed;
  28. top: 2000px;
  29. left:-10px;
  30. width: 102%;
  31. border: 1px solid #C2DBF2;
  32. padding: 7px;
  33. background: white;
  34. opacity: 0.3;
  35. color:white;
  36. font-family: Arial,Sans,Vardana;
  37. font-size: 12px;
  38. text-align: center;
  39. z-index: 99998;
  40. }
  41. #footer {
  42. position: fixed;
  43. float: right;
  44. top: 2000px;
  45. left:-10px;
  46. width: 100%;
  47. border: 0px solid #C2DBF2;
  48. padding: 7px;
  49. opacity: 1.0;
  50. color:black;
  51. font-family: Arial,Sans,Vardana;
  52. font-size: 12px;
  53. font-weight: 400;
  54. text-align: right;
  55. z-index: 99999;
  56. }
  57. #cont-singers {
  58. float:left;
  59. width: 252px;
  60. height: 380px;
  61. }
  62. #content {
  63. clear:both;
  64. float:left;
  65. width:49%;
  66. min-height:1000px;
  67. height:100%;
  68. min-width:700px;
  69. padding-left:2%;
  70. margin-left:10px;
  71. white-space: normal;
  72. background: lightgray;
  73. }
  74. #cont-files {
  75. float:left;
  76. margin-left:80px;
  77. width: 252px;
  78. height: 280px;
  79. }
  80. #files {
  81. width: 250px;
  82. height: 250px;
  83. border: 2px solid gray;
  84. background: transparent;
  85. }
  86. #resources {
  87. float:left;
  88. width:46%;
  89. min-height:1000px;
  90. height:100%;
  91. margin-right:1%;
  92. background: lightgoldenrodyellow;
  93. border-left: 1px solid darkgray;
  94. height: max-content;
  95. }
  96. #singers {
  97. width: 250px;
  98. height: 350px;
  99. border: 2px solid gray;
  100. background: white;
  101. }
  102. #cont-songs {
  103. float:left;
  104. margin-left:80px;
  105. width: 252px;
  106. height: 380px;
  107. }
  108. .list-title {
  109. font-weight: 900;
  110. }
  111. #songs {
  112. width: 250px;
  113. height: 350px;
  114. border: 2px solid gray;
  115. background: white;
  116. }
  117. #cont-code {
  118. position:relative;
  119. margin-top:50px;
  120. clear:both;
  121. float:left;
  122. margin-left:80px;
  123. width: 550px;
  124. height: 380px;
  125. }
  126. #cont-precode {
  127. overflow-x: auto;
  128. overflow-y: auto;
  129. }
  130. #code {
  131. width: 480px;
  132. height: 350px;
  133. border: 2px solid gray;
  134. background: white;
  135. padding:12px;
  136. white-space: pre-wrap;
  137. }
  138. .ve-singer-list {
  139. height: 26px;
  140. border: 1px solid gray;
  141. padding: 6px;
  142. padding-top: 8px;
  143. }
  144. .ve-song-list {
  145. height: 26px;
  146. border: 1px solid gray;
  147. padding: 6px;
  148. padding-top: 8px;
  149. }