style.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. float:left;
  64. width:49%;
  65. min-height:1000px;
  66. height:100%;
  67. min-width:700px;
  68. padding-left:2%;
  69. margin-left:1%;
  70. white-space: normal;
  71. background: lightgray;
  72. }
  73. #cont-files {
  74. float:left;
  75. margin-left:80px;
  76. width: 252px;
  77. height: 280px;
  78. }
  79. #files {
  80. width: 250px;
  81. height: 250px;
  82. border: 2px solid gray;
  83. background: transparent;
  84. }
  85. #resources {
  86. float:left;
  87. width:46%;
  88. min-height:1000px;
  89. height:100%;
  90. margin-right:1%;
  91. background: lightgoldenrodyellow;
  92. border-left: 1px solid darkgray;
  93. height: max-content;
  94. }
  95. #singers {
  96. width: 250px;
  97. height: 350px;
  98. border: 2px solid gray;
  99. background: white;
  100. }
  101. #cont-songs {
  102. float:left;
  103. margin-left:80px;
  104. width: 252px;
  105. height: 380px;
  106. }
  107. .list-title {
  108. font-weight: 900;
  109. }
  110. #songs {
  111. width: 250px;
  112. height: 350px;
  113. border: 2px solid gray;
  114. background: white;
  115. }
  116. #cont-code {
  117. position:relative;
  118. margin-top:50px;
  119. clear:both;
  120. float:left;
  121. margin-left:80px;
  122. width: 550px;
  123. height: 380px;
  124. }
  125. #cont-precode {
  126. overflow-x: auto;
  127. overflow-y: auto;
  128. }
  129. #code {
  130. width: 480px;
  131. height: 350px;
  132. border: 2px solid gray;
  133. background: white;
  134. padding:12px;
  135. white-space: pre-wrap;
  136. }
  137. .ve-singer-list {
  138. height: 26px;
  139. border: 1px solid gray;
  140. padding: 6px;
  141. padding-top: 8px;
  142. }
  143. .ve-song-list {
  144. height: 26px;
  145. border: 1px solid gray;
  146. padding: 6px;
  147. padding-top: 8px;
  148. }