main.css 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693
  1. #container
  2. {
  3. position: relative;
  4. min-height: 100%;
  5. padding-bottom: 30px;
  6. width: 640px;
  7. margin-top: 45px;
  8. margin-left: auto;
  9. margin-right: auto;
  10. margin-bottom: 45px;
  11. padding: 10px;
  12. background-color: white;
  13. border: 0px solid #d5d5d5;
  14. border-radius: 7px;
  15. -moz-border-radius: 7px;
  16. -webkit-border-radius: 7px;
  17. -webkit-box-shadow: #666 0px 2px 3px;
  18. -moz-box-shadow: #666 0px 2px 3px;
  19. box-shadow: #666 0px 2px 3px;
  20. }
  21. #container h1
  22. {
  23. }
  24. #container h2
  25. {
  26. margin-top: 5px;
  27. margin-bottom: 5px;
  28. text-shadow: 1px 1px 2px #666;
  29. }
  30. #container h3
  31. {
  32. text-shadow: 1px 1px 1px #666;
  33. }
  34. #container h4
  35. {
  36. }
  37. .button {
  38. display: inline-block;
  39. line-height: 1;
  40. padding: 4px 7px;
  41. text-decoration: none;
  42. font-weight: bold;
  43. color: #fff;
  44. background-color: #39c;
  45. -moz-border-radius: 5px;
  46. -webkit-border-radius: 5px;
  47. -khtml-border-radius: 5px;
  48. border-radius: 5px;
  49. }
  50. input.button, button.button {
  51. border: 0px none;
  52. }
  53. .button:active {
  54. background-color: #39c9cc;
  55. }
  56. #container a
  57. {
  58. text-decoration: none;
  59. color: #00d0de;
  60. }
  61. #container a:hover
  62. {
  63. text-decoration: underline;
  64. }
  65. #container #top-tabs, .top-tabs-right
  66. {
  67. float: left;
  68. list-style: none outside none;
  69. margin: -35px 16px 0 -6px;
  70. padding: 0;
  71. }
  72. #container #top-tabs li, .top-tabs-right
  73. {
  74. float: left;
  75. margin-left: 0px;
  76. padding-top: 3px;
  77. padding-left: 5px;
  78. padding-right: 5px;
  79. padding-bottom: 3px;
  80. background-color: #e9e9e9;
  81. border-top: 1px solid #d5d5d5;
  82. border-left: 1px solid #d5d5d5;
  83. border-right: 1px solid #d5d5d5;
  84. border-radius: 5px 5px 0px 0px;
  85. -moz-border-radius: 5px 5px 0px 0px;
  86. -webkit-border-radius: 5px 5px 0px 0px;
  87. }
  88. #container #top-tabs li.active, .top-tabs-right ul.active, .top-tabs-right ul.active li
  89. {
  90. background-color: white;
  91. }
  92. #container #top-tabs li a, #container .top-tabs-right li a
  93. {
  94. text-decoration: none;
  95. color: black;
  96. }
  97. .top-tabs-right
  98. {
  99. float: right;
  100. margin-right: -5px;
  101. }
  102. .top-tabs-right.active
  103. {
  104. background-color: white;
  105. }
  106. #top_bar
  107. {
  108. width: 220px;
  109. background-color: white;
  110. padding: 0px;
  111. margin-left: auto;
  112. margin-right: auto;
  113. border-radius: 0px 0px 4px 4px;
  114. -moz-border-radius: 0px 0px 4px 4px;
  115. -webkit-border-radius: 0px 0px 4px 4px;
  116. text-align: center;
  117. }
  118. #top_bar a
  119. {
  120. text-decoration: none;
  121. color: black;
  122. padding-left: 3px; padding-right: 3px;
  123. }
  124. /*#top_bar ul
  125. {
  126. text-align: center;
  127. margin-top: -5px;
  128. }
  129. #top_bar ul li
  130. {
  131. display: inline;
  132. float: left;
  133. list-style: none;
  134. padding-left: 6px;
  135. }
  136. #top_bar ul li a
  137. {
  138. text-decoration: none;
  139. color: black;
  140. }*/
  141. ul.inline
  142. {
  143. }
  144. ul.inline li
  145. {
  146. display: inline;
  147. }
  148. /* Messages flash */
  149. .message
  150. {
  151. -webkit-background-size: 40px 40px;
  152. -moz-background-size: 40px 40px;
  153. background-size: 40px 40px;
  154. background-image: -webkit-gradient(linear, left top, right bottom,
  155. color-stop(.25, rgba(255, 255, 255, .05)), color-stop(.25, transparent),
  156. color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .05)),
  157. color-stop(.75, rgba(255, 255, 255, .05)), color-stop(.75, transparent),
  158. to(transparent));
  159. background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  160. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  161. transparent 75%, transparent);
  162. background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  163. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  164. transparent 75%, transparent);
  165. background-image: -ms-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  166. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  167. transparent 75%, transparent);
  168. background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  169. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  170. transparent 75%, transparent);
  171. background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  172. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  173. transparent 75%, transparent);
  174. -moz-box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
  175. -webkit-box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
  176. box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
  177. width: 100%;
  178. border: 1px solid;
  179. color: #fff;
  180. padding: 15px;
  181. position: fixed;
  182. _position: absolute;
  183. text-shadow: 0 1px 0 rgba(0,0,0,.5);
  184. -webkit-animation: animate-bg 5s linear infinite;
  185. -moz-animation: animate-bg 5s linear infinite;
  186. }
  187. .info, .fos_user_info
  188. {
  189. background-color: #4ea5cd;
  190. border-color: #3b8eb5;
  191. }
  192. .error, .fos_user_error
  193. {
  194. background-color: #de4343;
  195. border-color: #c43d3d;
  196. }
  197. .warning, .fos_user_warning
  198. {
  199. background-color: #eaaf51;
  200. border-color: #d99a36;
  201. }
  202. .success, .fos_user_success
  203. {
  204. background-color: #61b832;
  205. border-color: #55a12c;
  206. }
  207. .message h3
  208. {
  209. margin: 0 0 5px 0;
  210. }
  211. .message p
  212. {
  213. margin: 0;
  214. }
  215. .message a.message-close
  216. {
  217. float: right;
  218. margin-top: -14px;
  219. margin-right: 18px;
  220. margin-bottom: -11px;
  221. }
  222. .message a.message-close img:HOVER
  223. {
  224. width: 52px;
  225. height: 52px;
  226. margin-bottom: -13px;
  227. }
  228. @-webkit-keyframes animate-bg
  229. {
  230. from {
  231. background-position: 0 0;
  232. }
  233. to {
  234. background-position: -80px 0;
  235. }
  236. }
  237. @-moz-keyframes animate-bg
  238. {
  239. from {
  240. background-position: 0 0;
  241. }
  242. to {
  243. background-position: -80px 0;
  244. }
  245. }
  246. /* Message flash end */
  247. #choose_language
  248. {
  249. float: right;
  250. margin-right: 5px;
  251. }
  252. #choose_language a
  253. {
  254. text-decoration: none;
  255. color: black;
  256. }
  257. .error_list
  258. {
  259. font-size: 87%;
  260. color: #dd0101;
  261. margin-left: 24px;
  262. margin-top: 2px;
  263. margin-bottom: 2px;
  264. margin-right: 2px;
  265. }
  266. .error_list li
  267. {
  268. list-style: url(/bundles/muzichcore/img/1323874685_warning.png);
  269. }
  270. /* Debut CSS pour tags */
  271. pre code {background: #ccc; padding:2px 0; display: block; margin-top:4px;}
  272. .ui-autocomplete {
  273. font-size:12px;
  274. border:1px solid #ddd;
  275. background:#fff;
  276. list-style:none;
  277. position: absolute;
  278. cursor: default;
  279. list-style-type: none;
  280. width: 300px;
  281. }
  282. .ui-autocomplete li {margin-right:8px; float: left;}
  283. .ui-autocomplete li a {display:block; padding:4px;}
  284. .ui-autocomplete li a.ui-state-hover,
  285. .ui-autocomplete li a:hover {background:#eee;}
  286. /**/
  287. ul.tagbox {
  288. background: #fff;
  289. cursor: text;
  290. border: 1px solid #ccc;
  291. overflow: hidden;
  292. padding: 0 0 1px 3px;
  293. }
  294. ul.tagbox li {
  295. margin:0;
  296. }
  297. ul.tagbox li.tag {
  298. float: left;
  299. line-height: 1;
  300. list-style-type: none;
  301. margin-top: 3px;
  302. margin-right: 3px;
  303. font-size:13px;
  304. border: 1px solid #cad8f3;
  305. background: #dee7f8;
  306. margin-bottom: 1px;
  307. position: relative;
  308. display: inline-block;
  309. padding-left: 7px;
  310. padding-top: 4px;
  311. padding-right: 14px;
  312. padding-bottom: 4px;
  313. text-decoration: none;
  314. font-weight: bold;
  315. color: #fff;
  316. background-color: #39c;
  317. -moz-border-radius: 5px;
  318. -webkit-border-radius: 5px;
  319. -khtml-border-radius: 5px;
  320. border-radius: 5px;
  321. }
  322. ul.tagbox li.input {display:block; float:left;}
  323. ul.tagbox input:focus {
  324. border-color: #fff;
  325. }
  326. ul.tagbox input {
  327. width: 50px;
  328. margin: 0;
  329. border: 0;
  330. outline: 0;
  331. line-height:1.2;
  332. padding: 3px 0;
  333. font-size:12px;
  334. }
  335. ul.tagbox a.close {
  336. position: absolute;
  337. right: 4px; top: 5px;
  338. display: block;
  339. text-indent:-9999px;
  340. cursor:pointer;
  341. width: 7px; height: 7px;
  342. font-size: 1px;
  343. background: url('/bundles/muzichcore/img/tag_close.gif');
  344. background-position: 0px 100%;
  345. margin-top: 2px;
  346. }
  347. ul.tagbox a.close:hover {
  348. background-position: 7px;
  349. }
  350. /* Fin CSS pour tags */
  351. /* Debut CSS pour elements */
  352. li.element
  353. {
  354. list-style: none outside none;
  355. margin-top: 5px;
  356. margin-bottom: 5px;
  357. padding: 5px;
  358. }
  359. li.element a.favorite_link
  360. {
  361. position: relative;
  362. top: 0px;
  363. left: 455px;
  364. }
  365. li.element a.element_open
  366. {
  367. font-weight: bold;
  368. }
  369. li.element div.element_embed
  370. {
  371. text-align: center;
  372. }
  373. li.element td.element_content
  374. {
  375. vertical-align: top;
  376. padding-left: 5px;
  377. }
  378. li.element span.element_name
  379. {
  380. margin-left: -20px;
  381. }
  382. li.element td.element_thumbnail
  383. {
  384. width: 120px;
  385. height: 90px;
  386. }
  387. li.element img.element_thumbnail
  388. {
  389. width: 120px;
  390. height: 90px;
  391. }
  392. #container li.element span.element_name a
  393. {
  394. color: black;
  395. }
  396. ul.elements li.even
  397. {
  398. background-color: #d9f7ff;
  399. }
  400. .elements ul.element_tags
  401. {
  402. margin-left: 10px;
  403. margin-top: 0px;
  404. margin-bottom: 0px;
  405. }
  406. .elements ul.element_tags li
  407. {
  408. display: inline;
  409. font-size: 90%;
  410. }
  411. /* FIN CSS pour elements */
  412. span.help
  413. {
  414. font-size: 10px;
  415. padding-left: 18px;
  416. background-image: url(/bundles/muzichcore/img/1325329213_system-help.png);
  417. background-repeat: no-repeat;
  418. background-position: left top;
  419. }
  420. span.sinfo
  421. {
  422. font-size: 10px;
  423. padding-left: 18px;
  424. background-image: url(/bundles/muzichcore/img/1326549580_info.png);
  425. background-repeat: no-repeat;
  426. background-position: left top;
  427. }
  428. #bottomContainer a
  429. {
  430. text-decoration: none;
  431. color: black;
  432. }
  433. #bottomContainer
  434. {
  435. padding: 2px;
  436. font-size: 85%;
  437. text-align: center;
  438. }
  439. input.main
  440. {
  441. font-weight: bold;
  442. }
  443. input.clear, input.mytags
  444. {
  445. font-size: 80%;
  446. }
  447. ul.tagbox, ul.tagbox input[type="text"]
  448. {
  449. background-color: #bdf1fe;
  450. }
  451. ul.tagbox input[type="text"]
  452. {
  453. height: 14px;
  454. margin-top: 3px;
  455. width: 200px;
  456. color: #676767;
  457. font-weight: bold;
  458. }
  459. ul.tagbox input[type="text"]:FOCUS
  460. {
  461. background-image: linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  462. background-image: -o-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  463. background-image: -moz-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  464. background-image: -webkit-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  465. background-image: -ms-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  466. background-image: -webkit-gradient(
  467. linear,
  468. left bottom,
  469. right bottom,
  470. color-stop(0.1, rgb(137,232,253)),
  471. color-stop(0.49, rgb(168,238,255)),
  472. color-stop(1, rgb(189,241,254))
  473. );
  474. }
  475. div.tag_loader_div, div.loader
  476. {
  477. text-align: center;
  478. }
  479. .tag_loader, element_loader
  480. {
  481. margin-left: auto;
  482. marin-right: auto;
  483. }
  484. .element_name
  485. {
  486. font-weight: bold;
  487. }
  488. div.no_elements
  489. {
  490. text-align: center;
  491. background-color: #d9f7ff;
  492. }
  493. /* Recherche de tags dynamique */
  494. div.search_tag_list
  495. {
  496. position: absolute;
  497. background-color: white;
  498. width: 400px;
  499. padding: 2px;
  500. border: 0px solid #d5d5d5;
  501. border-radius: 7px;
  502. -moz-border-radius: 7px;
  503. -webkit-border-radius: 7px;
  504. -webkit-box-shadow: #666 0px 2px 3px;
  505. -moz-box-shadow: #666 0px 2px 3px;
  506. box-shadow: #666 0px 2px 3px;
  507. }
  508. div.search_tag_list span.info
  509. {
  510. background-color: white;
  511. padding: 2px;
  512. }
  513. div.search_tag_list ul.search_tag_list
  514. {
  515. list-style-image: none;
  516. padding:0;
  517. margin:0;
  518. list-style-type:none;
  519. overflow: hidden;
  520. }
  521. div.search_tag_list ul.search_tag_list li
  522. {
  523. float: left;
  524. margin-right: 4px;
  525. margin-left: 4px;
  526. margin-top: 2px;
  527. margin-bottom: 2px;
  528. padding: 2px;
  529. background-color: #d9f7ff;
  530. }
  531. div.search_tag_list ul.search_tag_list li:hover
  532. {
  533. background-color: #74dffe;
  534. }
  535. #container ul.search_tag_list li a
  536. {
  537. color: black;
  538. }
  539. .elements_loader_div
  540. {
  541. text-align: center;
  542. }
  543. .elements_loader_div img
  544. {
  545. margin-left: auto;
  546. margin-right: auto;
  547. }
  548. /* jConfirmAction */
  549. div.question {
  550. position: absolute;
  551. display: inline;
  552. text-align: center;
  553. width: 174px;
  554. height: 78px;
  555. font-size: 13px;
  556. line-height: 1.5em;
  557. background: url('/js/jConfirmAction/images/bubble.png') left top no-repeat;
  558. padding: 10px 0 0 0;
  559. text-shadow: 0px 1px 0px #fff;
  560. margin-left: -7em;
  561. margin-top: -6em;
  562. opacity: 0;
  563. }
  564. div.question .yes, .cancel {
  565. margin-top: .5em;
  566. margin-right: .5em;
  567. cursor: pointer;
  568. display: inline-block;
  569. width: 63px;
  570. height: 21px;
  571. color: #fff;
  572. text-shadow: 0px 1px 0px #000;
  573. background: url('/js/jConfirmAction/images/button.png') left top no-repeat;
  574. }
  575. div.question .title {
  576. font-size: 30px;
  577. margin-bottom: 1.5em;
  578. font-weight: bold;
  579. font-style: italic;
  580. text-shadow: 0px 2px 0px #fff;
  581. }