style.css 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. /**
  2. * Copyright 2021, 2024 5 Mode
  3. *
  4. * This file is part of Homolog.
  5. *
  6. * Homolog 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. * Homolog 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 Homolog. If not, see <https://www.gnu.org/licenses/>.
  18. *
  19. * style.css
  20. *
  21. * CSS file.
  22. *
  23. * @author Daniele Bonini <my25mb@aol.com>
  24. * @copyrights (c) 2021, 2024, 5 Mode
  25. */
  26. html {
  27. height: 100%;
  28. }
  29. body {
  30. margin: 0px;
  31. padding: 0px;
  32. background:url('/SW_res/sw_bg1.jpg') fixed;
  33. background-size: cover;
  34. background-position: left top;
  35. background-repeat: no-repeat;
  36. color: #1c1c1c;
  37. font-family:'Press Start 2P';
  38. font-size:12px;
  39. }
  40. h1 {
  41. clear: both;
  42. margin:auto;
  43. width: 60%;
  44. /*min-width: 800px;*/
  45. text-align:center;
  46. font-size: 26px;
  47. }
  48. hr {
  49. position: relative;
  50. top: -35px;
  51. }
  52. #ahome {
  53. font-weight:900;
  54. color:#1c1c1c;
  55. text-decoration: none;
  56. }
  57. #butCloseSplash {
  58. position:relative; left:-10px;
  59. }
  60. #butHashMe {
  61. position:relative;
  62. left:-2px;
  63. top:+5px;
  64. color:#000000;
  65. font-size:12px;
  66. }
  67. #call-sidebar {
  68. position:absolute;
  69. top:0px;
  70. left:1px;
  71. clear:both;
  72. float:left;
  73. width:1.5%;
  74. max-width:5px;
  75. height:100%;
  76. min-height:1900px;
  77. text-align:center;
  78. border-right: 1px solid #2c2f34;
  79. z-index:1;
  80. }
  81. #content-bar {
  82. width:100%;
  83. }
  84. .data-date {
  85. font-size:10px;
  86. font-weight:900;
  87. }
  88. .data-desc {
  89. font-size:10px;
  90. white-space: nowrap;
  91. }
  92. .data-time {
  93. font-size:10px;
  94. font-weight:900;
  95. }
  96. #date {
  97. max-width:170px;
  98. width:8%;
  99. height: 26px;
  100. }
  101. #desc {
  102. width:45%;
  103. max-width:630px;
  104. height: 26px;
  105. }
  106. .emptyfield{
  107. border: 1px solid red;
  108. }
  109. .editemptyfield{
  110. border-bottom: 3px dashed red;
  111. }
  112. #events {
  113. clear:both;
  114. margin:auto;
  115. }
  116. #footerCont {
  117. position: fixed;
  118. top: 2000px;
  119. left:-10px;
  120. width: 102%;
  121. border: 1px solid #C2DBF2;
  122. padding: 7px;
  123. background: #ffffff;
  124. opacity: 0.3;
  125. color:white;
  126. font-family: Arial,Sans,Verdana;
  127. font-size: 12px;
  128. text-align: center;
  129. z-index: 99990;
  130. }
  131. #footer {
  132. position: fixed;
  133. float: right;
  134. top: 2000px;
  135. left:-10px;
  136. width: 100%;
  137. border: 0px solid #C2DBF2;
  138. padding: 7px;
  139. opacity: 1.0;
  140. color:black;
  141. font-family: Arial,Sans,Verdana;
  142. font-size: 12px;
  143. font-weight: 400;
  144. text-align: right;
  145. z-index: 99991;
  146. }
  147. #footer2 {
  148. font-size:23px;
  149. }
  150. #genius {
  151. position:relative;
  152. left:+1px;
  153. width:90%;
  154. border: 1px dashed #EEEEEE;
  155. }
  156. #guest-msg {
  157. padding:30px;
  158. font-size:23px;
  159. margin-bottom:23px;
  160. font-weight:900;
  161. }
  162. .header {
  163. height: 65px;
  164. vertical-align: middle;
  165. border-bottom: 0px solid #2c2f34;
  166. padding: 10px;
  167. z-index:90;
  168. font-size:13px;
  169. font-weight:400;
  170. font-family: Arial, Sans, Verdana;
  171. }
  172. .header2 {
  173. margin:0;
  174. padding:0;
  175. border-bottom:0px;
  176. text-align:center;
  177. }
  178. #hour {
  179. background-color:#FFFFFF;
  180. height: 26px;
  181. }
  182. #insertBar {
  183. /* width: 1050px;*/
  184. /* margin-right:140px;*/
  185. margin-left:14%;
  186. }
  187. #logo-hl {
  188. position:relative;
  189. top:-25px;
  190. width:48px;
  191. margin:5px;
  192. margin-right:20px;
  193. }
  194. #min {
  195. background-color:#FFFFFF;
  196. height: 26px;
  197. }
  198. #Password {
  199. font-size:13px;
  200. width: 60%;
  201. border-radius:3px;
  202. }
  203. #Salt {
  204. position:relative;
  205. top:+5px;
  206. font-size:13px;
  207. width: 90%;
  208. border-radius:3px;
  209. }
  210. #send {
  211. position:relative;
  212. top:+5px;
  213. margin-top:0px;
  214. height: 26px;
  215. background-color:red;
  216. border:1px solid black;
  217. color:white;
  218. font-size:medium;
  219. }
  220. #sidebar {
  221. position:absolute;
  222. left:6px;
  223. top:0px;
  224. clear:both;
  225. background-color:#FFFFFF;
  226. padding:8px;
  227. width:25%;
  228. max-width:250px;
  229. height:100%;
  230. text-align:center;
  231. border-right: 1px solid #2c2f34;
  232. display:none;
  233. z-index:91;
  234. }
  235. .sidebarcontrol{
  236. background:#393939;
  237. color:#ffffff;
  238. font-family: Verdana, Arial, Helvetica Neue, Helbetica;
  239. }
  240. .standardcontrol{
  241. /* border: 0px;
  242. border-bottom: 1px dashed #EEEEEE;*/
  243. color: #000000;
  244. font-family: Verdana, Arial, Helvetica Neue, Helbetica;
  245. }
  246. #sidebar-close {
  247. position:relative;
  248. left:-10px;
  249. }
  250. #splash {
  251. position:relative;
  252. left:+3px;
  253. width:98%;
  254. background-color: #33aced;
  255. color:black;
  256. border-radius:20px;
  257. padding: 20px;
  258. margin-bottom:8px;
  259. }
  260. .table-event {
  261. width:75%;
  262. border:0;
  263. margin: auto;
  264. margin-left:33%;
  265. margin-right:30px;
  266. clear: both;
  267. }
  268. td {
  269. font-weight:900;
  270. font-size:10px;
  271. font-family: Sans Verdana Arial;
  272. border-right: 5px solid transparent;
  273. border-bottom: 7px solid transparent;
  274. }
  275. .td-admin {
  276. width:10%;
  277. text-align:center;
  278. padding-left:8px;
  279. padding-top:2px
  280. }
  281. .td-data-star {
  282. width:28%;
  283. text-align:right;
  284. vertical-align:top;
  285. padding-top:2px;
  286. padding-left:8px;
  287. padding-right:0px;
  288. white-space:nowrap;
  289. }
  290. .td-data-date {
  291. width:14%;
  292. text-align:center;
  293. vertical-align:top;
  294. padding-top:10px;
  295. padding-left:8px;
  296. white-space:nowrap;
  297. }
  298. .td-data-desc {
  299. position: relative;
  300. top: 4px;
  301. width:46%;
  302. text-align:left;
  303. vertical-align:top;
  304. padding-top:0px;
  305. padding-left:15px;
  306. font-size:18px;
  307. color:#FFFFFF;
  308. background: darkred;
  309. }
  310. .td-data-time {
  311. width:10%;
  312. text-align:left;
  313. vertical-align:top;
  314. padding-top:10px;
  315. padding-left:8px;
  316. white-space:nowrap;
  317. }
  318. #welcome-msg {
  319. font-size:23px;
  320. margin-bottom:23px;
  321. font-weight:900;
  322. }