style.css 28 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372
  1. body {
  2. margin: 0px;
  3. background: url(images/img01.gif) repeat-x left top;
  4. font-family: Arial, Helvetica, sans-serif;
  5. font-size: 12px;
  6. color: #444444;
  7. }
  8. h1,
  9. h2,
  10. h3 {
  11. margin: 0;
  12. font-family: Georgia, "Times New Roman", Times, serif;
  13. font-weight: normal;
  14. color: #444444;
  15. }
  16. h1 {
  17. font-size: 2em;
  18. }
  19. h2 {
  20. font-size: 2em;
  21. }
  22. h3 {
  23. font-size: 1.6em;
  24. }
  25. p,
  26. ul,
  27. ol {
  28. margin-top: 0;
  29. line-height: 180%;
  30. }
  31. ul,
  32. ol {}
  33. a {
  34. text-decoration: none;
  35. color: #FB7600;
  36. }
  37. a:hover {
  38. background: none;
  39. }
  40. #wrapper {
  41. width: 100%;
  42. margin: 0 auto;
  43. background: url(images/img04.jpg) repeat-y left top;
  44. }
  45. #wrapper .btm {
  46. background: url(images/img05.gif) no-repeat left bottom;
  47. }
  48. /* Header */
  49. #header {
  50. width: 100%;
  51. height: 105px;
  52. margin: 0 auto;
  53. background: url(images/img02.jpg) repeat-x left top;
  54. }
  55. /* Logo */
  56. #logo {
  57. float: left;
  58. width: 100%;
  59. color: #000000;
  60. }
  61. #logo h1,
  62. #logo p {}
  63. #logo h1 {
  64. float: left;
  65. padding: 30px 0 0 20px;
  66. margin-right: 10px;
  67. letter-spacing: -1px;
  68. font-size: 2.8em;
  69. }
  70. #logo h1 a {
  71. color: #FF7900;
  72. }
  73. #logo p {
  74. float: left;
  75. margin: 44px 0 0 0;
  76. padding: 3px 10px 3px 0px;
  77. font: normal 13px Georgia, "Times New Roman", Times, serif;
  78. font-style: italic;
  79. }
  80. #logo a {
  81. border: none;
  82. background: none;
  83. text-decoration: none;
  84. color: #000000;
  85. }
  86. /* Menu */
  87. #menu {
  88. width: 100%;
  89. height: 44px;
  90. background: url(images/img03.jpg) repeat-x left top;
  91. margin: 0 auto;
  92. padding: 0;
  93. }
  94. #menu ul {
  95. margin: 0;
  96. padding: 13px 0 0 20px;
  97. list-style: none;
  98. line-height: normal;
  99. }
  100. #menu li {
  101. float: left;
  102. }
  103. #menu a {
  104. display: block;
  105. margin-right: 3px;
  106. padding: 5px 20px 7px 20px;
  107. text-decoration: none;
  108. font-family: Arial, Helvetica, sans-serif;
  109. font-size: 13px;
  110. font-weight: normal;
  111. color: #FFFFFF;
  112. border: none;
  113. }
  114. #menu a:hover,
  115. #menu .current_page_item a {}
  116. #menu a:hover {
  117. background: #FF7900;
  118. text-decoration: none;
  119. }
  120. #menu .first {
  121. margin-right: 3px;
  122. background: #FF7900;
  123. }
  124. /* Page */
  125. #page {
  126. width: 90%;
  127. margin: 0 auto;
  128. padding-top: 20px;
  129. }
  130. /* Content */
  131. #content {
  132. float: right;
  133. width: 70%;
  134. padding: 20px 20px 0 0;
  135. }
  136. .post {
  137. margin-left: 20px;
  138. padding-bottom: 30px;
  139. }
  140. .post .title {
  141. padding-left: 10px;
  142. border-left: 10px solid #F57601;
  143. color: #000000;
  144. }
  145. .post .title a {
  146. background: none;
  147. color: #444444;
  148. border: none;
  149. }
  150. .post .title a:hover {
  151. text-decoration: underline;
  152. }
  153. .post .meta {
  154. background: #E0E0E0;
  155. border-left: 4px double #F57601;
  156. border-right: 4px double #F57601;
  157. padding: 3px 3px 3px 3px;
  158. text-align: left;
  159. font-family: Arial, Helvetica, sans-serif;
  160. font-size: 11px;
  161. }
  162. .post .meta .comments,
  163. .post .meta .permalink {}
  164. .post .entry {
  165. padding: 10px 20px 20px 20px;
  166. text-align: justify;
  167. }
  168. /* Sidebar */
  169. #sidebar {
  170. float: left;
  171. width: 20%;
  172. padding: 25px 10px 0 20px;
  173. }
  174. #sidebar ul {
  175. margin: 0;
  176. padding: 0;
  177. list-style: none;
  178. }
  179. #sidebar li {
  180. margin: 0;
  181. padding: 0;
  182. }
  183. #sidebar li ul {
  184. padding-bottom: 30px;
  185. }
  186. #sidebar li li {
  187. line-height: 35px;
  188. border-bottom: 1px dashed #BCBCBC;
  189. }
  190. #sidebar li li span {
  191. display: block;
  192. margin-top: -20px;
  193. padding: 0;
  194. font-size: 11px;
  195. font-style: italic;
  196. color: #BCBCBC;
  197. }
  198. #sidebar h2 {
  199. letter-spacing: -.5px;
  200. color: #444444;
  201. }
  202. #sidebar p {
  203. padding-bottom: 20px;
  204. text-align: justify;
  205. }
  206. #sidebar a {
  207. color: #000000;
  208. border: none;
  209. }
  210. #sidebar a:hover {
  211. text-decoration: underline;
  212. color: #787878;
  213. }
  214. /* Calendar */
  215. #calendar {}
  216. #calendar_wrap {
  217. padding: 20px;
  218. }
  219. #calendar table {
  220. width: 100%;
  221. }
  222. #calendar tbody td {
  223. text-align: center;
  224. }
  225. #calendar #next {
  226. text-align: right;
  227. }
  228. /* Footer */
  229. #footer {
  230. width: 90%;
  231. height: 20px;
  232. margin: 0 auto;
  233. padding: 20px 0 15px 0;
  234. background: #444444;
  235. font-family: Arial, Helvetica, sans-serif;
  236. color: #FFFFFF;
  237. }
  238. #footer p {
  239. margin: 0;
  240. line-height: normal;
  241. font-size: 10px;
  242. text-align: center;
  243. }
  244. #footer a {
  245. color: #FFFFFF;
  246. border-bottom: 1px #FFFFFF dotted;
  247. }
  248. .row1 {
  249. background-color: #A8A8A8;
  250. padding: 1px 1px 1px 1px;
  251. }
  252. .row2 {
  253. background-color: #C4C4C4;
  254. padding: 1px 1px 1px 1px;
  255. }
  256. .row3 {
  257. background-color: #ECECEC;
  258. padding: 1px 1px 1px 1px;
  259. }
  260. .row4 {
  261. background-color: #ECECEC;
  262. padding: 1px;
  263. }
  264. .row5 {
  265. background-color: #ECECEC;
  266. padding: 1px 1px 1px 1px;
  267. }
  268. .row5:hover {
  269. background-color: #e1e1e1;
  270. }
  271. table.sortable.id tbody {
  272. counter-reset: sortabletablescope;
  273. }
  274. table.sortable.id thead tr::before {
  275. text-align: center;
  276. vertical-align: middle;
  277. content: "ID";
  278. display: table-cell;
  279. }
  280. table.sortable.id tbody tr::before {
  281. text-align: center;
  282. vertical-align: middle;
  283. content: counter(sortabletablescope);
  284. counter-increment: sortabletablescope;
  285. display: table-cell;
  286. }
  287. div.dhtml_menu div.vert_menu {
  288. position: absolute;
  289. visibility: hidden;
  290. }
  291. div.dhtml_menu div.horz_menu a {
  292. display: block;
  293. float: left;
  294. }
  295. div.dhtml_menu div.vert_menu a {
  296. display: block;
  297. float: none;
  298. }
  299. div.dhtml_menu div.vert_menu {
  300. margin-right: -1px;
  301. border-bottom: 1px solid #000000;
  302. z-index: 9999;
  303. }
  304. div.dhtml_menu div.horz_menu a,
  305. div.dhtml_menu div.vert_menu a {
  306. height: 20px;
  307. line-height: 20px;
  308. text-align: left;
  309. text-decoration: none;
  310. color: #000000;
  311. background-color: #595959;
  312. }
  313. div.dhtml_menu div.horz_menu a {
  314. background-color: transparent;
  315. line-height: 15px;
  316. height: 15px;
  317. }
  318. div.dhtml_menu div.vert_menu a {
  319. margin-bottom: -1px;
  320. width: 200px;
  321. border: 1px solid Black;
  322. }
  323. div.dhtml_menu div.horz_menu a:hover,
  324. div.dhtml_menu div.vert_menu a:hover {
  325. color: #000000;
  326. background-color: #595959;
  327. }
  328. div.dhtml_menu div.horz_menu a.parent,
  329. div.dhtml_menu div.vert_menu a.parent {
  330. color: #000000;
  331. background-color: #444444;
  332. }
  333. div.dhtml_menu div.horz_menu a.parent {
  334. background-color: transparent;
  335. }
  336. div.dhtml_menu div.horz_menu a.active,
  337. div.dhtml_menu div.vert_menu a.active,
  338. div.dhtml_menu div.horz_menu a.active:hover,
  339. div.dhtml_menu div.vert_menu a.active:hover {
  340. color: #000000;
  341. background-color: #E37E00;
  342. }
  343. .delete_button {
  344. height: 21px;
  345. width: 21px;
  346. border: solid;
  347. border-width: 0px;
  348. background-image: url(../delete.gif);
  349. }
  350. .frrow1 {
  351. background-color: #EFEFEF;
  352. }
  353. .frrow2 {
  354. background-color: #DEE3E7;
  355. }
  356. .frrow3 {
  357. background-color: #D1D7DC;
  358. }
  359. .row4 {
  360. color: Black;
  361. }
  362. .paytoday {
  363. font-size: 120%;
  364. background-color: #E37E00;
  365. color: #EFEFEF;
  366. padding: 2px 2px 2px 2px;
  367. }
  368. .paytoday img {
  369. width: 16px;
  370. }
  371. .ubButton {
  372. -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
  373. -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
  374. box-shadow: inset 0px 1px 0px 0px #ffffff;
  375. background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf));
  376. background: -moz-linear-gradient(center top, #ededed 5%, #dfdfdf 100%);
  377. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
  378. background-color: #ededed;
  379. -moz-border-radius: 6px;
  380. -webkit-border-radius: 6px;
  381. border-radius: 6px;
  382. border: 1px solid #dcdcdc;
  383. display: inline-block;
  384. color: #777777;
  385. font-family: arial;
  386. font-size: 15px;
  387. font-weight: bold;
  388. padding: 6px 24px;
  389. text-decoration: none;
  390. text-shadow: 1px 1px 0px #ffffff;
  391. }
  392. .ubButton:hover {
  393. background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed));
  394. background: -moz-linear-gradient(center top, #dfdfdf 5%, #ededed 100%);
  395. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
  396. background-color: #dfdfdf;
  397. }
  398. .ubButton:active {
  399. /* commented due android FF issues */
  400. /* position:relative;
  401. top:1px; */
  402. box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
  403. }
  404. /* glamour forms =) */
  405. .glamour label {
  406. /* font-size: 20px; */
  407. color: #666;
  408. padding-left: 4px;
  409. }
  410. .glamour {
  411. float: left;
  412. border: 1px solid #ddd;
  413. padding: 6px 6px 6px 12px;
  414. background: #fff;
  415. -webkit-border-radius: 10px;
  416. -moz-border-radius: 10px;
  417. border-radius: 10px;
  418. background: -webkit-gradient(linear, 0% 0%, 0% 40%, from(#EEE), to(#FFFFFF));
  419. background: -moz-linear-gradient(0% 40% 90deg, #FFF, #EEE);
  420. -webkit-box-shadow: 0px 0 50px #ccc;
  421. -moz-box-shadow: 0px 0 50px #ccc;
  422. box-shadow: 0px 0 50px #ccc;
  423. }
  424. .glamour fieldset {
  425. border: none;
  426. }
  427. /*
  428. .glamour input, textarea {
  429. padding: 4px;
  430. margin: 4px 0 20px 0;
  431. background: #fff;
  432. color: #555;
  433. border: 1px #ddd solid;
  434. -webkit-box-shadow: 0px 0px 4px #aaa;
  435. -moz-box-shadow: 0px 0px 4px #aaa;
  436. box-shadow: 0px 0px 4px #aaa;
  437. -webkit-transition: background 0.3s linear;
  438. }
  439. */
  440. .glamour textarea {}
  441. .glamour input:hover,
  442. textarea:hover {
  443. background: #eee;
  444. }
  445. .glamour legend {
  446. float: left;
  447. color: #000000;
  448. /* background: #E0E0E0; */
  449. border: 1px solid #C4C4C4;
  450. padding: 8px;
  451. margin: 8px;
  452. width: 60%;
  453. }
  454. /* CaTV Coloring */
  455. .CatvGood {
  456. background-color: #77a809;
  457. color: #FFFFFF;
  458. text-align: center;
  459. }
  460. .CatvGoodLong {
  461. background-color: #528009;
  462. color: #FFFFFF;
  463. text-align: center;
  464. }
  465. .CatvGood a {
  466. color: #FFFFFF;
  467. text-align: center;
  468. }
  469. .CatvBad {
  470. background-color: #FF0000;
  471. color: #ffffff;
  472. text-align: center;
  473. }
  474. .CatvBad a {
  475. color: #FFFFFF;
  476. text-align: center;
  477. }
  478. .CatvOnline {
  479. background-color: #447ECF;
  480. color: #FFFFFF;
  481. text-align: center;
  482. }
  483. .CatvOffline {
  484. background-color: #000000;
  485. color: #FFFFFF;
  486. text-align: center;
  487. }
  488. .siglight {
  489. font-size: 24px;
  490. font-weight: bold;
  491. /* IE10 Consumer Preview */
  492. background-image: -ms-radial-gradient(center, ellipse farthest-corner, #FFFFFF 0%, #FFB914 100%);
  493. /* Mozilla Firefox */
  494. background-image: -moz-radial-gradient(center, ellipse farthest-corner, #FFFFFF 0%, #FFB914 100%);
  495. /* Opera */
  496. background-image: -o-radial-gradient(center, ellipse farthest-corner, #FFFFFF 0%, #FFB914 100%);
  497. /* Webkit (Safari/Chrome 10) */
  498. background-image: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, #FFFFFF), color-stop(1, #FFB914));
  499. /* Webkit (Chrome 11+) */
  500. background-image: -webkit-radial-gradient(center, ellipse farthest-corner, #FFFFFF 0%, #FFB914 100%);
  501. /* W3C Markup, IE10 Release Preview */
  502. background-image: radial-gradient(ellipse farthest-corner at center, #FFFFFF 0%, #FFB914 100%);
  503. }
  504. .undone,
  505. .undone div,
  506. .undone span {
  507. background-color: #f8bb00;
  508. border-color: #f8bb00;
  509. color: #000000;
  510. }
  511. .dashboard {
  512. width: 100%;
  513. }
  514. .dashtask {
  515. float: left;
  516. display: block;
  517. padding: 10px;
  518. margin: 5px;
  519. border: solid 1px #EEE;
  520. border-radius: 10px;
  521. text-align: center;
  522. font-size: 8pt;
  523. overflow: hidden;
  524. box-shadow: 3px 3px 4px rgba(0, 0, 0, 0);
  525. }
  526. .dashtask:hover {
  527. -webkit-box-shadow: 3px 3px 4px rgba(50, 50, 50, 0.75);
  528. -moz-box-shadow: 3px 3px 4px rgba(50, 50, 50, 0.75);
  529. box-shadow: 3px 3px 4px rgba(50, 50, 50, 0.75);
  530. }
  531. .ubimchat {
  532. float: left;
  533. display: block;
  534. padding: 10px;
  535. margin: 5px;
  536. border: solid 1px #EEE;
  537. border-radius: 10px;
  538. text-align: left;
  539. font-size: 8pt;
  540. width: 80%;
  541. height: 400px;
  542. overflow: auto;
  543. box-shadow: 3px 3px 4px rgba(0, 0, 0, 0);
  544. }
  545. .todaysig {
  546. background-color: #528009;
  547. color: #FFFFFF;
  548. }
  549. .todaysig a {
  550. color: #EFEFEF;
  551. }
  552. .ui-autocomplete {
  553. max-height: 400px;
  554. overflow-y: auto;
  555. overflow-x: hidden;
  556. }
  557. * html .ui-autocomplete {
  558. height: 100px;
  559. }
  560. /* ukv */
  561. .floatpanels {
  562. padding: 10px;
  563. margin: 10px;
  564. float: left;
  565. width: 42%;
  566. border: 1px solid #999;
  567. background-color: white;
  568. -webkit-box-shadow: 0px 0px 10px #A0A0A0;
  569. -moz-box-shadow: 0px 0px 10px #A0A0A0;
  570. box-shadow: 0px 0px 10px #A0A0A0;
  571. }
  572. .ukvusereditform {
  573. padding: 10px;
  574. margin: 10px;
  575. }
  576. .floatpanelswide {
  577. padding: 10px;
  578. margin: 10px;
  579. float: left;
  580. width: 85%;
  581. border: 1px solid #999;
  582. background-color: white;
  583. -webkit-box-shadow: 0px 0px 10px #A0A0A0;
  584. -moz-box-shadow: 0px 0px 10px #A0A0A0;
  585. box-shadow: 0px 0px 10px #A0A0A0;
  586. }
  587. .ukvusereditform input[type="submit"] {
  588. padding: 6px;
  589. }
  590. .ukvbankstadup {
  591. background-color: #ffcccc;
  592. }
  593. .sigdeleteduser {
  594. background-color: #000000;
  595. color: #FFFFFF;
  596. }
  597. .sigcemeteryuser {
  598. background-color: #444444;
  599. color: #FFFFFF;
  600. }
  601. /* Alerts */
  602. .alert_info {
  603. display: block;
  604. width: 95%;
  605. margin: 20px 3% 0 3%;
  606. margin-top: 20px;
  607. -webkit-border-radius: 5px;
  608. -moz-border-radius: 5px;
  609. border-radius: 5px;
  610. background: #B5E5EF url(../icn_alert_info.png) no-repeat;
  611. background-position: 10px 10px;
  612. border: 1px solid #77BACE;
  613. color: #082B33;
  614. padding: 10px 0;
  615. text-indent: 40px;
  616. font-size: 14px;
  617. }
  618. .alert_warning {
  619. display: block;
  620. width: 95%;
  621. margin: 20px 3% 0 3%;
  622. margin-top: 20px;
  623. -webkit-border-radius: 5px;
  624. -moz-border-radius: 5px;
  625. border-radius: 5px;
  626. background: #F5F3BA url(../icn_alert_warning.png) no-repeat;
  627. background-position: 10px 10px;
  628. border: 1px solid #C7A20D;
  629. color: #796616;
  630. padding: 10px 0;
  631. text-indent: 40px;
  632. font-size: 14px;
  633. }
  634. .alert_error {
  635. display: block;
  636. width: 95%;
  637. margin: 20px 3% 0 3%;
  638. margin-top: 20px;
  639. -webkit-border-radius: 5px;
  640. -moz-border-radius: 5px;
  641. border-radius: 5px;
  642. background: #F3D9D9 url(../icn_alert_error.png) no-repeat;
  643. background-position: 10px 10px;
  644. border: 1px solid #D20009;
  645. color: #7B040F;
  646. padding: 10px 0;
  647. text-indent: 40px;
  648. font-size: 14px;
  649. }
  650. .alert_success {
  651. display: block;
  652. width: 95%;
  653. margin: 20px 3% 0 3%;
  654. margin-top: 20px;
  655. -webkit-border-radius: 5px;
  656. -moz-border-radius: 5px;
  657. border-radius: 5px;
  658. background: #E2F6C5 url(../icn_alert_success.png) no-repeat;
  659. background-position: 10px 10px;
  660. border: 1px solid #79C20D;
  661. color: #32510F;
  662. padding: 10px 0;
  663. text-indent: 40px;
  664. font-size: 14px;
  665. }
  666. .notificationArea {
  667. position: absolute;
  668. float: right;
  669. top: 10px;
  670. right: 10px;
  671. padding-right: 50px;
  672. }
  673. /* login form */
  674. .ubLoginContainer {
  675. position: absolute;
  676. left: 50%;
  677. top: 50%;
  678. width: 500px;
  679. height: 260px;
  680. margin-left: -250px;
  681. margin-top: -130px;
  682. }
  683. .ubLoginForm {
  684. padding: 30px;
  685. font-size: 20px;
  686. border: 1px solid #ddd;
  687. width: 100%;
  688. background: #ffffff;
  689. -webkit-border-radius: 10px;
  690. -moz-border-radius: 10px;
  691. border-radius: 10px;
  692. -webkit-box-shadow: 0px 0 50px #ccc;
  693. -moz-box-shadow: 0px 0 50px #ccc;
  694. box-shadow: 0px 0 50px #ccc;
  695. background-image: url('../ublogin-bg.png');
  696. background-repeat: no-repeat;
  697. background-position: right;
  698. }
  699. .ubLoginForm input,
  700. submit {
  701. padding: 4px;
  702. margin: 10px;
  703. margin-left: 30px;
  704. width: 220px;
  705. font-size: 20px;
  706. background: #fff;
  707. color: #555;
  708. border: 1px #ddd solid;
  709. -webkit-box-shadow: 0px 0px 4px #aaa;
  710. -moz-box-shadow: 0px 0px 4px #aaa;
  711. box-shadow: 0px 0px 4px #aaa;
  712. -webkit-transition: background 0.3s linear;
  713. }
  714. .ubLoginForm label {
  715. font-size: 20px;
  716. color: #666;
  717. padding-left: 4px;
  718. }
  719. /* UBIM contactlist */
  720. .ubimcontact {
  721. -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
  722. -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
  723. box-shadow: inset 0px 1px 0px 0px #ffffff;
  724. background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9));
  725. background: -moz-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  726. background: -webkit-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  727. background: -o-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  728. background: -ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  729. background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
  730. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9', GradientType=0);
  731. background-color: #f9f9f9;
  732. -moz-border-radius: 6px;
  733. -webkit-border-radius: 6px;
  734. border-radius: 6px;
  735. border: 1px solid #dcdcdc;
  736. display: inline-block;
  737. cursor: pointer;
  738. color: #666666;
  739. font-family: Arial;
  740. font-size: 15px;
  741. font-weight: bold;
  742. padding: 6px 71px;
  743. width: 72px;
  744. text-decoration: none;
  745. text-shadow: 0px 1px 0px #ffffff;
  746. color: #777777;
  747. }
  748. .ubimcontact:hover {
  749. background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9));
  750. background: -moz-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
  751. background: -webkit-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
  752. background: -o-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
  753. background: -ms-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
  754. background: linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
  755. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9', GradientType=0);
  756. background-color: #e9e9e9;
  757. text-decoration: none;
  758. }
  759. .ubimcontact:active {
  760. position: relative;
  761. top: 1px;
  762. }
  763. .ubimcontact:active {
  764. position: relative;
  765. top: 1px;
  766. }
  767. .ubimcontact:visited {
  768. color: #777777;
  769. }
  770. .ubimcontact:link {
  771. color: #777777;
  772. }
  773. .wh_viewer td {
  774. padding: 4px;
  775. }
  776. .donetask {
  777. background-color: #3366cc;
  778. color: #ffffff;
  779. }
  780. .rowerror {
  781. background-color: #ee1515;
  782. color: #fafafa;
  783. }
  784. .spoiler {
  785. border: 1px solid #9BA0AF;
  786. width: 98%;
  787. margin: 15px auto;
  788. -webkit-border-radius: 5px;
  789. -moz-border-radius: 5px;
  790. border-radius: 5px;
  791. background: #ffffff;
  792. }
  793. .ui-widget .spoiler,
  794. .ui-widget-content .spoiler {
  795. font-family: "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
  796. color: #666;
  797. font-size: 12px;
  798. }
  799. .spoiler_title {
  800. background: #F1F1F4 url(../images/secondary_bar.png) repeat-x;
  801. -webkit-border-top-left-radius: 5px;
  802. -webkit-border-top-right-radius: 5px;
  803. -moz-border-radius-topleft: 5px;
  804. -moz-border-radius-topright: 5px;
  805. border-top-left-radius: 5px;
  806. border-top-right-radius: 5px;
  807. cursor: pointer;
  808. }
  809. .spoiler_title h3 {
  810. color: #1F1F20 !important;
  811. font-size: 13px !important;
  812. margin: 0 20px !important;
  813. float: left;
  814. }
  815. .spoiler_link,
  816. .spoiler_link:hover {
  817. color: #000 !important;
  818. font-size: 13px;
  819. text-decoration: none;
  820. margin-right: 1%;
  821. margin-top: 8px;
  822. margin-bottom: 11px;
  823. text-align: right;
  824. width: 100%;
  825. float: right;
  826. }
  827. .clearfix::after {
  828. content: " ";
  829. display: block;
  830. height: 0;
  831. clear: both;
  832. }
  833. .image_rotate {
  834. -webkit-animation: spin 2s linear infinite;
  835. -moz-animation: spin 2s linear infinite;
  836. animation: spin 2s linear infinite;
  837. }
  838. @-moz-keyframes spin {
  839. 100% {
  840. -moz-transform: rotate(360deg);
  841. }
  842. }
  843. @-webkit-keyframes spin {
  844. 100% {
  845. -webkit-transform: rotate(360deg);
  846. }
  847. }
  848. @keyframes spin {
  849. 100% {
  850. -webkit-transform: rotate(360deg);
  851. transform: rotate(360deg);
  852. }
  853. }
  854. .fileeditorarea {
  855. background-color: #000000;
  856. color: #DEE3E7;
  857. font-size: larger;
  858. }
  859. .fileeditorarea:hover {
  860. background-color: #000000;
  861. color: #DEE3E7;
  862. font-size: larger;
  863. }
  864. @-webkit-keyframes swing-in-top-fwd {
  865. 0% {
  866. -webkit-transform: rotateX(-100deg);
  867. transform: rotateX(-100deg);
  868. -webkit-transform-origin: top;
  869. transform-origin: top;
  870. opacity: 0;
  871. }
  872. 100% {
  873. -webkit-transform: rotateX(0deg);
  874. transform: rotateX(0deg);
  875. -webkit-transform-origin: top;
  876. transform-origin: top;
  877. opacity: 1;
  878. }
  879. }
  880. @keyframes swing-in-top-fwd {
  881. 0% {
  882. -webkit-transform: rotateX(-100deg);
  883. transform: rotateX(-100deg);
  884. -webkit-transform-origin: top;
  885. transform-origin: top;
  886. opacity: 0;
  887. }
  888. 100% {
  889. -webkit-transform: rotateX(0deg);
  890. transform: rotateX(0deg);
  891. -webkit-transform-origin: top;
  892. transform-origin: top;
  893. opacity: 1;
  894. }
  895. }
  896. .whiteboard {
  897. float: left;
  898. display: block;
  899. padding: 10px;
  900. margin: 5px;
  901. border: solid 1px #EEE;
  902. border-radius: 5px;
  903. text-align: center;
  904. overflow: hidden;
  905. font-size: 12pt;
  906. box-shadow: 3px 3px 4px rgba(0, 0, 0, 0);
  907. line-height: 100%;
  908. -webkit-animation: swing-in-top-fwd 0.8s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
  909. animation: swing-in-top-fwd 0.8s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
  910. }
  911. .whiteboard:hover {
  912. -webkit-box-shadow: 3px 3px 4px rgba(50, 50, 50, 0.75);
  913. -moz-box-shadow: 3px 3px 4px rgba(50, 50, 50, 0.75);
  914. box-shadow: 3px 3px 4px rgba(50, 50, 50, 0.75);
  915. }
  916. .whiteboard a {
  917. color: #FFFFFF;
  918. padding: 20px;
  919. }
  920. .ubbackedit {
  921. -moz-box-shadow: inset 0px 1px 0px 0px #fce2c1;
  922. -webkit-box-shadow: inset 0px 1px 0px 0px #fce2c1;
  923. box-shadow: inset 0px 1px 0px 0px #fce2c1;
  924. background-color: #ffc477;
  925. -moz-border-radius: 6px;
  926. -webkit-border-radius: 6px;
  927. border-radius: 6px;
  928. border: 1px solid #eeb44f;
  929. display: inline-block;
  930. cursor: pointer;
  931. color: #777777 !important;
  932. font-family: Arial;
  933. font-size: 16px;
  934. font-weight: bold;
  935. padding: 11px 26px;
  936. text-decoration: none !important;
  937. }
  938. .ubbackedit:hover {
  939. background-color: #fb9e25;
  940. color: #ffffff !important;
  941. }
  942. .ubbackedit:active {
  943. box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
  944. }
  945. .ubbackprofile {
  946. -moz-box-shadow: inset 0px 1px 0px 0px #bbdaf7;
  947. -webkit-box-shadow: inset 0px 1px 0px 0px #bbdaf7;
  948. box-shadow: inset 0px 1px 0px 0px #bbdaf7;
  949. background-color: #79bbff;
  950. -moz-border-radius: 6px;
  951. -webkit-border-radius: 6px;
  952. border-radius: 6px;
  953. border: 1px solid #84bbf3;
  954. display: inline-block;
  955. cursor: pointer;
  956. color: #777777 !important;
  957. font-family: Arial;
  958. font-size: 16px;
  959. font-weight: bold;
  960. padding: 11px 26px;
  961. text-decoration: none !important;
  962. }
  963. .ubbackprofile:hover {
  964. background-color: #378de5;
  965. color: #ffffff !important;
  966. }
  967. .ubbackprofile:active {
  968. box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.6);
  969. }
  970. .ubimcontactincome {
  971. -moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
  972. -webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
  973. box-shadow: inset 0px 1px 0px 0px #ffffff;
  974. background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9));
  975. background: -moz-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  976. background: -webkit-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  977. background: -o-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  978. background: -ms-linear-gradient(top, #f9f9f9 5%, #e9e9e9 100%);
  979. background: linear-gradient(to bottom, #f9f9f9 5%, #e9e9e9 100%);
  980. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9', GradientType=0);
  981. background-color: #f9f9f9;
  982. -moz-border-radius: 6px;
  983. -webkit-border-radius: 6px;
  984. border-radius: 6px;
  985. border: 1px solid #dcdcdc;
  986. display: inline-block;
  987. cursor: pointer;
  988. color: #b10808;
  989. font-family: Arial;
  990. font-size: 15px;
  991. font-weight: bold;
  992. padding: 6px 71px;
  993. width: 72px;
  994. text-decoration: none;
  995. text-shadow: 0px 1px 0px #ffffff;
  996. color: #b10808;
  997. }
  998. .ubimcontactincome:hover {
  999. background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9));
  1000. background: -moz-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
  1001. background: -webkit-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
  1002. background: -o-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
  1003. background: -ms-linear-gradient(top, #e9e9e9 5%, #f9f9f9 100%);
  1004. background: linear-gradient(to bottom, #e9e9e9 5%, #f9f9f9 100%);
  1005. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9', GradientType=0);
  1006. background-color: #e9e9e9;
  1007. text-decoration: none;
  1008. }
  1009. .ubimcontactincome:active {
  1010. position: relative;
  1011. top: 1px;
  1012. }
  1013. .ubimcontactincome:active {
  1014. position: relative;
  1015. top: 1px;
  1016. }
  1017. .ubimcontactincome:visited {
  1018. color: #b10808;
  1019. }
  1020. .ubimcontactincome:link {
  1021. color: #b10808;
  1022. }
  1023. .onusignalbig {
  1024. float: left;
  1025. font-size: x-large;
  1026. text-align: center;
  1027. border-style: solid;
  1028. border-color: #ededed;
  1029. border-width: 1px;
  1030. box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  1031. padding: 10px;
  1032. width: 90%;
  1033. height: 200px;
  1034. }
  1035. .hiddentbelem {
  1036. opacity: 0;
  1037. transform: translateY(20px);
  1038. }
  1039. .hiddentbelem[style*="display: none;"] {
  1040. transform: translateY(0);
  1041. }
  1042. .tbqsearchform {
  1043. float: left;
  1044. margin-right: 0px;
  1045. margin-left: 5px;
  1046. position: relative;
  1047. display: flex;
  1048. align-items: center;
  1049. /* border: 1px solid blue; */
  1050. }
  1051. .tbqsearchform input {
  1052. border-radius: 10px;
  1053. border: 1px solid #ccc;
  1054. padding: 8px 6px;
  1055. font-size: 12px;
  1056. outline: none;
  1057. transition: all 0.3s ease;
  1058. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  1059. width: 100%;
  1060. max-width: 350px;
  1061. }
  1062. .tbqsearchform input:focus {
  1063. border-color: #007BFF;
  1064. box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
  1065. }
  1066. .tbqsearchform .clear-btn {
  1067. position: absolute;
  1068. right: 10px;
  1069. background-color: transparent;
  1070. border: none;
  1071. cursor: pointer;
  1072. font-size: 18px;
  1073. color: #aaa;
  1074. display: none;
  1075. /* clear button is hidden by default */
  1076. align-items: center;
  1077. justify-content: center;
  1078. height: 100%;
  1079. transition: color 0.3s ease;
  1080. }
  1081. .tbqsearchform .clear-btn:hover {
  1082. color: #000;
  1083. }
  1084. .photostorageuploadform {
  1085. display: flex;
  1086. flex-direction: column;
  1087. align-items: center;
  1088. background-color: #ffffff;
  1089. border: 1px solid #ddd;
  1090. border-radius: 8px;
  1091. padding: 20px;
  1092. width: 100%;
  1093. max-width: 80%;
  1094. margin: 0 auto;
  1095. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  1096. }
  1097. .photostorageuploadform input[type="file"] {
  1098. font-size: 18px;
  1099. padding: 15px;
  1100. background-color: #f0f0f0;
  1101. border: 2px solid #ccc;
  1102. border-radius: 8px;
  1103. color: #333;
  1104. cursor: pointer;
  1105. width: 100%;
  1106. max-width: 500px;
  1107. text-align: center;
  1108. margin-bottom: 20px;
  1109. }
  1110. .photostorageuploadform input[type="file"]:focus {
  1111. outline: none;
  1112. background-color: #f9f9f9;
  1113. }
  1114. .photostorageuploadform input[type="submit"] {
  1115. font-size: 20px;
  1116. padding: 15px;
  1117. color: #333;
  1118. border: 2px dashed #ccc;
  1119. border-radius: 8px;
  1120. cursor: pointer;
  1121. width: 100%;
  1122. max-width: 500px;
  1123. font-weight: bold;
  1124. }
  1125. .photostorageuploadform input[type="submit"]:hover {
  1126. background-color: #e6e6e6;
  1127. color: #333;
  1128. }
  1129. @media (max-width: 480px) {
  1130. .photostorageuploadform {
  1131. padding: 15px;
  1132. }
  1133. .photostorageuploadform input[type="file"],
  1134. .photostorageuploadform input[type="submit"] {
  1135. font-size: 18px;
  1136. width: 100%;
  1137. }
  1138. }