style.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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=Bungee Hairline&display=swap');
  36. body {
  37. background-color:lightgray;
  38. margin:0 0 0 0;
  39. }
  40. .aa {
  41. white-space:nowrap;
  42. color: "#5a90be";
  43. text-decoration:underline;
  44. }
  45. .aaa {
  46. font-family: Sans;
  47. font-size: 12px;
  48. font-weight: 900;
  49. color:#000000;
  50. }
  51. #butParent {
  52. position:absolute;
  53. top:20px;
  54. left:+5px;
  55. cursor: pointer;
  56. z-index: 999;
  57. }
  58. .appMenu {
  59. position: absolute;
  60. top: 180px;
  61. left: 50px;
  62. background-color:#ffffff;
  63. margin-top:130px;
  64. margin-left:50px;
  65. width:450px;
  66. display: none;
  67. font-family: Sans, Verdana, Serif;
  68. font-size:12px;
  69. font-weight:500;
  70. z-index: 99997;
  71. }
  72. #appMenuIco {
  73. float:left;
  74. position:relative;
  75. top:1px;
  76. left:-20px;
  77. cursor: pointer;
  78. }
  79. .appMenu {
  80. float:left;
  81. position:relative;
  82. width: 150px;
  83. top:+43px;
  84. left:+22px;
  85. background:#313431;
  86. cursor: pointer;
  87. }
  88. #footerCont {
  89. position: fixed;
  90. top: 2000px;
  91. left:-10px;
  92. width: 102%;
  93. border: 1px solid #C2DBF2;
  94. padding: 7px;
  95. background: white;
  96. opacity: 0.3;
  97. color:white;
  98. font-family: Sans;
  99. font-size: 12px;
  100. text-align: center;
  101. z-index: 99998;
  102. }
  103. #footer {
  104. position: fixed;
  105. float: right;
  106. top: 2000px;
  107. left:-10px;
  108. width: 100%;
  109. border: 0px solid #C2DBF2;
  110. padding: 7px;
  111. opacity: 1.0;
  112. color:black;
  113. font-family: Sans;
  114. font-size: 12px;
  115. font-weight: 400;
  116. text-align: right;
  117. z-index: 99999;
  118. }
  119. .welcome {
  120. color: orange;
  121. font-size:18px;
  122. }