style.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. /**
  2. * Copyright (c) 2016, 2024, the Open Gallery's contributors
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither Open Gallery nor the names of its contributors
  13. * may be used to endorse or promote products derived from this software
  14. * without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  17. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. *
  27. * style.css
  28. *
  29. * style sheet.
  30. *
  31. * @author Daniele Bonini <danielemi@hotmail.com>
  32. * @copyrights (c) 2016, 2024, the Open Gallery's contributors
  33. * @license https://opensource.org/licenses/BSD-3-Clause
  34. */
  35. @import url('https://fonts.googleapis.com/css?family=Indie+Flower&display=swap');
  36. @import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');
  37. body {
  38. font-family: 'Indie Flower', cursive;
  39. /* background-color: #068cea;*/
  40. background-color:lightgray;
  41. margin:0 0 0 0;
  42. }
  43. .aa {
  44. white-space:nowrap;
  45. color: "#5a90be";
  46. text-decoration:underline;
  47. }
  48. .aaa {
  49. font-family: Sans;
  50. font-size: 12px;
  51. font-weight: 900;
  52. color:#000000;
  53. }
  54. #butParent {
  55. position:absolute;
  56. top:20px;
  57. left:+5px;
  58. cursor: pointer;
  59. z-index: 999;
  60. }
  61. .appMenu {
  62. position: absolute;
  63. top: 180px;
  64. left: 50px;
  65. background-color:#ffffff;
  66. margin-top:130px;
  67. margin-left:50px;
  68. width:450px;
  69. display: none;
  70. font-family: Sans, Verdana, Serif;
  71. font-size:12px;
  72. font-weight:500;
  73. z-index: 99997;
  74. }
  75. #appMenuIco {
  76. float:left;
  77. position:relative;
  78. top:1px;
  79. left:-20px;
  80. cursor: pointer;
  81. }
  82. .appMenu {
  83. float:left;
  84. position:relative;
  85. width: 150px;
  86. top:+43px;
  87. left:+22px;
  88. background:#313431;
  89. cursor: pointer;
  90. }
  91. #footerCont {
  92. position: fixed;
  93. top: 2000px;
  94. left:-10px;
  95. width: 102%;
  96. border: 1px solid #C2DBF2;
  97. padding: 7px;
  98. background: white;
  99. opacity: 0.3;
  100. color:white;
  101. font-family: Sans;
  102. font-size: 12px;
  103. text-align: center;
  104. z-index: 99998;
  105. }
  106. #footer {
  107. position: fixed;
  108. float: right;
  109. top: 2000px;
  110. left:-10px;
  111. width: 100%;
  112. border: 0px solid #C2DBF2;
  113. padding: 7px;
  114. opacity: 1.0;
  115. color:black;
  116. font-family: Sans;
  117. font-size: 12px;
  118. font-weight: 400;
  119. text-align: right;
  120. z-index: 99999;
  121. }
  122. .welcome {
  123. color: orange;
  124. font-size:18px;
  125. }