main.css 20KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240
  1. body
  2. {
  3. text-align: center;
  4. }
  5. #container
  6. {
  7. text-align: left;
  8. position: relative;
  9. min-height: 100%;
  10. padding-bottom: 30px;
  11. min-height: 120px;
  12. width: 640px;
  13. margin-top: 45px;
  14. margin-left: auto;
  15. margin-right: auto;
  16. margin-bottom: 45px;
  17. padding: 10px;
  18. background-color: white;
  19. border: 0px solid #d5d5d5;
  20. border-radius: 7px;
  21. -moz-border-radius: 7px;
  22. -webkit-border-radius: 7px;
  23. -webkit-box-shadow: #666 0px 2px 3px;
  24. -moz-box-shadow: #666 0px 2px 3px;
  25. box-shadow: #666 0px 2px 3px;
  26. }
  27. #container h1
  28. {
  29. margin-top: 11px;
  30. }
  31. #container h2
  32. {
  33. margin-top: 0px;
  34. margin-bottom: 5px;
  35. font-size: 1.7em;
  36. text-shadow: 1px 1px 2px #666;
  37. }
  38. #container h3
  39. {
  40. text-shadow: 1px 1px 1px #666;
  41. }
  42. #container h4
  43. {
  44. }
  45. div.clearboth
  46. {
  47. clear: both;
  48. }
  49. .button {
  50. display: inline-block;
  51. line-height: 1;
  52. padding: 4px 7px;
  53. text-decoration: none;
  54. font-weight: bold;
  55. color: #fff;
  56. background-color: #39c;
  57. -moz-border-radius: 5px;
  58. -webkit-border-radius: 5px;
  59. -khtml-border-radius: 5px;
  60. border-radius: 5px;
  61. border: 1px solid #2b82ad;
  62. }
  63. input.button, button.button {
  64. border: 0px none;
  65. }
  66. .button:active {
  67. background-color: #39c9cc;
  68. }
  69. .button.active
  70. {
  71. background-color: #39C9CC;
  72. }
  73. #container a
  74. {
  75. text-decoration: none;
  76. color: #00d0de;
  77. }
  78. #container a.button
  79. {
  80. color: white;
  81. }
  82. #container a:hover
  83. {
  84. text-decoration: underline;
  85. }
  86. #container #top-tabs, .top-tabs-right
  87. {
  88. float: left;
  89. list-style: none outside none;
  90. margin: -35px 16px 0 -6px;
  91. padding: 0;
  92. position: relative;
  93. }
  94. #container #top-tabs li
  95. {
  96. float: left;
  97. margin-left: 0px;
  98. padding-top: 3px;
  99. padding-left: 5px;
  100. padding-right: 5px;
  101. padding-bottom: 3px;
  102. background-color: #e9e9e9;
  103. border-top: 1px solid #d5d5d5;
  104. border-left: 1px solid #d5d5d5;
  105. border-right: 1px solid #d5d5d5;
  106. border-radius: 5px 5px 0px 0px;
  107. -moz-border-radius: 5px 5px 0px 0px;
  108. -webkit-border-radius: 5px 5px 0px 0px;
  109. }
  110. /* Noscript */
  111. div#noscript_warning
  112. {
  113. position: absolute;
  114. left: 15px;
  115. top: 15px;
  116. background-color: #fe4b4b;
  117. color: black;
  118. font-weight: bold;
  119. font-size: 110%;
  120. padding: 5px;
  121. z-index: 999;
  122. border-top: 1px solid #d5d5d5;
  123. border-left: 1px solid #d5d5d5;
  124. border-right: 1px solid #d5d5d5;
  125. -moz-border-radius: 5px;
  126. -webkit-border-radius: 5px;
  127. -khtml-border-radius: 5px;
  128. border-radius: 5px;
  129. }
  130. .top-tabs-right
  131. {
  132. list-style: none outside none;
  133. }
  134. .top-tabs-right li
  135. {
  136. float: left;
  137. padding-top: 3px;
  138. padding-left: 5px;
  139. padding-right: 5px;
  140. padding-bottom: 3px;
  141. background-color: #e9e9e9;
  142. border-top: 1px solid #d5d5d5;
  143. border-left: 1px solid #d5d5d5;
  144. border-right: 1px solid #d5d5d5;
  145. border-radius: 5px 5px 0px 0px;
  146. -moz-border-radius: 5px 5px 0px 0px;
  147. -webkit-border-radius: 5px 5px 0px 0px;
  148. }
  149. .top-tabs-right li.active
  150. {
  151. background-color: white;
  152. }
  153. #container #top-tabs li.active, .top-tabs-right ul.active, .top-tabs-right ul.active li
  154. {
  155. background-color: white;
  156. }
  157. #container #top-tabs li a, #container .top-tabs-right li a
  158. {
  159. text-decoration: none;
  160. color: black;
  161. }
  162. .top-tabs-right
  163. {
  164. float: right;
  165. margin-right: -5px;
  166. }
  167. .top-tabs-right.active
  168. {
  169. background-color: white;
  170. }
  171. #top_bar
  172. {
  173. width: 220px;
  174. background-color: white;
  175. padding: 0px;
  176. margin-left: auto;
  177. margin-right: auto;
  178. border-radius: 0px 0px 4px 4px;
  179. -moz-border-radius: 0px 0px 4px 4px;
  180. -webkit-border-radius: 0px 0px 4px 4px;
  181. text-align: center;
  182. }
  183. #top_bar a
  184. {
  185. text-decoration: none;
  186. color: black;
  187. padding-left: 3px; padding-right: 3px;
  188. }
  189. /*#top_bar ul
  190. {
  191. text-align: center;
  192. margin-top: -5px;
  193. }
  194. #top_bar ul li
  195. {
  196. display: inline;
  197. float: left;
  198. list-style: none;
  199. padding-left: 6px;
  200. }
  201. #top_bar ul li a
  202. {
  203. text-decoration: none;
  204. color: black;
  205. }*/
  206. ul.inline
  207. {
  208. }
  209. ul.inline li
  210. {
  211. display: inline;
  212. }
  213. /* Messages flash */
  214. .message
  215. {
  216. -webkit-background-size: 40px 40px;
  217. -moz-background-size: 40px 40px;
  218. background-size: 40px 40px;
  219. background-image: -webkit-gradient(linear, left top, right bottom,
  220. color-stop(.25, rgba(255, 255, 255, .05)), color-stop(.25, transparent),
  221. color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .05)),
  222. color-stop(.75, rgba(255, 255, 255, .05)), color-stop(.75, transparent),
  223. to(transparent));
  224. background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  225. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  226. transparent 75%, transparent);
  227. background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  228. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  229. transparent 75%, transparent);
  230. background-image: -ms-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  231. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  232. transparent 75%, transparent);
  233. background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  234. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  235. transparent 75%, transparent);
  236. background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  237. transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  238. transparent 75%, transparent);
  239. -moz-box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
  240. -webkit-box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
  241. box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
  242. width: 100%;
  243. border: 1px solid;
  244. color: #fff;
  245. padding: 15px;
  246. position: fixed;
  247. _position: absolute;
  248. text-shadow: 0 1px 0 rgba(0,0,0,.5);
  249. -webkit-animation: animate-bg 5s linear infinite;
  250. -moz-animation: animate-bg 5s linear infinite;
  251. }
  252. .info, .fos_user_info
  253. {
  254. background-color: #4ea5cd;
  255. border-color: #3b8eb5;
  256. }
  257. .error, .fos_user_error
  258. {
  259. background-color: #de4343;
  260. border-color: #c43d3d;
  261. }
  262. .warning, .fos_user_warning
  263. {
  264. background-color: #eaaf51;
  265. border-color: #d99a36;
  266. }
  267. .success, .fos_user_success
  268. {
  269. background-color: #61b832;
  270. border-color: #55a12c;
  271. }
  272. .message h3
  273. {
  274. margin: 0 0 5px 0;
  275. }
  276. .message p
  277. {
  278. margin: 0;
  279. }
  280. .message a.message-close
  281. {
  282. float: right;
  283. margin-top: -14px;
  284. margin-right: 18px;
  285. margin-bottom: -11px;
  286. }
  287. .message a.message-close img:HOVER
  288. {
  289. width: 52px;
  290. height: 52px;
  291. margin-bottom: -13px;
  292. }
  293. @-webkit-keyframes animate-bg
  294. {
  295. from {
  296. background-position: 0 0;
  297. }
  298. to {
  299. background-position: -80px 0;
  300. }
  301. }
  302. @-moz-keyframes animate-bg
  303. {
  304. from {
  305. background-position: 0 0;
  306. }
  307. to {
  308. background-position: -80px 0;
  309. }
  310. }
  311. /* Message flash end */
  312. #choose_language
  313. {
  314. float: right;
  315. margin-right: 5px;
  316. }
  317. #choose_language a
  318. {
  319. text-decoration: none;
  320. color: black;
  321. }
  322. .error_list
  323. {
  324. font-size: 87%;
  325. color: #dd0101;
  326. margin-left: 24px;
  327. margin-top: 2px;
  328. margin-bottom: 2px;
  329. margin-right: 2px;
  330. }
  331. .error_list li
  332. {
  333. list-style: url(/bundles/muzichcore/img/1323874685_warning.png);
  334. }
  335. /* Debut CSS pour tags */
  336. pre code {background: #ccc; padding:2px 0; display: block; margin-top:4px;}
  337. .ui-autocomplete {
  338. font-size:12px;
  339. border:1px solid #ddd;
  340. background:#fff;
  341. list-style:none;
  342. position: absolute;
  343. cursor: default;
  344. list-style-type: none;
  345. width: 300px;
  346. }
  347. .ui-autocomplete li {margin-right:8px; float: left;}
  348. .ui-autocomplete li a {display:block; padding:4px;}
  349. .ui-autocomplete li a.ui-state-hover,
  350. .ui-autocomplete li a:hover {background:#eee;}
  351. /**/
  352. ul.tagbox {
  353. cursor: text;
  354. border: none;
  355. overflow: hidden;
  356. padding: 0 0 1px 3px;
  357. margin-left: 0px;
  358. }
  359. ul.tagbox li {
  360. margin:0;
  361. }
  362. ul.tagbox li.tag {
  363. float: left;
  364. line-height: 1;
  365. list-style-type: none;
  366. margin-top: 3px;
  367. margin-right: 3px;
  368. font-size:13px;
  369. border: 1px solid #cad8f3;
  370. background: #dee7f8;
  371. margin-bottom: 1px;
  372. position: relative;
  373. display: inline-block;
  374. padding-left: 7px;
  375. padding-top: 4px;
  376. padding-right: 14px;
  377. padding-bottom: 4px;
  378. text-decoration: none;
  379. font-weight: bold;
  380. color: #fff;
  381. background-color: #39c;
  382. -moz-border-radius: 5px;
  383. -webkit-border-radius: 5px;
  384. -khtml-border-radius: 5px;
  385. border-radius: 5px;
  386. }
  387. ul.tagbox li.input {display:block; float:left;}
  388. ul.tagbox input:focus {
  389. border-color: #fff;
  390. }
  391. ul.tagbox input {
  392. width: 50px;
  393. margin: 0;
  394. border: 0;
  395. outline: 0;
  396. line-height:1.2;
  397. padding: 3px 0;
  398. font-size: 105%;
  399. }
  400. ul.tagbox a.close {
  401. position: absolute;
  402. right: 4px; top: 5px;
  403. display: block;
  404. text-indent:-9999px;
  405. cursor:pointer;
  406. width: 7px; height: 7px;
  407. font-size: 1px;
  408. background: url('/bundles/muzichcore/img/tag_close.gif');
  409. background-position: 0px 100%;
  410. margin-top: 2px;
  411. }
  412. ul.tagbox a.close:hover {
  413. background-position: 7px;
  414. }
  415. /* Fin CSS pour tags */
  416. /* Debut CSS pour elements */
  417. li.element
  418. {
  419. list-style: none outside none;
  420. margin-top: 5px;
  421. margin-bottom: 10px;
  422. padding: 5px;
  423. }
  424. /*li.element a.favorite_link
  425. {
  426. position: relative;
  427. top: 0px;
  428. left: 483px;
  429. }*/
  430. #container li.element a.favorite_link:hover
  431. {
  432. text-decoration: none;
  433. }
  434. li.element a.element_open
  435. {
  436. font-weight: bold;
  437. margin-top: 7px;
  438. }
  439. li.element div.element_embed
  440. {
  441. text-align: center;
  442. }
  443. li.element td.element_content
  444. {
  445. vertical-align: top;
  446. padding-left: 5px;
  447. width: 468px;
  448. }
  449. li.element span.element_name
  450. {
  451. }
  452. li.element td.element_thumbnail
  453. {
  454. background-image: url(/bundles/muzichcore/img/nothumb.png);
  455. background-repeat: no-repeat;
  456. width: 120px;
  457. height: 90px;
  458. vertical-align: top;
  459. }
  460. li.element img.element_thumbnail
  461. {
  462. width: 120px;
  463. height: 90px;
  464. }
  465. #container li.element span.element_name a
  466. {
  467. color: black;
  468. }
  469. li.element img.play, li.element img.open
  470. {
  471. position: absolute;
  472. }
  473. ul.elements
  474. {
  475. margin-left: 0px;
  476. }
  477. ul.elements li.even
  478. {
  479. background-color: #d9f7ff;
  480. }
  481. .elements ul.element_tags
  482. {
  483. margin-top: 3px;
  484. margin-left: 0px;
  485. }
  486. .elements ul.element_tags li
  487. {
  488. display: inline;
  489. font-size: 90%;
  490. }
  491. ul.element_tags .button
  492. {
  493. padding: 2px 4px 2px 4px;
  494. font-size: 95%;
  495. }
  496. /* FIN CSS pour elements */
  497. span.help
  498. {
  499. font-size: 10px;
  500. padding-left: 18px;
  501. background-image: url(/bundles/muzichcore/img/1325329213_system-help.png);
  502. background-repeat: no-repeat;
  503. background-position: left top;
  504. }
  505. span.sinfo
  506. {
  507. font-size: 10px;
  508. padding-left: 18px;
  509. background-image: url(/bundles/muzichcore/img/1326549580_info.png);
  510. background-repeat: no-repeat;
  511. background-position: left top;
  512. }
  513. #bottomContainer a
  514. {
  515. text-decoration: none;
  516. color: black;
  517. }
  518. #bottomContainer
  519. {
  520. padding: 2px;
  521. font-size: 85%;
  522. text-align: center;
  523. }
  524. input.main
  525. {
  526. font-weight: bold;
  527. }
  528. input.clear, input.mytags
  529. {
  530. font-size: 80%;
  531. }
  532. ul.tagbox input[type="text"]
  533. {
  534. -moz-border-radius: 5px;
  535. -webkit-border-radius: 5px;
  536. -khtml-border-radius: 5px;
  537. border-radius: 5px;
  538. background-color: #bdf1fe;
  539. padding-left: 3px;
  540. }
  541. ul.tagbox li.input
  542. {
  543. padding-top: 2px;
  544. }
  545. ul.tagbox input[type="text"]
  546. {
  547. height: 16px;
  548. margin-top: 3px;
  549. width: 250px;
  550. color: #676767;
  551. font-weight: bold;
  552. }
  553. ul.tagbox input[type="text"]:FOCUS
  554. {
  555. background-image: linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  556. background-image: -o-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  557. background-image: -moz-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  558. background-image: -webkit-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  559. background-image: -ms-linear-gradient(left , rgb(137,232,253) 10%, rgb(168,238,255) 49%, rgb(189,241,254) 100%);
  560. background-image: -webkit-gradient(
  561. linear,
  562. left bottom,
  563. right bottom,
  564. color-stop(0.1, rgb(137,232,253)),
  565. color-stop(0.49, rgb(168,238,255)),
  566. color-stop(1, rgb(189,241,254))
  567. );
  568. }
  569. div.tag_loader_div, div.loader
  570. {
  571. text-align: center;
  572. }
  573. .tag_loader, element_loader
  574. {
  575. margin-left: auto;
  576. marin-right: auto;
  577. }
  578. .element_name
  579. {
  580. font-weight: bold;
  581. }
  582. div.no_elements
  583. {
  584. text-align: center;
  585. background-color: #d9f7ff;
  586. }
  587. /* Recherche de tags dynamique */
  588. div.search_tag_list
  589. {
  590. position: absolute;
  591. background-color: white;
  592. width: 400px;
  593. padding: 5px;
  594. border: 0px solid #d5d5d5;
  595. border-radius: 7px;
  596. -moz-border-radius: 7px;
  597. -webkit-border-radius: 7px;
  598. -webkit-box-shadow: #666 0px 2px 3px;
  599. -moz-box-shadow: #666 0px 2px 3px;
  600. box-shadow: #666 0px 2px 3px;
  601. z-index: 1;
  602. }
  603. div.search_tag_list span.info
  604. {
  605. background-color: white;
  606. padding: 2px;
  607. }
  608. div.search_tag_list ul.search_tag_list
  609. {
  610. list-style-image: none;
  611. padding:0;
  612. margin:0;
  613. list-style-type:none;
  614. overflow: hidden;
  615. }
  616. div.search_tag_list ul.search_tag_list li
  617. {
  618. float: left;
  619. margin-right: 4px;
  620. margin-left: 4px;
  621. margin-top: 2px;
  622. margin-bottom: 2px;
  623. padding: 2px 4px 2px 4px;
  624. background-color: #d9f7ff;
  625. border-radius: 7px;
  626. -moz-border-radius: 7px;
  627. -webkit-border-radius: 7px;
  628. -webkit-box-shadow: #666 0px 2px 3px;
  629. -moz-box-shadow: #666 0px 2px 3px;
  630. box-shadow: #666 0px 2px 3px;
  631. }
  632. div.search_tag_list ul.search_tag_list li.new
  633. {
  634. font-weight: bold;
  635. background-color: #e0e0e0;
  636. }
  637. div.search_tag_list ul.search_tag_list li:hover
  638. {
  639. background-color: #74dffe;
  640. }
  641. div.search_tag_list span.info
  642. {
  643. text-shadow: 1px 1px 1px #666;
  644. font-weight: bold;
  645. }
  646. #container ul.search_tag_list li a
  647. {
  648. color: black;
  649. }
  650. #container ul.search_tag_list li a:hover
  651. {
  652. text-decoration: none;
  653. }
  654. .elements_loader_div
  655. {
  656. text-align: center;
  657. }
  658. .elements_loader_div img
  659. {
  660. margin-left: auto;
  661. margin-right: auto;
  662. }
  663. /* jConfirmAction */
  664. div.question {
  665. position: absolute;
  666. display: inline;
  667. text-align: center;
  668. width: 174px;
  669. font-size: 13px;
  670. line-height: 1.5em;
  671. background-color: #e6e6e6;
  672. border-radius: 7px;
  673. -moz-border-radius: 7px;
  674. -webkit-border-radius: 7px;
  675. -webkit-box-shadow: #666 0px 2px 3px;
  676. -moz-box-shadow: #666 0px 2px 3px;
  677. box-shadow: #666 0px 2px 3px;
  678. padding: 10px 10px 10px 10px;
  679. text-shadow: 0px 1px 0px #fff;
  680. margin-left: -7em;
  681. margin-top: -6em;
  682. opacity: 0;
  683. }
  684. div.question .yes, div.question .cancel {
  685. margin-top: .5em;
  686. margin-right: .5em;
  687. cursor: pointer;
  688. display: inline-block;
  689. width: 63px;
  690. height: 21px;
  691. color: #fff;
  692. text-shadow: 0px 1px 0px #000;
  693. background: url('/js/jConfirmAction/images/button.png') left top no-repeat;
  694. }
  695. div.question .title {
  696. font-size: 30px;
  697. margin-bottom: 1.5em;
  698. font-weight: bold;
  699. font-style: italic;
  700. text-shadow: 0px 2px 0px #fff;
  701. }
  702. /* Liste de tags */
  703. ul#favorite_tags
  704. {
  705. padding:0;
  706. margin:0;
  707. list-style-type:none;
  708. }
  709. ul#favorite_tags li
  710. {
  711. display: inline;
  712. margin-left: 2px;
  713. margin-top: 2px;
  714. float:left; /*pour IE*/
  715. }
  716. a.more
  717. {
  718. margin-top: 5px;
  719. }
  720. /* POPIN BLOCK */
  721. #fade { /*--Masque opaque noir de fond--*/
  722. display: none; /*--masqué par défaut--*/
  723. background: #000;
  724. position: fixed; left: 0; top: 0;
  725. width: 100%; height: 100%;
  726. opacity: .80;
  727. z-index: 9999;
  728. }
  729. .popin_block{
  730. background: #fff;
  731. padding: 10px;
  732. border: 10px solid #ddd;
  733. float: left;
  734. font-size: 1.2em;
  735. position: fixed;
  736. top: 50%; left: 50%;
  737. z-index: 99999;
  738. /*--Les différentes définitions de Box Shadow en CSS3--*/
  739. -webkit-box-shadow: 0px 0px 20px #000;
  740. -moz-box-shadow: 0px 0px 20px #000;
  741. box-shadow: 0px 0px 20px #000;
  742. /*--Coins arrondis en CSS3--*/
  743. -webkit-border-radius: 10px;
  744. -moz-border-radius: 10px;
  745. border-radius: 10px;
  746. }
  747. .popin_block h2
  748. {
  749. margin-top: 0px;
  750. margin-bottom: 0px;
  751. }
  752. .popin_block p
  753. {
  754. margin-top: 5px;
  755. margin-bottom: 2px;
  756. }
  757. .popin_block div.tag
  758. {
  759. text-align: center;
  760. }
  761. .popin_block div.inputs
  762. {
  763. text-align: center;
  764. }
  765. .popin_block div.tag ul
  766. {
  767. margin-left: auto;
  768. margin-right: auto;
  769. margin-top: 5px;
  770. margin-bottom: 5px;
  771. }
  772. .popin_block div.inputs input
  773. {
  774. margin: 3px;
  775. }
  776. .popin_block textarea
  777. {
  778. width: 100%;
  779. height: 60px;
  780. }
  781. img.btn_close {
  782. float: right;
  783. margin: -55px -55px 0 0;
  784. }
  785. /*--Gérer la position fixed pour IE6--*/
  786. * html #fade {
  787. position: absolute;
  788. }
  789. * html .popup_block {
  790. position: absolute;
  791. }
  792. /* END POPIN BLOCK */
  793. #container a.element_edit_link
  794. {
  795. text-decoration: none;
  796. }
  797. div.display_more_elements
  798. {
  799. background-color: #D9F7FF;
  800. text-align: center;
  801. }
  802. input#element_add_url, input#element_add_name
  803. {
  804. width: 70%;
  805. font-size: 110%;
  806. font-weight: bold;
  807. }
  808. label#element_add_url, label#element_add_name
  809. {
  810. }
  811. /* Commentaire */
  812. li.element div.comments
  813. {
  814. padding-left: 18px;
  815. padding-right: 18px;
  816. }
  817. div.comments ul.comments
  818. {
  819. margin: 0px 0px 0px 0px;
  820. }
  821. li.comment
  822. {
  823. list-style: none;
  824. padding-bottom: 4px;
  825. padding-top: 4px;
  826. border-bottom: 1px dotted #d9d9d9;
  827. }
  828. li.comment span.datesince
  829. {
  830. color: #868686;
  831. }
  832. div.comments form.add_comment textarea, div.comments form.edit_comment textarea
  833. {
  834. width: 80%;
  835. height: 48px;
  836. }
  837. div.comments form.add_comment div.buttons, div.comments form.edit_comment div.buttons
  838. {
  839. float: right;
  840. text-align: center;
  841. }
  842. div.comments form.add_comment div.buttons input, div.comments form.edit_comment div.buttons input
  843. {
  844. margin-top: 1px;
  845. margin-bottom: 1px;
  846. }
  847. div.comments_loader
  848. {
  849. text-align: center;
  850. }
  851. /* END commentaires */
  852. /* Ajouter tag d'élément a ses tags favoris */
  853. li.element a.tag_to_favorites
  854. {
  855. margin-left: -15px;
  856. margin-right: 4px;
  857. }
  858. li.element a.element_tag_large_for_fav
  859. {
  860. padding-right: 15px;
  861. }
  862. /* END Ajouter tag d'élément a ses tags favoris */
  863. div#added_element_to_group
  864. {
  865. background-color: #E3F6FD;
  866. padding: 20px;
  867. font-size: 115%;
  868. font-weight: bold;
  869. }
  870. input.intext
  871. {
  872. border: none;
  873. border-bottom-color: #000;
  874. border-bottom-style: dashed;
  875. border-bottom-width: 1px;
  876. width: 110px;
  877. text-align: center;
  878. margin-left: 15px;
  879. margin-right: 15px;
  880. font-weight: bold;
  881. }
  882. li.element table
  883. {
  884. width: 100%;
  885. }
  886. li.element td.right
  887. {
  888. text-align: center;
  889. vertical-align: top;
  890. }
  891. li.element td.right ul, li.element td.right ul li
  892. {
  893. margin: 0px;
  894. padding: 0px;
  895. }
  896. li.element td.right ul li
  897. {
  898. list-style-type: none;
  899. }
  900. li.element td.right ul li.vote
  901. {
  902. height: 25px;
  903. }
  904. li.element td.right span.score
  905. {
  906. font-size: 20px;
  907. font-weight: bold;
  908. }
  909. div.reputation
  910. {
  911. padding-left: 15px;
  912. font-size: 110%;
  913. }
  914. div.reputation span.score
  915. {
  916. font-size: 125%;
  917. font-weight: bold;
  918. }
  919. div#events_container
  920. {
  921. text-align: left;
  922. }
  923. div#events_container_contained
  924. {
  925. margin-left: 0px;
  926. margin-right: auto;
  927. }
  928. div#events
  929. {
  930. width: 62px;
  931. position: absolute;
  932. margin-top: 50px;
  933. margin-left: 650px;
  934. _margin-left: 640px;/* pour >=ie6 */
  935. background-color: white;
  936. padding: 4px;
  937. border-top: 0px solid #d5d5d5;
  938. border-right: 0px solid #d5d5d5;
  939. border-bottom: 0px solid #d5d5d5;
  940. border-left: none;
  941. border-radius: 0px 5px 5px 0px;
  942. -moz-border-radius: 0px 5px 5px 0px;
  943. -webkit-border-radius: 0px 5px 5px 0px;
  944. -webkit-box-shadow: 2px 2px 2px #666;
  945. -moz-box-shadow: 2px 2px 2px #666 ;
  946. box-shadow: 2px 2px 2px #666;
  947. }
  948. div#events div.score img
  949. {
  950. margin-bottom: -5px;
  951. }
  952. div#events div.score span
  953. {
  954. font-weight: bold;
  955. padding-bottom: 2px;
  956. }
  957. div#events div.comments img
  958. {
  959. margin-left: 3px;
  960. margin-bottom: -4px;
  961. }
  962. div#events div.comments span
  963. {
  964. font-weight: bold;
  965. margin-left: 5px;
  966. }
  967. div#events div.favorites img
  968. {
  969. margin-left: 3px;
  970. margin-bottom: -2px;
  971. }
  972. div#events div.favorites span
  973. {
  974. font-weight: bold;
  975. margin-left: 5px;
  976. }
  977. div#events div.follows img
  978. {
  979. margin-left: 3px;
  980. margin-bottom: -2px;
  981. }
  982. div#events div.follows span
  983. {
  984. font-weight: bold;
  985. margin-left: 5px;
  986. }
  987. div#events div.tags img
  988. {
  989. margin-left: 3px;
  990. margin-bottom: -2px;
  991. }
  992. div#events div.tags span
  993. {
  994. font-weight: bold;
  995. margin-left: 5px;
  996. }
  997. /*
  998. * css mynetwork
  999. */
  1000. ul#followers_users li.new
  1001. {
  1002. font-weight: bold;
  1003. }
  1004. /*
  1005. * Proposition de tags
  1006. */
  1007. li.tag_proposition span.button
  1008. {
  1009. font-size: 95%;
  1010. padding: 2px 4px;
  1011. }
  1012. li.tag_proposition:hover
  1013. {
  1014. background-color: #c0f2ff;
  1015. }
  1016. /* */
  1017. .button_green
  1018. {
  1019. background-color: #5ae959;
  1020. }
  1021. li.element.shadows
  1022. {
  1023. -moz-box-shadow: 3px 3px 3px #4F4F4F;
  1024. -webkit-box-shadow: 3px 3px 3px #4F4F4F;
  1025. box-shadow: 3px 3px 3px #4F4F4F;
  1026. }