style.css 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  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. max-width:300px;
  90. width:100%;
  91. font-size:10px;
  92. white-space: nowrap;
  93. }
  94. .data-time {
  95. font-size:10px;
  96. font-weight:900;
  97. }
  98. #date {
  99. max-width:170px;
  100. width:8%;
  101. height: 26px;
  102. }
  103. #desc {
  104. width:45%;
  105. max-width:630px;
  106. height: 26px;
  107. }
  108. .emptyfield{
  109. border: 1px solid red;
  110. }
  111. .editemptyfield{
  112. border-bottom: 3px dashed red;
  113. }
  114. #events {
  115. clear:both;
  116. margin:auto;
  117. }
  118. #footerCont {
  119. position: fixed;
  120. top: 2000px;
  121. left:-10px;
  122. width: 102%;
  123. border: 1px solid #C2DBF2;
  124. padding: 7px;
  125. background: #ffffff;
  126. opacity: 0.3;
  127. color:white;
  128. font-family: Arial,Sans,Verdana;
  129. font-size: 12px;
  130. text-align: center;
  131. z-index: 99990;
  132. }
  133. #footer {
  134. position: fixed;
  135. float: right;
  136. top: 2000px;
  137. left:-10px;
  138. width: 100%;
  139. border: 0px solid #C2DBF2;
  140. padding: 7px;
  141. opacity: 1.0;
  142. color:black;
  143. font-family: Arial,Sans,Verdana;
  144. font-size: 12px;
  145. font-weight: 400;
  146. text-align: right;
  147. z-index: 99991;
  148. }
  149. #footer2 {
  150. font-size:23px;
  151. }
  152. #genius {
  153. position:relative;
  154. left:+1px;
  155. width:90%;
  156. border: 1px dashed #EEEEEE;
  157. }
  158. #guest-msg {
  159. padding:30px;
  160. font-size:23px;
  161. margin-bottom:23px;
  162. font-weight:900;
  163. }
  164. .header {
  165. height: 65px;
  166. vertical-align: middle;
  167. border-bottom: 0px solid #2c2f34;
  168. padding: 10px;
  169. z-index:90;
  170. font-size:13px;
  171. font-weight:400;
  172. font-family: Arial, Sans, Verdana;
  173. }
  174. .header2 {
  175. margin:0;
  176. padding:0;
  177. border-bottom:0px;
  178. text-align:center;
  179. }
  180. #hour {
  181. background-color:#FFFFFF;
  182. height: 26px;
  183. }
  184. #insertBar {
  185. /* width: 1050px;*/
  186. /* margin-right:140px;*/
  187. margin-left:14%;
  188. }
  189. #logo-hl {
  190. position:relative;
  191. top:-25px;
  192. width:48px;
  193. margin:5px;
  194. margin-right:20px;
  195. }
  196. #min {
  197. background-color:#FFFFFF;
  198. height: 26px;
  199. }
  200. #Password {
  201. font-size:13px;
  202. width: 60%;
  203. border-radius:3px;
  204. }
  205. #Salt {
  206. position:relative;
  207. top:+5px;
  208. font-size:13px;
  209. width: 90%;
  210. border-radius:3px;
  211. }
  212. #send {
  213. position:relative;
  214. top:+5px;
  215. margin-top:0px;
  216. height: 26px;
  217. background-color:red;
  218. border:1px solid black;
  219. color:white;
  220. font-size:medium;
  221. }
  222. #sidebar {
  223. position:absolute;
  224. left:6px;
  225. top:0px;
  226. clear:both;
  227. background-color:#FFFFFF;
  228. padding:8px;
  229. width:25%;
  230. max-width:250px;
  231. height:100%;
  232. text-align:center;
  233. border-right: 1px solid #2c2f34;
  234. display:none;
  235. z-index:91;
  236. }
  237. .sidebarcontrol{
  238. background:#393939;
  239. color:#ffffff;
  240. font-family: Verdana, Arial, Helvetica Neue, Helbetica;
  241. }
  242. .standardcontrol{
  243. /* border: 0px;
  244. border-bottom: 1px dashed #EEEEEE;*/
  245. color: #000000;
  246. font-family: Verdana, Arial, Helvetica Neue, Helbetica;
  247. }
  248. #sidebar-close {
  249. position:relative;
  250. left:-10px;
  251. }
  252. #splash {
  253. position:relative;
  254. left:+3px;
  255. width:98%;
  256. background-color: #33aced;
  257. color:black;
  258. border-radius:20px;
  259. padding: 20px;
  260. margin-bottom:8px;
  261. }
  262. .table-event {
  263. width:75%;
  264. border:0;
  265. margin: auto;
  266. margin-left:33%;
  267. margin-right:30px;
  268. clear: both;
  269. }
  270. td {
  271. font-weight:900;
  272. font-size:10px;
  273. font-family: Sans Verdana Arial;
  274. border-right: 5px solid transparent;
  275. border-bottom: 7px solid transparent;
  276. }
  277. .td-admin {
  278. width:10%;
  279. text-align:center;
  280. padding-left:8px;
  281. padding-top:2px
  282. }
  283. .td-data-star {
  284. width:10%;
  285. min-width:88px;
  286. text-align:right;
  287. vertical-align:top;
  288. padding-top:2px;
  289. padding-left:8px;
  290. padding-right:0px;
  291. white-space:nowrap;
  292. }
  293. .td-data-date {
  294. width:14%;
  295. text-align:center;
  296. vertical-align:top;
  297. padding-top:10px;
  298. padding-left:8px;
  299. white-space:nowrap;
  300. }
  301. .td-data-desc {
  302. position: relative;
  303. top: 4px;
  304. width:46%;
  305. max-width:250px;
  306. min-width:250px;
  307. text-align:left;
  308. vertical-align:top;
  309. padding-top:0px;
  310. padding-left:15px;
  311. font-size:18px;
  312. color:#FFFFFF;
  313. background: darkred;
  314. white-space: nowrap;
  315. overflow: clip;
  316. text-overflow: clip;
  317. }
  318. .td-data-time {
  319. width:10%;
  320. text-align:left;
  321. vertical-align:top;
  322. padding-top:10px;
  323. padding-left:8px;
  324. white-space:nowrap;
  325. }
  326. #welcome-msg {
  327. font-size:23px;
  328. margin-bottom:23px;
  329. font-weight:900;
  330. }