style.css 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  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-color:#f6f6f6;
  33. color: #878080;
  34. font-family: Monospace, Verdana, Serif;
  35. }
  36. hr {
  37. color:#000000;
  38. margin-top:30px;
  39. border: 1px solid black;
  40. width:90%
  41. }
  42. #call-sidebar {
  43. position:absolute;
  44. top:0px;
  45. left:1px;
  46. clear:both;
  47. float:left;
  48. width:1.5%;
  49. max-width:5px;
  50. height:100%;
  51. min-height:1900px;
  52. text-align:center;
  53. border-right: 1px solid #2c2f34;
  54. z-index:1;
  55. }
  56. #butCloseSplash {
  57. position:relative; left:-10px;
  58. }
  59. #butHashMe {
  60. position:relative;
  61. left:-2px;
  62. top:+5px;
  63. color:#000000;
  64. font-size:12px;
  65. }
  66. #content-bar {
  67. width:100%;
  68. float:left;
  69. }
  70. .data-date {
  71. font-size:12px;
  72. font-weight:900;
  73. height:13px;
  74. padding-left:5px;
  75. padding-right:5px;
  76. padding-top:0px;
  77. background: #FFFFFF;
  78. color: black;
  79. }
  80. .data-desc {}
  81. .data-time {
  82. font-size:12px;
  83. font-weight:900;
  84. height:13px;
  85. padding-left:5px;
  86. padding-right:5px;
  87. padding-top:0px;
  88. background: #FFFFFF;
  89. color: black;
  90. }
  91. .data-title {
  92. cursor:pointer;
  93. }
  94. #date {
  95. min-width:170px;
  96. max-width:250px;
  97. width:25%;
  98. }
  99. #desc {
  100. width:55%;
  101. max-width:630px;
  102. }
  103. #drop-img {
  104. float:left;
  105. margin-left:60px;
  106. margin-top:0px;
  107. width:229px;
  108. height:215px;
  109. overflow:hidden;
  110. border: 0px solid lightgray;
  111. cursor:pointer;
  112. }
  113. .emptyfield{
  114. border: 1px solid red;
  115. }
  116. .editemptyfield{
  117. border-bottom: 3px dashed red;
  118. }
  119. #events {
  120. clear:both;
  121. margin:auto;
  122. padding:20px;
  123. }
  124. .exerpt {
  125. display:none;
  126. }
  127. #footerCont {
  128. position: fixed;
  129. top: 2000px;
  130. left:-10px;
  131. width: 102%;
  132. border: 1px solid #C2DBF2;
  133. padding: 7px;
  134. background: #ffffff;
  135. opacity: 0.3;
  136. color:white;
  137. font-family: Arial,Sans,Verdana;
  138. font-size: 12px;
  139. text-align: center;
  140. z-index: 99990;
  141. }
  142. #footer {
  143. position: fixed;
  144. float: right;
  145. top: 2000px;
  146. left:-10px;
  147. width: 100%;
  148. border: 0px solid #C2DBF2;
  149. padding: 7px;
  150. opacity: 1.0;
  151. color:black;
  152. font-family: Arial,Sans,Verdana;
  153. font-size: 12px;
  154. font-weight: 400;
  155. text-align: right;
  156. z-index: 99991;
  157. }
  158. #footer2 {
  159. font-size:23px;
  160. }
  161. #genius {
  162. position:relative;
  163. left:+1px;
  164. width:90%;
  165. border: 1px dashed #EEEEEE;
  166. }
  167. #guest-msg {
  168. padding:30px;
  169. font-size:23px;
  170. margin-bottom:23px;
  171. font-weight:900;
  172. }
  173. .header {
  174. height: 65px;
  175. background-color:#ffffff;
  176. vertical-align: middle;
  177. border-bottom: 0px solid #2c2f34;
  178. padding: 8px;
  179. z-index:90;
  180. }
  181. .header2 {
  182. margin:0;
  183. padding:0;
  184. border-bottom:0px;
  185. text-align:center;
  186. }
  187. #hour {
  188. background-color:#FFFFFF;
  189. }
  190. #logo-hl {
  191. position:relative;
  192. top:-25px;
  193. width:48px;
  194. margin:5px;
  195. }
  196. #min {
  197. background-color:#FFFFFF;
  198. }
  199. .my-modal-content {
  200. float:left;
  201. width:90%;
  202. height:500px;
  203. margin-top:10%;
  204. }
  205. .my-modal-dialog {
  206. width:80%;
  207. background-color:#FFFFFF;
  208. }
  209. .my-modal-toolbox {
  210. margin-top:10%;
  211. }
  212. #Password {
  213. font-size:13px;
  214. width: 60%;
  215. border-radius:3px;
  216. }
  217. .res {
  218. float: left;
  219. /* width: 375px;*/
  220. padding:25px;
  221. height: 110px;
  222. font-weight: 900;
  223. }
  224. .resli{
  225. cursor:pointer;
  226. }
  227. #Salt {
  228. position:relative;
  229. top:+5px;
  230. font-size:13px;
  231. width: 90%;
  232. border-radius:3px;
  233. }
  234. .search-control {
  235. font-size:18px;
  236. font-weight: 900;
  237. color:black;
  238. height: 43px;
  239. padding-left:10px;
  240. padding-right:10px;
  241. }
  242. #send {
  243. position:relative;
  244. top:+28px;
  245. margin-top:25px;
  246. height:50px;
  247. background-color:red;
  248. border:1px solid black;
  249. color:white;
  250. font-size:medium;
  251. }
  252. #sidebar {
  253. position:absolute;
  254. left:6px;
  255. top:0px;
  256. clear:both;
  257. background-color:#FFFFFF;
  258. padding:8px;
  259. width:25%;
  260. max-width:250px;
  261. height:100%;
  262. text-align:center;
  263. border-right: 1px solid #2c2f34;
  264. display:none;
  265. z-index:91;
  266. }
  267. .sidebarcontrol{
  268. background:#393939;
  269. color:#ffffff;
  270. font-family: Verdana, Arial, Helvetica Neue, Helbetica;
  271. }
  272. .standardcontrol{
  273. /* border: 0px;
  274. border-bottom: 1px dashed #EEEEEE;*/
  275. color: #000000;
  276. font-family: Verdana, Arial, Helvetica Neue, Helbetica;
  277. }
  278. #sidebar-close {
  279. position:relative;
  280. left:-10px;
  281. }
  282. #splash {
  283. position:relative;
  284. left:+3px;
  285. width:98%;
  286. background-color: #33aced;
  287. color:black;
  288. border-radius:20px;
  289. padding: 20px;
  290. margin-bottom:8px;
  291. }
  292. .table-event {
  293. width:75%;
  294. border:0;
  295. }
  296. .td-admin {
  297. width:10%;
  298. text-align:center;
  299. padding-left:8px;
  300. padding-top:2px
  301. }
  302. .td-data-date {
  303. width:14%;
  304. text-align:left;
  305. vertical-align:top;
  306. padding-top:2px;
  307. padding-left:8px;
  308. white-space:nowrap;
  309. }
  310. .td-data-desc {
  311. width:66%;
  312. text-align:left;
  313. vertical-align:top;
  314. padding-top:5px;
  315. padding-left:15px;
  316. font-size:18px;
  317. }
  318. .td-data-time {
  319. width:10%;
  320. text-align:left;
  321. vertical-align:top;
  322. padding-top:2px;
  323. padding-left:8px;
  324. white-space:nowrap;
  325. }
  326. .td-data-title {
  327. width:66%;
  328. text-align:left;
  329. vertical-align:top;
  330. padding-top:5px;
  331. padding-left:15px;
  332. font-size:18px;
  333. }
  334. #template-img {
  335. float:left;
  336. margin-left:120px;
  337. margin-top:60px;
  338. width:181px;
  339. height:140px;
  340. overflow:hidden;
  341. border: 0px solid lightgray;
  342. }
  343. #template-img:hover {
  344. border-bottom: 8px solid #2ba5f4;
  345. border-radius: 50%;
  346. }
  347. .this-title {
  348. color:#FFFFFF;
  349. background:black;
  350. }
  351. #welcome-msg {
  352. float:right;
  353. font-size:23px;
  354. margin-bottom:23px;
  355. margin-right:7%;
  356. font-weight:900;
  357. color:#000000;
  358. }