main.css 53KB

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