main.css 51KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397
  1. body
  2. {
  3. background-color: #f4f4f4;
  4. }
  5. body a
  6. {
  7. text-decoration: none;
  8. color: #B80C1A;
  9. }
  10. html, body
  11. {
  12. height:100%;
  13. }
  14. body a:visited
  15. {
  16. text-decoration: none;
  17. color: #B80C1A;
  18. }
  19. body a img
  20. {
  21. text-decoration: none;
  22. }
  23. div#container
  24. {
  25. position : relative;
  26. min-height: 100%;
  27. }
  28. div#header
  29. {
  30. height: 80px;
  31. background-image: url("/img/header_background.png");
  32. background-repeat: repeat-x;
  33. border-bottom: 3px solid #e51936;
  34. }
  35. div#header div#hgroup
  36. {
  37. width: 980px;
  38. margin-left: auto;
  39. margin-right: auto;
  40. text-align: left;
  41. }
  42. #header_logo
  43. {
  44. float: left;
  45. margin-top: 20px;
  46. }
  47. #header_menu
  48. {
  49. color: #ffffff;
  50. margin: 0px;
  51. padding: 0px;
  52. height: 80px;
  53. margin-left: 200px;
  54. width: 780px;
  55. }
  56. #header_menu li a, #register_and_login li a, #parameters li a
  57. {
  58. color: #ffffff;
  59. text-decoration: none;
  60. }
  61. #header_menu li a
  62. {
  63. display: block;
  64. text-decoration: none;
  65. font-weight: bold;
  66. padding-top: 45px;
  67. }
  68. #header_menu li
  69. {
  70. float: left;
  71. display: inline;
  72. padding-left: 13px;
  73. padding-right: 13px;
  74. height: 80px;
  75. }
  76. #header_menu li.selected, #header_menu li:hover
  77. {
  78. background-color: #e51936;
  79. }
  80. #header_menu li.separator
  81. {
  82. background-image: url("/img/header_menu_separator.png");
  83. background-repeat: no-repeat;
  84. width: 5px;
  85. padding-left: 0px;
  86. padding-right: 0px;
  87. }
  88. #header_menu li.separator:hover
  89. {
  90. background: none;
  91. }
  92. #register_and_login
  93. {
  94. float: right;
  95. margin: 0px;
  96. margin-top: 42px;
  97. margin-right: 0px;
  98. padding: 0px;
  99. }
  100. #register_and_login li
  101. {
  102. float: left;
  103. display: inline;
  104. }
  105. #register_and_login li a
  106. {
  107. background-color: #585454;
  108. padding: 8px 8px 6px 6px;
  109. border: 1px solid black;
  110. text-transform : uppercase;
  111. font-size: 70%;
  112. font-weight: bold;
  113. background-color: #555;
  114. box-shadow: 0 1px 1px 0 #696465 inset;
  115. }
  116. #register_and_login li a.left
  117. {
  118. -webkit-border-top-left-radius: 5px;
  119. -webkit-border-bottom-left-radius: 5px;
  120. -moz-border-radius-topleft: 5px;
  121. -moz-border-radius-bottomleft: 5px;
  122. border-top-left-radius: 5px;
  123. border-bottom-left-radius: 5px;
  124. }
  125. #register_and_login li a.right
  126. {
  127. -webkit-border-top-right-radius: 5px;
  128. -webkit-border-bottom-right-radius: 5px;
  129. -moz-border-radius-topright: 5px;
  130. -moz-border-radius-bottomright: 5px;
  131. border-top-right-radius: 5px;
  132. border-bottom-right-radius: 5px;
  133. }
  134. /*#parameters
  135. {
  136. float: right;
  137. border-right-width: 0;
  138. margin-bottom: 0;
  139. margin-left: 0;
  140. margin-right: 0;
  141. margin-top: 8px;
  142. }*/
  143. /*#parameters li
  144. {
  145. float: left;
  146. display: inline;
  147. }
  148. #parameters li a
  149. {
  150. float: left;
  151. display: inline;
  152. font-size: 80%;
  153. font-weight: bold;
  154. }*/
  155. div#languages
  156. {
  157. float: right;
  158. height: 16px;
  159. overflow: hidden;
  160. padding: 2px;
  161. text-align: center;
  162. width: 15px;
  163. position: absolute;
  164. margin-left: 945px;
  165. margin-top: 7px;
  166. -moz-border-radius: 3px;
  167. -webkit-border-radius: 3px;
  168. -khtml-border-radius: 3px;
  169. border-radius: 3px;
  170. }
  171. div#languages a
  172. {
  173. color: white;
  174. font-weight: bold;
  175. font-size: 11px;
  176. }
  177. div#languages:hover
  178. {
  179. height: auto;
  180. background: #474747; /* Old browsers */
  181. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  182. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ3NDc0NyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNDc0NzQ3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIxMjEyMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMTIxMjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  183. background: -moz-linear-gradient(top, #474747 0%, #474747 0%, #212121 100%, #212121 100%); /* FF3.6+ */
  184. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#474747), color-stop(0%,#474747), color-stop(100%,#212121), color-stop(100%,#212121)); /* Chrome,Safari4+ */
  185. background: -webkit-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Chrome10+,Safari5.1+ */
  186. background: -o-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Opera 11.10+ */
  187. background: -ms-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* IE10+ */
  188. background: linear-gradient(to bottom, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* W3C */
  189. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474747', endColorstr='#212121',GradientType=0 ); /* IE6-8 */
  190. }
  191. #content
  192. {
  193. display: table;
  194. width: 980px;
  195. margin-right: auto;
  196. margin-left: auto;
  197. padding-bottom: 135px;
  198. }
  199. #main_content
  200. {
  201. position: relative;
  202. min-height: 100%;
  203. }
  204. #main
  205. {
  206. display: table-cell;
  207. width: 650px;
  208. padding-right: 30px;
  209. }
  210. #mainbox
  211. {
  212. margin-top: 25px;
  213. /*padding: 10px;*/
  214. padding-bottom: 23px;
  215. }
  216. #mainbox.mainbox_margintop
  217. {
  218. margin-top: 80px;
  219. }
  220. #mainbox.mainbox_nopadding
  221. {
  222. padding: 0px;
  223. }
  224. #mainbox.mainbox_padding
  225. {
  226. padding: 10px;
  227. }
  228. #mainbox h1
  229. {
  230. margin-top: 10px;
  231. }
  232. .nicebox
  233. {
  234. -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
  235. -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
  236. box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
  237. border: 1px solid #d3d3d3;
  238. }
  239. aside#sidebar
  240. {
  241. display: table-cell;
  242. width: 300px;
  243. vertical-align: top;
  244. }
  245. ul.elements
  246. {
  247. margin-top: 0px;
  248. margin-left: 0px;
  249. margin-bottom: 0px;
  250. }
  251. ul.elements li.element
  252. {
  253. background-color: #f8f8f8;
  254. border-top: 1px solid #c8c8c8;
  255. list-style-type: none;
  256. padding: 10px;
  257. }
  258. ul.elements li.element:last-child
  259. {
  260. }
  261. td.element_thumbnail
  262. {
  263. background-color: #d5d5d5;
  264. padding: 4px;
  265. text-align: center;
  266. width: 126px;
  267. -webkit-border-radius: 3px;
  268. border-radius: 3px;
  269. }
  270. li.element img.element_thumbnail
  271. {
  272. border: 3px solid white;
  273. }
  274. .element_thumb_actions_container
  275. {
  276. }
  277. ul.element_thumb_actions
  278. {
  279. margin-top: 0;
  280. margin-bottom: 0;
  281. margin-left: auto;
  282. margin-right: auto;
  283. text-align: center;
  284. float: right;
  285. }
  286. ul.element_thumb_actions li
  287. {
  288. list-style-type: none;
  289. color: #787777;
  290. font-weight: bold;
  291. height: 20px;
  292. display: inline;
  293. float: left;
  294. padding-left: 9px;
  295. padding-right: 9px;
  296. }
  297. ul.element_thumb_actions li.score
  298. {
  299. padding-top: 2px;
  300. margin-top: 0px;
  301. border-right: 1px solid #bfbfbf;
  302. }
  303. ul.element_thumb_actions li.thumb
  304. {
  305. border-left: 1px solid #eeeeee;
  306. border-right: 1px solid #bfbfbf;
  307. }
  308. ul.element_thumb_actions li.star
  309. {
  310. padding-top: 2px;
  311. border-left: 1px solid #eeeeee;
  312. }
  313. ul.element_thumb_actions li.star a img
  314. {
  315. }
  316. ul.element_thumb_actions li.separator
  317. {
  318. }
  319. td.element_content
  320. {
  321. vertical-align: top;
  322. padding-top: 5px;
  323. padding-left: 15px;
  324. padding-bottom: 5px;
  325. padding-right: 0px;
  326. color: #404040;
  327. }
  328. td.element_content a
  329. {
  330. color: #b80c1a;
  331. }
  332. td.element_content .element_name a
  333. {
  334. color: #171717;
  335. font-weight: bold;
  336. font-size: 15px;
  337. }
  338. ul.element_links_actions
  339. {
  340. float: right;
  341. margin: 0px;
  342. padding: 0px;
  343. border: 1px solid #c7c7c7;
  344. height: 18px;
  345. padding: 0px 1px 1px;
  346. background: #f8f8f8; /* Old browsers */
  347. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  348. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y4ZjhmOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjhmOGY4IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2Q3ZDdkNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkN2Q3ZDciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  349. background: -moz-linear-gradient(top, #f8f8f8 0%, #f8f8f8 0%, #d7d7d7 100%, #d7d7d7 100%); /* FF3.6+ */
  350. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(0%,#f8f8f8), color-stop(100%,#d7d7d7), color-stop(100%,#d7d7d7)); /* Chrome,Safari4+ */
  351. background: -webkit-linear-gradient(top, #f8f8f8 0%,#f8f8f8 0%,#d7d7d7 100%,#d7d7d7 100%); /* Chrome10+,Safari5.1+ */
  352. background: -o-linear-gradient(top, #f8f8f8 0%,#f8f8f8 0%,#d7d7d7 100%,#d7d7d7 100%); /* Opera 11.10+ */
  353. background: -ms-linear-gradient(top, #f8f8f8 0%,#f8f8f8 0%,#d7d7d7 100%,#d7d7d7 100%); /* IE10+ */
  354. background: linear-gradient(to bottom, #f8f8f8 0%,#f8f8f8 0%,#d7d7d7 100%,#d7d7d7 100%); /* W3C */
  355. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#d7d7d7',GradientType=0 ); /* IE6-8 */
  356. -webkit-border-top-left-radius: 3px;
  357. -webkit-border-bottom-left-radius: 3px;
  358. -moz-border-radius-topleft: 3px;
  359. -moz-border-radius-bottomleft: 3px;
  360. border-top-left-radius: 3px;
  361. border-bottom-left-radius: 3px;
  362. -webkit-border-top-right-radius: 3px;
  363. -webkit-border-bottom-right-radius: 3px;
  364. -moz-border-radius-topright: 3px;
  365. -moz-border-radius-bottomright: 3px;
  366. border-top-right-radius: 3px;
  367. border-bottom-right-radius: 3px;
  368. }
  369. ul.element_links_actions li
  370. {
  371. list-style-type: none;
  372. display: inline;
  373. float: left;
  374. height: 18px;
  375. border-right: 1px solid #c7c7c7;
  376. border-left: 1px solid #ffffff;
  377. }
  378. ul.element_links_actions li:first-child
  379. {
  380. border-left: none;
  381. }
  382. ul.element_links_actions li:last-child
  383. {
  384. border-right: none;
  385. }
  386. .elements ul.element_tags
  387. {
  388. margin-top: 3px;
  389. margin-left: 0px;
  390. }
  391. .elements ul.element_tags li, ul#autoplay_element ul.element_tags li, ul.elements ul.element_tags li
  392. {
  393. display: inline;
  394. font-size: 90%;
  395. }
  396. ul.element_tags .button
  397. {
  398. padding: 2px 4px 2px 4px;
  399. font-size: 95%;
  400. }
  401. .button {
  402. display: inline-block;
  403. line-height: 1;
  404. padding: 4px 7px;
  405. font-weight: bold;
  406. -moz-border-radius: 3px;
  407. -webkit-border-radius: 3px;
  408. -khtml-border-radius: 3px;
  409. border-radius: 3px;
  410. border: 1px solid #2b82ad;
  411. text-transform : uppercase;
  412. border: 1px solid #b0b0b0;
  413. background: #f3f3f3; /* Old browsers */
  414. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  415. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjNmM2YzIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2Q1ZDVkNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkNWQ1ZDUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  416. background: -moz-linear-gradient(top, #f3f3f3 0%, #f3f3f3 0%, #d5d5d5 100%, #d5d5d5 100%); /* FF3.6+ */
  417. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3f3f3), color-stop(0%,#f3f3f3), color-stop(100%,#d5d5d5), color-stop(100%,#d5d5d5)); /* Chrome,Safari4+ */
  418. background: -webkit-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#d5d5d5 100%,#d5d5d5 100%); /* Chrome10+,Safari5.1+ */
  419. background: -o-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#d5d5d5 100%,#d5d5d5 100%); /* Opera 11.10+ */
  420. background: -ms-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#d5d5d5 100%,#d5d5d5 100%); /* IE10+ */
  421. background: linear-gradient(to bottom, #f3f3f3 0%,#f3f3f3 0%,#d5d5d5 100%,#d5d5d5 100%); /* W3C */
  422. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#d5d5d5',GradientType=0 ); /* IE6-8 */
  423. }
  424. a.button.element_tag, ul.tagbox li.tag, ul.search_tag_list li, ul#favorite_tags li, ul.tags_cloud li
  425. {
  426. padding: 6px;
  427. border: none;
  428. background: #474747; /* Old browsers */
  429. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  430. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ3NDc0NyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNDc0NzQ3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIxMjEyMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMTIxMjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  431. background: -moz-linear-gradient(top, #474747 0%, #474747 0%, #212121 100%, #212121 100%); /* FF3.6+ */
  432. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#474747), color-stop(0%,#474747), color-stop(100%,#212121), color-stop(100%,#212121)); /* Chrome,Safari4+ */
  433. background: -webkit-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Chrome10+,Safari5.1+ */
  434. background: -o-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Opera 11.10+ */
  435. background: -ms-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* IE10+ */
  436. background: linear-gradient(to bottom, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* W3C */
  437. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474747', endColorstr='#212121',GradientType=0 ); /* IE6-8 */
  438. }
  439. td.element_content li.element_tag a.button, ul.tagbox li.tag
  440. {
  441. color: #fff;
  442. text-decoration: none;
  443. text-transform : uppercase;
  444. }
  445. .button.active
  446. {
  447. background-color: #39C9CC;
  448. }
  449. li.element a.element_tag_large_for_fav_still
  450. {
  451. padding-right: 17px;
  452. }
  453. li.element a.tag_to_favorites, li.element img.tag_to_favorites
  454. {
  455. margin-left: -17px;
  456. margin-right: 4px;
  457. }
  458. img.tag_to_favorites
  459. {
  460. margin-bottom: -1px;
  461. }
  462. img.tag_add_to_favorites
  463. {
  464. margin-bottom: -1px;
  465. margin-left: 1px;
  466. }
  467. td.element_content a.display_comments, td.element_content a.add_comment, td.element_content a.add_comment_disabled, td.element_content a.hide_comments, div.comments a.add_comment
  468. {
  469. color: #404040;
  470. }
  471. div.comments form.add_comment textarea, div.comments form.edit_comment textarea
  472. {
  473. width: 75%;
  474. height: 48px;
  475. }
  476. div.comments form.add_comment div.buttons input, div.comments form.edit_comment div.buttons input
  477. {
  478. margin-top: 1px;
  479. margin-bottom: 1px;
  480. }
  481. aside#sidebar div.nicebox
  482. {
  483. background-color: #f5f6f6;
  484. margin-bottom: 18px;
  485. padding: 12px;
  486. }
  487. div#user_statusbox
  488. {
  489. margin-top: 25px;
  490. }
  491. div.user_score
  492. {
  493. float: left;
  494. padding-top: 4px;
  495. border: 1px solid #D3D3D3;
  496. background-color: white;
  497. text-align: center;
  498. width: 138px;
  499. }
  500. .blackgradiant
  501. {
  502. background: #474747; /* Old browsers */
  503. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  504. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ3NDc0NyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNDc0NzQ3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIxMjEyMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMTIxMjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  505. background: -moz-linear-gradient(top, #474747 0%, #474747 0%, #212121 100%, #212121 100%); /* FF3.6+ */
  506. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#474747), color-stop(0%,#474747), color-stop(100%,#212121), color-stop(100%,#212121)); /* Chrome,Safari4+ */
  507. background: -webkit-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Chrome10+,Safari5.1+ */
  508. background: -o-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Opera 11.10+ */
  509. background: -ms-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* IE10+ */
  510. background: linear-gradient(to bottom, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* W3C */
  511. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474747', endColorstr='#212121',GradientType=0 ); /* IE6-8 */
  512. }
  513. div.user_avatar
  514. {
  515. height: 137px;
  516. padding-right: 1px;
  517. }
  518. div.user_score div.score
  519. {
  520. color: #f5f6f6;
  521. height: 29px;
  522. font-weight: bold;
  523. font-size: 18px;
  524. padding-top: 5px;
  525. margin-bottom: 4px;
  526. margin-left: 3px;
  527. margin-right: 5px;
  528. }
  529. ul.user_events_infos
  530. {
  531. margin: 0;
  532. padding: 0;
  533. margin-left: 150px;
  534. margin-top: 10px;
  535. width: 126px;
  536. }
  537. ul.user_events_infos li
  538. {
  539. list-style-type: none;
  540. height: 29px;
  541. font-weight: bold;
  542. border-bottom: 1px solid #c0c1c1;
  543. padding-top: 6px;
  544. vertical-align: middle;
  545. }
  546. ul.user_events_infos li img, ul.user_events_infos li span
  547. {
  548. float: left;
  549. }
  550. ul.user_events_infos li img
  551. {
  552. padding-right: 8px;
  553. }
  554. ul.user_events_infos li span
  555. {
  556. margin-top: 2px;
  557. }
  558. ul.user_events_infos li:first-child
  559. {
  560. padding-top: 0px;
  561. height: 25px;
  562. }
  563. ul.user_events_infos li:last-child
  564. {
  565. border-bottom: none;
  566. }
  567. ul.user_events_infos li.user_name
  568. {
  569. text-transform : uppercase;
  570. overflow: hidden;
  571. text-overflow: ellipsis;
  572. white-space: nowrap;
  573. }
  574. div.seachboxcontainer
  575. {
  576. -webkit-box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  577. box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  578. height: 34px;
  579. -moz-border-radius: 4px;
  580. -webkit-border-radius: 4px;
  581. -khtml-border-radius: 4px;
  582. border-radius: 4px;
  583. }
  584. div.seachboxcontainer input
  585. {
  586. background: none;
  587. border: none;
  588. height: 34px;
  589. margin: 0;
  590. padding: 0;
  591. padding-left: 6px;
  592. width: 222px;
  593. }
  594. div.seachboxcontainer img
  595. {
  596. border-left: 1px solid #C4C0C0;
  597. float: right;
  598. margin-right: 8px;
  599. margin-top: 3px;
  600. padding-left: 5px;
  601. }
  602. ul.social_links
  603. {
  604. margin: 0px;
  605. padding: 0px;
  606. height: 35px;
  607. margin-left: 22px;
  608. }
  609. ul.social_links li
  610. {
  611. list-style-type: none;
  612. display: inline;
  613. float: left;
  614. padding-left: 10px;
  615. padding-right: 10px;
  616. border-left: 1px solid #E2E2E2;
  617. border-right: 1px solid #E2E2E2;
  618. }
  619. ul.social_links li:first-child, ul.social_links li:last-child
  620. {
  621. border: none;
  622. }
  623. aside#sidebar div#secondarymenu, aside#sidebar div#secondarymenu ul.secondarymenu, aside#sidebar div#secondarymenu ul.submenu
  624. {
  625. padding: 0;
  626. margin: 0;
  627. }
  628. div#secondarymenu ul.secondarymenu li
  629. {
  630. list-style-type: none;
  631. }
  632. div#secondarymenu ul.secondarymenu li.top_menu_element div
  633. {
  634. padding: 10px;
  635. }
  636. div#secondarymenu ul.secondarymenu li.top_menu_element a
  637. {
  638. color: white;
  639. text-transform : uppercase;
  640. font-weight: bold;
  641. }
  642. div#secondarymenu ul.submenu li.sub_menu_element
  643. {
  644. padding: 10px;
  645. padding-left: 20px;
  646. background-color: #f5f6f6;
  647. border-top: 1px solid #dadbdb;
  648. border-bottom: 1px solid #dadbdb;
  649. background: url("/img/icon_list_chip.png") no-repeat scroll 2% 50% transparent;
  650. }
  651. div#secondarymenu ul.submenu li.sub_menu_element:first-child
  652. {
  653. border-top: none;
  654. }
  655. div#secondarymenu ul.submenu li.sub_menu_element:last-child
  656. {
  657. border-bottom: none;
  658. }
  659. div#secondarymenu ul.submenu li.sub_menu_element a
  660. {
  661. color: black;
  662. text-transform : uppercase;
  663. font-weight: inherit;
  664. }
  665. div#secondarymenu ul.secondarymenu li.top_menu_element.close div.dart
  666. {
  667. background: url("/img/icon_dart_top.png") no-repeat;
  668. width: 15px;
  669. height: 15px;
  670. float: right;
  671. margin-top: 2px;
  672. padding: 0;
  673. }
  674. div#secondarymenu ul.secondarymenu li.top_menu_element.close ul.submenu
  675. {
  676. display: none;
  677. }
  678. div#secondarymenu ul.secondarymenu li.top_menu_element.open div.dart
  679. {
  680. background: url("/img/icon_dart_bottom.png") no-repeat scroll 95% 50% transparent;
  681. width: 15px;
  682. height: 15px;
  683. float: right;
  684. margin-top: 2px;
  685. padding: 0;
  686. }
  687. div#secondarymenu ul.secondarymenu li.top_menu_element.open ul.submenu
  688. {
  689. display: block;
  690. }
  691. #tabs_tag_search_buttons
  692. {
  693. margin: 0;
  694. padding: 0;
  695. border-left: 1px solid #d3d3d3;
  696. border-top: 1px solid #d3d3d3;
  697. border-right: 1px solid #d3d3d3;
  698. float: left;
  699. margin-left: -1px;
  700. margin-top: -61px;
  701. font-weight: bold;
  702. -webkit-border-top-left-radius: 3px;
  703. -webkit-border-bottom-left-radius: 3px;
  704. -moz-border-radius-topleft: 3px;
  705. -moz-border-radius-bottomleft: 3px;
  706. border-top-left-radius: 3px;
  707. border-bottom-left-radius: 3px;
  708. -webkit-border-top-right-radius: 3px;
  709. -webkit-border-bottom-right-radius: 3px;
  710. -moz-border-radius-topright: 3px;
  711. -moz-border-radius-bottomright: 3px;
  712. border-top-right-radius: 3px;
  713. border-bottom-right-radius: 3px;
  714. }
  715. #tabs_tag_search_buttons a
  716. {
  717. color: black;
  718. }
  719. #tabs_tag_search_buttons li
  720. {
  721. list-style-type: none;
  722. display: inline;
  723. float: left;
  724. padding: 20px;
  725. background: #dddddd; /* Old browsers */
  726. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  727. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZGRkZGRkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2NhY2FjYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjYWNhY2EiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  728. background: -moz-linear-gradient(top, #dddddd 0%, #dddddd 0%, #cacaca 100%, #cacaca 100%); /* FF3.6+ */
  729. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#dddddd), color-stop(0%,#dddddd), color-stop(100%,#cacaca), color-stop(100%,#cacaca)); /* Chrome,Safari4+ */
  730. background: -webkit-linear-gradient(top, #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* Chrome10+,Safari5.1+ */
  731. background: -o-linear-gradient(top, #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* Opera 11.10+ */
  732. background: -ms-linear-gradient(top, #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* IE10+ */
  733. background: linear-gradient(to bottom, #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* W3C */
  734. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#cacaca',GradientType=0 ); /* IE6-8 */
  735. }
  736. #tabs_tag_search_buttons li.selected
  737. {
  738. list-style-type: none;
  739. padding: 20px;
  740. background: #f3f3f3; /* Old browsers */
  741. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  742. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjNmM2YzIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2UyZTJlMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlMmUyZTIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  743. background: -moz-linear-gradient(top, #f3f3f3 0%, #f3f3f3 0%, #e2e2e2 100%, #e2e2e2 100%); /* FF3.6+ */
  744. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3f3f3), color-stop(0%,#f3f3f3), color-stop(100%,#e2e2e2), color-stop(100%,#e2e2e2)); /* Chrome,Safari4+ */
  745. background: -webkit-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* Chrome10+,Safari5.1+ */
  746. background: -o-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* Opera 11.10+ */
  747. background: -ms-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* IE10+ */
  748. background: linear-gradient(to bottom, #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* W3C */
  749. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#e2e2e2',GradientType=0 ); /* IE6-8 */
  750. }
  751. #tabs_tag_search_buttons li:first-child
  752. {
  753. -webkit-box-shadow: -1px -1px 1px 1px rgba(0, 0, 0, 0.1);
  754. -moz-box-shadow: -1px -1px 1px 1px rgba(0, 0, 0, 0.1);
  755. box-shadow: -1px -1px 1px 1px rgba(0, 0, 0, 0.1);
  756. }
  757. #tabs_tag_search_buttons li:last-child
  758. {
  759. -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
  760. -moz-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
  761. box-shadow: 1px -1px 1px 1px rgba(0, 0, 0, 0.1);
  762. }
  763. #tabs_tag_search_buttons li div.dart
  764. {
  765. display: none;
  766. height: 16px;
  767. margin-left: 30px;
  768. margin-top: 6px;
  769. width: 30px;
  770. background: url("/img/icon_bigtag_choosed.png") no-repeat scroll 0 0 transparent;
  771. position: absolute;
  772. }
  773. #tabs_tag_search_buttons li.selected div.dart
  774. {
  775. display: block;
  776. }
  777. ul.tagbox a.close
  778. {
  779. background: url("/img/icon_close_red.png") repeat scroll 0 100% transparent;
  780. position: absolute;
  781. width: 11px;
  782. text-indent: -9999px;
  783. margin-left: 2px;
  784. }
  785. ul.tagbox li.tag
  786. {
  787. padding-right: 18px;
  788. }
  789. ul.tagbox li.tag, ul#favorite_tags li, ul.tags_cloud li
  790. {
  791. border-radius: 3px 3px 3px 3px;
  792. display: inline-block;
  793. font-size: 13px;
  794. font-weight: bold;
  795. line-height: 1;
  796. margin-bottom: 1px;
  797. margin-right: 3px;
  798. -moz-border-radius: 4px;
  799. -webkit-border-radius: 4px;
  800. -khtml-border-radius: 4px;
  801. border-radius: 4px;
  802. }
  803. ul.tagbox li.input {display:block; float:left;}
  804. ul.tagbox input:focus {
  805. border-color: #fff;
  806. }
  807. ul.tagbox input {
  808. width: 50px;
  809. margin: 0;
  810. border: 0;
  811. outline: 0;
  812. line-height:1.2;
  813. padding: 3px 0;
  814. font-size: 105%;
  815. }
  816. ul#favorite_tags li
  817. {
  818. margin-right: 0px;
  819. }
  820. #element_add_link, #element_add_close_link, #group_add_link, #group_add_link_disabled, #group_add_close_link, #registration_link, #login_link, #know_more, #launch_tour
  821. {
  822. float: right;
  823. margin-top: -58px;
  824. padding: 15px;
  825. color: white;
  826. border: none;
  827. background: #f6282d; /* Old browsers */
  828. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  829. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2MjgyZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjYyODJkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2M1MDYxNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjNTA2MTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  830. background: -moz-linear-gradient(top, #f6282d 0%, #f6282d 0%, #c50617 100%, #c50617 100%); /* FF3.6+ */
  831. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f6282d), color-stop(0%,#f6282d), color-stop(100%,#c50617), color-stop(100%,#c50617)); /* Chrome,Safari4+ */
  832. background: -webkit-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Chrome10+,Safari5.1+ */
  833. background: -o-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Opera 11.10+ */
  834. background: -ms-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* IE10+ */
  835. background: linear-gradient(to bottom, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* W3C */
  836. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6282d', endColorstr='#c50617',GradientType=0 ); /* IE6-8 */
  837. }
  838. #registration_link, #login_link
  839. {
  840. margin-right: -112px;
  841. margin-top: -76px;
  842. }
  843. #element_add_link img, #element_add_close_link img, #group_add_link img, #group_add_link_disabled img, #group_add_close_link img, #registration_link img, #login_link img
  844. {
  845. margin-left: -5px;
  846. margin-right: 5px;
  847. margin-top: -1px;
  848. }
  849. #element_add_link.justtopright, #element_add_close_link.justtopright, #group_add_link.justtopright, #group_add_link_disabled.justtopright, #group_add_close_link.justtopright
  850. {
  851. margin-top: 0px;
  852. margin-right: 0px;
  853. }
  854. .top_tools
  855. {
  856. padding: 10px;
  857. margin-bottom: 10px;
  858. }
  859. form[name="search"]
  860. {
  861. margin-top: -5px;
  862. }
  863. form[name="search"] input[type="submit"]
  864. {
  865. float: right;
  866. height: 34px;
  867. margin-top: -55px;
  868. }
  869. .top_tools input.tag_prompt
  870. {
  871. text-align: center;
  872. width: 518px;
  873. }
  874. .niceinput
  875. {
  876. -webkit-box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  877. box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  878. height: 34px;
  879. -moz-border-radius: 4px;
  880. -webkit-border-radius: 4px;
  881. -khtml-border-radius: 4px;
  882. border-radius: 4px;
  883. border: medium none;
  884. padding-left: 10px;
  885. padding-right: 10px;
  886. }
  887. .nicetextbox
  888. {
  889. -webkit-box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  890. box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  891. height: 34px;
  892. -moz-border-radius: 4px;
  893. -webkit-border-radius: 4px;
  894. -khtml-border-radius: 4px;
  895. border-radius: 4px;
  896. border: medium none;
  897. padding: 10px;
  898. padding-right: 10px;
  899. }
  900. input:-moz-placeholder, textarea:-moz-placeholder {
  901. color: black;
  902. }
  903. input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  904. color: black;
  905. }
  906. a.elements_more div
  907. {
  908. height: 32px;
  909. width: 100%;
  910. padding: 0px;
  911. text-align: center;
  912. background-image: url("/img/more_result.png");
  913. background-repeat: no-repeat;
  914. padding-top: 30px;
  915. text-transform : uppercase;
  916. }
  917. a.elements_more
  918. {
  919. color: black;
  920. font-weight: bold;
  921. }
  922. a.elements_more:hover
  923. {
  924. color: black;
  925. }
  926. div#element_add_box
  927. {
  928. padding: 10px;
  929. }
  930. #element_add_box h2
  931. {
  932. margin-top: 0px;
  933. }
  934. div#form_add_first_part #element_add_url
  935. {
  936. height: 29px;
  937. width: 485px;
  938. }
  939. #tabs_tag_search_buttons a
  940. {
  941. padding-left: 5px;
  942. }
  943. #tabs_tag_search_buttons img
  944. {
  945. float: left;
  946. }
  947. .muzichlogodecored
  948. {
  949. background-image: url("/img/icon_minilogo_2.png");
  950. background-repeat: no-repeat;
  951. background-position: left center;
  952. }
  953. a#autoplay_launch
  954. {
  955. -moz-border-radius: 3px 3px 0px 0px;
  956. -webkit-border-radius: 3px 3px 0px 0px;
  957. -khtml-border-radius: 3px 3px 0px 0px;
  958. padding-bottom: 0px;
  959. border-bottom: none;
  960. margin-right: -4px;
  961. margin-top: -3px;
  962. }
  963. div#tags_prompt_add
  964. {
  965. width: 465px;
  966. }
  967. div#tags_prompt_add input.tag_prompt
  968. {
  969. width: 450px;
  970. }
  971. div#form_add_second_part table td
  972. {
  973. padding: 10px;
  974. }
  975. div#form_add_second_part input[type="submit"]
  976. {
  977. float: right;
  978. margin-top: -25px;
  979. }
  980. div#footer
  981. {
  982. height: 104px;
  983. width: 100%;
  984. margin-top: 25px;
  985. border-top: 4px solid #E51936;
  986. background-color: #171717;
  987. text-align: center;
  988. position: absolute;
  989. bottom:0;
  990. }
  991. div#footer_content
  992. {
  993. margin-left: auto;
  994. margin-right: auto;
  995. width: 980px;
  996. color: #999999;
  997. }
  998. div#footer_content a
  999. {
  1000. color: #999999;
  1001. }
  1002. div#footer_logo
  1003. {
  1004. line-height: 18px;
  1005. margin-top: 25px;
  1006. padding-left: 0;
  1007. padding-right: 40px;
  1008. text-align: left;
  1009. width: 191px;
  1010. float: left;
  1011. }
  1012. div#footer_logo img
  1013. {
  1014. float: left;
  1015. padding-right: 10px;
  1016. }
  1017. div#footer_logo_2
  1018. {
  1019. line-height: 18px;
  1020. margin-top: 25px;
  1021. padding-left: 0;
  1022. padding-right: 40px;
  1023. text-align: left;
  1024. width: 135px;
  1025. float: left;
  1026. }
  1027. div#footer_logo_2 img
  1028. {
  1029. float: none;
  1030. padding-right: 0px;
  1031. }
  1032. span.fotter_muzich_big
  1033. {
  1034. font-size: 22px;
  1035. font-weight: bold;
  1036. }
  1037. div#footer_content ul.footer_pages_links
  1038. {
  1039. float: left;
  1040. height: 74px;
  1041. margin-bottom: 0;
  1042. margin-top: 12px;
  1043. padding-top: 10px;
  1044. margin-left: 0;
  1045. padding-left: 32px;
  1046. width: 210px;
  1047. border-left: 1px solid #2F2F2F;
  1048. text-align: left;
  1049. }
  1050. div#footer_content ul.footer_pages_links li
  1051. {
  1052. list-style-image: url("/img/list_chip_red.png");
  1053. }
  1054. div.search_tag_list ul.search_tag_list
  1055. {
  1056. list-style-image: none;
  1057. padding:0;
  1058. margin:0;
  1059. list-style-type:none;
  1060. overflow: hidden;
  1061. }
  1062. div.search_tag_list ul.search_tag_list li
  1063. {
  1064. float: left;
  1065. margin-right: 4px;
  1066. margin-left: 4px;
  1067. margin-top: 2px;
  1068. margin-bottom: 2px;
  1069. padding: 2px 4px 2px 4px;
  1070. background-color: #d9f7ff;
  1071. border-radius: 4px;
  1072. -moz-border-radius: 4px;
  1073. -webkit-border-radius: 4px;
  1074. -webkit-box-shadow: #666 0px 2px 3px;
  1075. -moz-box-shadow: #666 0px 2px 3px;
  1076. box-shadow: #666 0px 2px 3px;
  1077. }
  1078. div.search_tag_list ul.search_tag_list li.new
  1079. {
  1080. font-weight: bold;
  1081. background: #e0e0e0;
  1082. color: black;
  1083. }
  1084. #container div.search_tag_list ul.search_tag_list li.new a
  1085. {
  1086. color: black;
  1087. }
  1088. #helpbox div.search_tag_list ul.search_tag_list li.new a
  1089. {
  1090. color: black;
  1091. }
  1092. div.search_tag_list ul.search_tag_list li:hover
  1093. {
  1094. background-color: #999999;
  1095. }
  1096. div.search_tag_list span.info
  1097. {
  1098. text-shadow: 1px 1px 1px #666;
  1099. font-weight: bold;
  1100. font-size: 17px;
  1101. }
  1102. #container ul.search_tag_list li a
  1103. {
  1104. color: #E7E7E7;
  1105. }
  1106. #container ul.search_tag_list li a:hover
  1107. {
  1108. text-decoration: none;
  1109. }
  1110. ul.search_tag_list li a
  1111. {
  1112. color: white;
  1113. }
  1114. div#search_tag_search a.more, div#search_tag_add a.more
  1115. {
  1116. color: black;
  1117. }
  1118. div#search_tag_search p.help
  1119. {
  1120. font-size: 11px;
  1121. font-style: italic;
  1122. }
  1123. .textcenter
  1124. {
  1125. text-align: center;
  1126. }
  1127. ul#form_add_prop_tags_api li
  1128. {
  1129. float: left;
  1130. list-style-type: none;
  1131. margin-right: 15px;
  1132. }
  1133. ul#form_add_prop_tags_api li:hover
  1134. {
  1135. text-decoration: underline;
  1136. }
  1137. ul.elements li.element.selected
  1138. {
  1139. background-color: #E7E7E7;
  1140. }
  1141. ul.elements li.element h2
  1142. {
  1143. margin-top: 0px;
  1144. }
  1145. ul.elements li.element fieldset
  1146. {
  1147. margin-bottom: 5px;
  1148. }
  1149. ul.elements li.element fieldset.edit_url label, ul.elements li.element fieldset.edit_name label, ul.elements li.element fieldset.edit_tags label
  1150. {
  1151. display: block;
  1152. float: left;
  1153. width: 80px;
  1154. font-size: 16px;
  1155. padding-top: 6px;
  1156. font-weight: bold;
  1157. }
  1158. ul.elements li.element fieldset.edit_tags label
  1159. {
  1160. float: left;
  1161. }
  1162. ul.elements li.element fieldset.edit_url input[type="text"], ul.elements li.element fieldset.edit_name input[type="text"]
  1163. {
  1164. width: 520px;
  1165. font-size: 100%;
  1166. height: 30px;
  1167. }
  1168. ul.elements li.element fieldset.edit_tags input.tag_prompt
  1169. {
  1170. width: 600px;
  1171. }
  1172. ul.elements li.element div.inputs
  1173. {
  1174. text-align: right;
  1175. }
  1176. div.no_elements
  1177. {
  1178. text-align: center;
  1179. }
  1180. ul#autoplay_element
  1181. {
  1182. margin: 0px;
  1183. padding: 0px;
  1184. }
  1185. ul#autoplay_element li, ul.elements li
  1186. {
  1187. list-style-type: none;
  1188. }
  1189. ul.tagbox {
  1190. cursor: text;
  1191. border: none;
  1192. overflow: hidden;
  1193. padding: 0 0 1px 3px;
  1194. margin-left: 0px;
  1195. }
  1196. ul.tagbox li {
  1197. margin:0;
  1198. }
  1199. ul#favorite_tags, ul.tags_cloud
  1200. {
  1201. padding:0;
  1202. margin-top:10px;
  1203. margin-bottom: 10px;
  1204. margin-left: 0px;
  1205. list-style-type:none;
  1206. }
  1207. ul#favorite_tags li a, ul.tags_cloud li a
  1208. {
  1209. color: white;
  1210. }
  1211. ul#favorite_tags li.list_length_big a
  1212. {
  1213. font-size: 16px;
  1214. padding-top: 2px;
  1215. padding-bottom: 2px;
  1216. }
  1217. ul#favorite_tags li.list_length_medium a
  1218. {
  1219. font-size: 15px;
  1220. padding-top: 3px;
  1221. padding-bottom: 3px;
  1222. }
  1223. ul#favorite_tags li a.active
  1224. {
  1225. color: #999999;
  1226. }
  1227. ul#favorite_tags li a.highlight
  1228. {
  1229. color: #E51936;
  1230. }
  1231. ul#favorite_tags li a.highlight.active
  1232. {
  1233. color: #999999;
  1234. }
  1235. input#element_add_name
  1236. {
  1237. width: 450px;
  1238. }
  1239. .darkbutton {
  1240. background-color: #585454;
  1241. padding: 8px 8px 6px 6px;
  1242. border: 1px solid black;
  1243. text-transform : uppercase;
  1244. font-size: 70%;
  1245. font-weight: bold;
  1246. background: none;
  1247. background-color: #555;
  1248. box-shadow: 0 1px 1px 0 #696465 inset;
  1249. color: white;
  1250. }
  1251. div.top_tools div.show_options
  1252. {
  1253. float: right;
  1254. padding: 10px;
  1255. }
  1256. div.show_options a
  1257. {
  1258. color: white;
  1259. }
  1260. .nicelabels label
  1261. {
  1262. display: block;
  1263. float: left;
  1264. font-size: 16px;
  1265. font-weight: bold;
  1266. padding-top: 6px;
  1267. width: 100px;
  1268. }
  1269. div#group_add_box label
  1270. {
  1271. width: 110px;
  1272. }
  1273. div#group_add_box input#group_name
  1274. {
  1275. width: 488px;
  1276. }
  1277. div#group_add_box textarea#group_description
  1278. {
  1279. width: 487px;
  1280. height: 85px;
  1281. }
  1282. div#group_add_box input.tag_prompt
  1283. {
  1284. width: 96%;
  1285. }
  1286. div.alignright
  1287. {
  1288. text-align: right;
  1289. }
  1290. div#group_add_box input[type="submit"]
  1291. {
  1292. margin-top: 10px;
  1293. }
  1294. div#registration_box input.niceinput
  1295. {
  1296. width: 250px;
  1297. }
  1298. div#registration_box label
  1299. {
  1300. width: 70px;
  1301. }
  1302. div#registration_box input[type="submit"]
  1303. {
  1304. float: right;
  1305. }
  1306. div#registration_box div.field
  1307. {
  1308. margin-bottom: 5px;
  1309. }
  1310. .mainbox_start input.tag_prompt
  1311. {
  1312. width: 96%;
  1313. }
  1314. .mainbox_start input[type="submit"]
  1315. {
  1316. float: right;
  1317. margin-right: 7px;
  1318. margin-top: 10px;
  1319. }
  1320. div.global_search_results
  1321. {
  1322. margin-top: 10px;
  1323. }
  1324. div#add_url_title, div.element_title
  1325. {
  1326. width: 510px;
  1327. font-weight: bold;
  1328. font-size: 15px;
  1329. white-space: nowrap;
  1330. overflow: hidden;
  1331. text-overflow: ellipsis;
  1332. }
  1333. .button
  1334. {
  1335. cursor: pointer;
  1336. }
  1337. .button:active, ul.element_links_actions li:active
  1338. {
  1339. background: #f6282d; /* Old browsers */
  1340. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  1341. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2MjgyZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjYyODJkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2M1MDYxNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjNTA2MTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  1342. background: -moz-linear-gradient(top, #f6282d 0%, #f6282d 0%, #c50617 100%, #c50617 100%); /* FF3.6+ */
  1343. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f6282d), color-stop(0%,#f6282d), color-stop(100%,#c50617), color-stop(100%,#c50617)); /* Chrome,Safari4+ */
  1344. background: -webkit-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Chrome10+,Safari5.1+ */
  1345. background: -o-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Opera 11.10+ */
  1346. background: -ms-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* IE10+ */
  1347. background: linear-gradient(to bottom, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* W3C */
  1348. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6282d', endColorstr='#c50617',GradientType=0 ); /* IE6-8 */
  1349. }
  1350. div#tags_prompt_tag_favorites_form input.tag_prompt
  1351. {
  1352. width: 95%;
  1353. }
  1354. form[name="tag_favorites_form"] input.button
  1355. {
  1356. float: right;
  1357. margin-right: 11px;
  1358. margin-top: 5px;
  1359. }
  1360. form.changepassword label
  1361. {
  1362. width: 210px;
  1363. }
  1364. form.changepassword input[type="password"]
  1365. {
  1366. margin-bottom: 2px;
  1367. width: 388px;
  1368. }
  1369. form.changepassword input[type="submit"]
  1370. {
  1371. float: right;
  1372. margin-top: 5px;
  1373. margin-right: 7px;
  1374. }
  1375. form.changeemail label
  1376. {
  1377. width: 210px;
  1378. }
  1379. form.changeemail input[type="text"]
  1380. {
  1381. width: 388px;
  1382. }
  1383. form.changeemail input[type="submit"], form.privacy input[type="submit"]
  1384. {
  1385. float: right;
  1386. margin-top: 5px;
  1387. margin-right: 7px;
  1388. }
  1389. div#myaccount h2
  1390. {
  1391. cursor: pointer;
  1392. }
  1393. div#myaccount h2:hover
  1394. {
  1395. text-decoration: underline;
  1396. }
  1397. div.tag_proposition input.tag_prompt
  1398. {
  1399. width: 605px;
  1400. }
  1401. div.tag_proposition input.button
  1402. {
  1403. float: right;
  1404. margin-top: 5px;
  1405. margin-left: 5px;
  1406. }
  1407. li.element_view_propositions_link
  1408. {
  1409. padding-left: 2px;
  1410. padding-right: 2px;
  1411. padding-top: 1px;
  1412. }
  1413. div#results_search_form div.seachboxcontainer input
  1414. {
  1415. width: 570px;
  1416. }
  1417. div.display_more_elements
  1418. {
  1419. padding: 10px;
  1420. text-align: center;
  1421. }
  1422. div.element_embed div.jp-playlist ul
  1423. {
  1424. text-align: left;
  1425. }
  1426. div.reputation img
  1427. {
  1428. float: left;
  1429. margin: 4px;
  1430. margin-right: 8px;
  1431. margin-top: 8px;
  1432. }
  1433. p.show_info
  1434. {
  1435. margin-top: 0px;
  1436. }
  1437. div#presubscription
  1438. {
  1439. margin-top: 23px;
  1440. }
  1441. div#presubscription input[type="email"]
  1442. {
  1443. width: 253px;
  1444. }
  1445. div#presubscription input[type="submit"]
  1446. {
  1447. margin-top: 10px;
  1448. margin-right: 1px;
  1449. }
  1450. ul.element_thumb_actions li.score
  1451. {
  1452. color: black;
  1453. }
  1454. div#myaccount_preferences input[type="submit"]
  1455. {
  1456. float: right;
  1457. margin-right: 7px;
  1458. margin-top: 5px;
  1459. }
  1460. /* old isolated css files */
  1461. div.show_options {
  1462. float: right;
  1463. }
  1464. #container #group_add_link, #container #group_add_link_disabled, #container #group_add_close_link
  1465. {
  1466. font-size: 120%;
  1467. float: right;
  1468. }
  1469. /*
  1470. 1328276321_add_small.png
  1471. 1328276855_list-remove.png
  1472. 1328276953_clean.png */
  1473. div.show_options
  1474. {
  1475. float: right;
  1476. }
  1477. #container .follow_link
  1478. {
  1479. text-decoration: none;
  1480. width: 110px;
  1481. text-align: center;
  1482. }
  1483. /*#container a.following
  1484. {
  1485. background: -moz-linear-gradient(top, #08ec00 0%, #10d400 39%, #0a9800 100%);
  1486. background: -webkit-linear-gradient(top, #08ec00 0%, #10d400 39%, #0a9800 100%);
  1487. background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #08ec00), color-stop(0.39, #10d400), color-stop(1, #0a9800));
  1488. background: -o-linear-gradient(top, #08ec00 0%, #10d400 39%, #0a9800 100%);
  1489. background: -ms-linear-gradient(top, #08ec00 0%, #10d400 39%, #0a9800 100%);
  1490. background: linear-gradient(top, #08ec00 0%, #10d400 39%, #0a9800 100%);
  1491. border: 1px solid #0a9800;
  1492. color: white;
  1493. }
  1494. #container a.following:hover
  1495. {
  1496. background: -moz-linear-gradient(top, #ff1e00 0%, #e50600 35%, #bf0a00 100%);
  1497. background: -webkit-linear-gradient(top, #ff1e00 0%, #e50600 35%, #bf0a00 100%);
  1498. background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ff1e00), color-stop(0.35, #e50600), color-stop(1, #bf0a00));
  1499. background: -o-linear-gradient(top, #ff1e00 0%, #e50600 35%, #bf0a00 100%);
  1500. background: -ms-linear-gradient(top, #ff1e00 0%, #e50600 35%, #bf0a00 100%);
  1501. background: linear-gradient(top, #ff1e00 0%, #e50600 35%, #bf0a00 100%);
  1502. border: 1px solid #bf0a00;
  1503. text-decoration: none;
  1504. }*/
  1505. /*#container #element_add_link, #container #element_add_close_link
  1506. {
  1507. color: white;
  1508. font-size: 120%;
  1509. float: right;
  1510. }*/
  1511. /*#container #element_add_box
  1512. {
  1513. background-color: #e3f6fd;
  1514. padding: 20px;
  1515. }*/
  1516. #container div.select_network a
  1517. {
  1518. color: white;
  1519. }
  1520. div.select_network a.all_network
  1521. {
  1522. padding-left: 20px;
  1523. background-image: url(/bundles/muzichcore/img/1328191242_keyboard_layout.png);
  1524. background-repeat: no-repeat;
  1525. background-position: 2px 3px;
  1526. }
  1527. div.select_network a.my_network
  1528. {
  1529. padding-left: 20px;
  1530. background-image: url(/bundles/muzichcore/img/1328191129_edit_group.png);
  1531. background-repeat: no-repeat;
  1532. background-position: 2px 3px;
  1533. }
  1534. div.more_filters a.new_comments
  1535. {
  1536. margin-top: 5px;
  1537. padding-left: 20px;
  1538. background-image: url(/bundles/muzichcore/img/1332286007_comments_reply.png);
  1539. background-repeat: no-repeat;
  1540. background-position: 2px 3px;
  1541. }
  1542. div.more_filters a.new_favorites
  1543. {
  1544. margin-top: 5px;
  1545. padding-left: 20px;
  1546. background-image: url(/bundles/muzichcore/img/favorite.png);
  1547. background-repeat: no-repeat;
  1548. background-position: 2px 3px;
  1549. }
  1550. div.more_filters a.new_tags
  1551. {
  1552. margin-top: 5px;
  1553. padding-left: 20px;
  1554. background-image: url(/bundles/muzichcore/img/1333484018_rss-tag.png);
  1555. background-repeat: no-repeat;
  1556. background-position: 2px 3px;
  1557. }
  1558. div.more_filters a.new_comments img, div.more_filters a.new_favorites img, div.more_filters a.new_tags img
  1559. {
  1560. margin-bottom: -3px;
  1561. }
  1562. div.select_network a.active
  1563. {
  1564. background-color: #39c9cc
  1565. }
  1566. div.tags_prompt
  1567. {
  1568. margin-top: 5px;
  1569. }
  1570. p.group_description
  1571. {
  1572. font-size: 90%;
  1573. text-indent: 15px;
  1574. }
  1575. .hello
  1576. {
  1577. background-color: #f4f4f4;
  1578. padding: 30px;
  1579. }
  1580. .hello #login_box, .hello #registration_box
  1581. {
  1582. width: 525px;
  1583. margin-left: auto;
  1584. margin-right: auto;
  1585. background-color: #e3f6fd;
  1586. padding: 20px;
  1587. }
  1588. #login_box input[id="username"], #login_box input[id="password"]
  1589. {
  1590. width: 228px;
  1591. }
  1592. #login_box div.login
  1593. {
  1594. margin-top: 8px;
  1595. }
  1596. #login_box div.textcenter
  1597. {
  1598. margin-top: 12px;
  1599. }
  1600. /*#registration_link, #login_link
  1601. {
  1602. float: right;
  1603. font-size: 120%;
  1604. }*/
  1605. ul#moderate_tags li.tag
  1606. {
  1607. font-size: 115%;
  1608. }
  1609. ul#moderate_tags li.tag span.name
  1610. {
  1611. width: 350px;
  1612. }
  1613. ul#moderate_elements
  1614. {
  1615. margin-left: 0px;
  1616. }
  1617. ul#moderate_elements li.element
  1618. {
  1619. list-style: none;
  1620. background-color: #f0f0f0;
  1621. margin-top: 25px;
  1622. }
  1623. ul#moderate_elements div.controls
  1624. {
  1625. text-align: center;
  1626. font-size: 110%;
  1627. font-weight: bold;
  1628. }
  1629. #container .link_navigation
  1630. {
  1631. float: right;
  1632. font-weight: bold;
  1633. text-decoration: none;
  1634. color: black;
  1635. }
  1636. div#autoplay.popin_block
  1637. {
  1638. width: 500px;
  1639. }
  1640. div#helpbox
  1641. {
  1642. width: 500px;
  1643. }
  1644. div#helpbox h1
  1645. {
  1646. margin-top: 0px;
  1647. }
  1648. div#helpbox h2
  1649. {
  1650. margin-top: 10px;
  1651. margin-bottom: 10px;
  1652. }
  1653. a#autoplay_previous
  1654. {
  1655. float: left;
  1656. text-decoration: none;
  1657. margin-left: -120px;
  1658. margin-top: 25px;
  1659. }
  1660. a#autoplay_next
  1661. {
  1662. float: right;
  1663. text-decoration: none;
  1664. margin-right: -120px;
  1665. margin-top: 25px;
  1666. }
  1667. a#autoplay_previous, a#autoplay_next, a#autoplay_close, a#helpbox_close
  1668. {
  1669. background: #fff;
  1670. padding: 5px;
  1671. border: 10px solid #ddd;
  1672. z-index: 99999;
  1673. /*--Les différentes définitions de Box Shadow en CSS3--*/
  1674. -webkit-box-shadow: 0px 0px 20px #000;
  1675. -moz-box-shadow: 0px 0px 20px #000;
  1676. box-shadow: 0px 0px 20px #000;
  1677. /*--Coins arrondis en CSS3--*/
  1678. -webkit-border-radius: 10px;
  1679. -moz-border-radius: 10px;
  1680. border-radius: 10px;
  1681. }
  1682. a#autoplay_close, a#helpbox_close
  1683. {
  1684. float: left;
  1685. text-decoration: none;
  1686. margin-top: 130px;
  1687. margin-left: -110px;
  1688. z-index: 99;
  1689. }
  1690. a#helpbox_close
  1691. {
  1692. margin-top: 10px;
  1693. }
  1694. div#tourtip, div#tourControls
  1695. {
  1696. z-index: 999;
  1697. border: 10px solid #CD0B1A;
  1698. background: #fff;
  1699. }
  1700. div#tourtip
  1701. {
  1702. width: 450px;
  1703. }
  1704. div#tourtip h1, div#tourControls h1
  1705. {
  1706. font-size: 1.55em;
  1707. margin-top: 0;
  1708. }
  1709. div#tourControls a#tourEnd
  1710. {
  1711. margin-top: 10px;
  1712. float: right;
  1713. }
  1714. a.tag_prompt_tool
  1715. {
  1716. float: right;
  1717. margin-bottom: 0;
  1718. margin-left: 0px;
  1719. margin-top: 5px;
  1720. margin-right: 11px;
  1721. }
  1722. form#address_update input.intext
  1723. {
  1724. width: 90px;
  1725. }
  1726. div#form_add_thumb img
  1727. {
  1728. width: 100px;
  1729. height: 100px;
  1730. }
  1731. #know_more, #launch_tour
  1732. {
  1733. float: none;
  1734. margin-bottom: 16px;
  1735. margin-top: 0;
  1736. width: 269px;
  1737. }
  1738. div.helpbox_image_container
  1739. {
  1740. text-align: center;
  1741. }
  1742. div.helpbox_image_container img
  1743. {
  1744. border: 3px solid #DDDDDD;
  1745. }
  1746. #register_beta_closed
  1747. {
  1748. text-align: center;
  1749. padding: 15px;
  1750. font-weight: bold;
  1751. background-color: #F19191;
  1752. -webkit-border-radius: 5px;
  1753. -moz-border-radius: 5px;
  1754. border-radius: 5px;
  1755. }
  1756. .fotter_muzich_little{
  1757. font-size: 9px;
  1758. }
  1759. div.side_margin_top
  1760. {
  1761. margin-top: 25px;
  1762. }
  1763. p.accept_cgu
  1764. {
  1765. font-size: 11px;
  1766. }
  1767. li.user_name a
  1768. {
  1769. color: inherit;
  1770. }
  1771. li.user_name a:hover
  1772. {
  1773. text-decoration: underline;
  1774. }
  1775. div.myaccount_part.flashing
  1776. {
  1777. padding: 2px;
  1778. }
  1779. div.choose_password
  1780. {
  1781. text-align: center;
  1782. }
  1783. div.center
  1784. {
  1785. text-align: center;
  1786. }
  1787. div#email_not_confirmed_box input
  1788. {
  1789. margin: 10px;
  1790. }
  1791. div#email_not_confirmed_box p.info
  1792. {
  1793. font-style: italic;
  1794. }
  1795. span.message_success
  1796. {
  1797. font-weight: bold;
  1798. color: green;
  1799. }
  1800. span.message_error
  1801. {
  1802. font-weight: bold;
  1803. color: red;
  1804. }
  1805. div#helpbox input.tag_prompt
  1806. {
  1807. width: 480px;
  1808. }
  1809. div#helpbox input.button
  1810. {
  1811. float: right;
  1812. margin-right: 11px;
  1813. margin-top: 5px;
  1814. }
  1815. div#helpbox div.center input.button
  1816. {
  1817. float: none;
  1818. }
  1819. div#facebook_login
  1820. {
  1821. float: right;
  1822. margin-bottom: 0;
  1823. margin-right: 0;
  1824. margin-top: -5px;
  1825. }
  1826. div#login_box
  1827. {
  1828. margin-top: 23px;
  1829. }
  1830. ul.playlists ul.tags_cloud
  1831. {
  1832. margin-top: 5px;
  1833. margin-bottom: 5px;
  1834. }
  1835. ul.playlists ul.tags_cloud li
  1836. {
  1837. font-size: 11px;
  1838. font-weight: normal;
  1839. padding: 4px;
  1840. }
  1841. ul.playlist_elements
  1842. {
  1843. margin-left: 0px;
  1844. }
  1845. li.playlist_element div.actions, li.playlist div.actions
  1846. {
  1847. float: left;
  1848. margin-top: 4px;
  1849. }
  1850. li.playlist_element div.actions img.autoplay_off
  1851. {
  1852. margin-left: -5px;
  1853. }
  1854. li.playlist_element div.actions_right
  1855. {
  1856. float: right;
  1857. margin-top: 4px;
  1858. }
  1859. li.playlist_element div.actions a, li.playlist div.actions a
  1860. {
  1861. margin-left: -5px;
  1862. }
  1863. li.playlist_element div.actions a.drag
  1864. {
  1865. cursor: move;
  1866. }
  1867. li.playlist_element div.title
  1868. {
  1869. margin-left: 53px;
  1870. margin-top: 4px;
  1871. }
  1872. ul.playlist_elements li.playlist_element a
  1873. {
  1874. color: black;
  1875. }
  1876. ul.playlist_elements li.playlist_element
  1877. {
  1878. border-top: 1px solid #C8C8C8;
  1879. height: 27px;
  1880. list-style: none outside none;
  1881. background-color: #F8F8F8;
  1882. }
  1883. ul.playlist_elements li.playlist_element ul.elements li.element
  1884. {
  1885. border-top: none;
  1886. }
  1887. a.button img
  1888. {
  1889. float: left;
  1890. }
  1891. a.button span
  1892. {
  1893. float: left;
  1894. margin-top: 4px;
  1895. }
  1896. ul.playlists
  1897. {
  1898. margin-left: 0px;
  1899. margin-bottom: 10px;
  1900. }
  1901. ul.playlists li.playlist
  1902. {
  1903. border-top: 1px solid #C8C8C8;
  1904. list-style: none outside none;
  1905. background-color: #F8F8F8;
  1906. }
  1907. ul.playlists li.playlist a.title
  1908. {
  1909. color: black;
  1910. font-weight: bold;
  1911. font-size: 110%;
  1912. }
  1913. ul.playlists li.playlist a.title:hover
  1914. {
  1915. text-decoration: underline;
  1916. }
  1917. ul.playlists li.playlist ul.tags_cloud
  1918. {
  1919. margin-left: 25px;
  1920. }
  1921. li.playlist div.title
  1922. {
  1923. margin-left: 42px;
  1924. margin-top: 3px;
  1925. }
  1926. div.playlists_prompt
  1927. {
  1928. padding: 10px;
  1929. width: 375px;
  1930. background-color: #F8F8F8;
  1931. }
  1932. div.playlists_prompt h2
  1933. {
  1934. font-size: 1em;
  1935. margin-top: 7px;
  1936. }
  1937. div.playlists_prompt h2.nomargintop
  1938. {
  1939. margin-top: 0px;
  1940. }
  1941. div.playlists_prompt input.niceinput
  1942. {
  1943. font-size: 13px;
  1944. height: 23px;
  1945. }
  1946. div.playlists_prompt a.close_playlists_prompt
  1947. {
  1948. float: right;
  1949. margin-top: -5px;
  1950. margin-right: -5px;
  1951. }
  1952. ul.form-errors
  1953. {
  1954. margin-left: 10px;
  1955. }
  1956. ul.form-errors li
  1957. {
  1958. color: red;
  1959. list-style-type: none;
  1960. }
  1961. div.playlists_prompt ul.form-errors li
  1962. {
  1963. font-size: 85%;
  1964. }
  1965. p.solop
  1966. {
  1967. margin: 15px;
  1968. }
  1969. /*
  1970. *
  1971. *
  1972. *
  1973. */
  1974. @-webkit-keyframes clignote
  1975. {
  1976. 0%{box-shadow:0px 0px 10px #909090;}
  1977. 50%{box-shadow:0px 0px 2px #909090;}
  1978. 100%{box-shadow:0px 0px 10px #909090;}
  1979. }
  1980. @-moz-keyframes clignote
  1981. {
  1982. 0%{box-shadow:0px 0px 10px #909090;}
  1983. 50%{box-shadow:0px 0px 2px #909090;}
  1984. 100%{box-shadow:0px 0px 10px #909090;}
  1985. }
  1986. @-ms-keyframes clignote
  1987. {
  1988. 0%{box-shadow:0px 0px 10px #909090;}
  1989. 50%{box-shadow:0px 0px 2px #909090;}
  1990. 100%{box-shadow:0px 0px 10px #909090;}
  1991. }
  1992. @-o-keyframes clignote
  1993. {
  1994. 0%{box-shadow:0px 0px 10px #909090;}
  1995. 50%{box-shadow:0px 0px 2px #909090;}
  1996. 100%{box-shadow:0px 0px 10px #909090;}
  1997. }
  1998. @keyframes clignote
  1999. {
  2000. 0%{box-shadow:0px 0px 10px #909090;}
  2001. 50%{box-shadow:0px 0px 2px #909090;}
  2002. 100%{box-shadow:0px 0px 10px #909090;}
  2003. }
  2004. .flashing
  2005. {
  2006. font-weight: bold;
  2007. text-shadow: 0 1px 0 white;
  2008. border-radius: 3px;
  2009. padding: 5px 10px;
  2010. box-shadow:0px 0px 10px #909090;
  2011. -webkit-animation-name: clignote;
  2012. -webkit-animation-duration: 1s;
  2013. -webkit-animation-iteration-count:infinite;
  2014. -moz-animation-name: clignote;
  2015. -moz-animation-duration: 1s;
  2016. -moz-animation-iteration-count:infinite;
  2017. -ms-animation-name: clignote;
  2018. -ms-animation-duration: 1s;
  2019. -ms-animation-iteration-count:infinite;
  2020. -o-animation-name: clignote;
  2021. -o-animation-duration: 1s;
  2022. -o-animation-iteration-count:infinite;
  2023. animation-name: clignote;
  2024. animation-duration: 1s;
  2025. animation-iteration-count:infinite;
  2026. }