main.css 53KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514
  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. #tabs_tag_search_buttons
  712. {
  713. margin: 0;
  714. padding: 0;
  715. border-left: 1px solid #d3d3d3;
  716. border-top: 1px solid #d3d3d3;
  717. border-right: 1px solid #d3d3d3;
  718. float: left;
  719. margin-left: -1px;
  720. margin-top: -61px;
  721. font-weight: bold;
  722. -webkit-border-top-left-radius: 3px;
  723. -webkit-border-bottom-left-radius: 3px;
  724. -moz-border-radius-topleft: 3px;
  725. -moz-border-radius-bottomleft: 3px;
  726. border-top-left-radius: 3px;
  727. border-bottom-left-radius: 3px;
  728. -webkit-border-top-right-radius: 3px;
  729. -webkit-border-bottom-right-radius: 3px;
  730. -moz-border-radius-topright: 3px;
  731. -moz-border-radius-bottomright: 3px;
  732. border-top-right-radius: 3px;
  733. border-bottom-right-radius: 3px;
  734. }
  735. #tabs_tag_search_buttons a
  736. {
  737. color: black;
  738. }
  739. #tabs_tag_search_buttons li
  740. {
  741. list-style-type: none;
  742. display: inline;
  743. float: left;
  744. padding: 20px;
  745. background: #dddddd; /* Old browsers */
  746. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  747. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZGRkZGRkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2NhY2FjYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjYWNhY2EiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  748. background: -moz-linear-gradient(top, #dddddd 0%, #dddddd 0%, #cacaca 100%, #cacaca 100%); /* FF3.6+ */
  749. 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+ */
  750. background: -webkit-linear-gradient(top, #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* Chrome10+,Safari5.1+ */
  751. background: -o-linear-gradient(top, #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* Opera 11.10+ */
  752. background: -ms-linear-gradient(top, #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* IE10+ */
  753. background: linear-gradient(to bottom, #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* W3C */
  754. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#cacaca',GradientType=0 ); /* IE6-8 */
  755. }
  756. #tabs_tag_search_buttons li.selected
  757. {
  758. list-style-type: none;
  759. padding: 20px;
  760. background: #f3f3f3; /* Old browsers */
  761. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  762. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjNmM2YzIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2UyZTJlMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlMmUyZTIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  763. background: -moz-linear-gradient(top, #f3f3f3 0%, #f3f3f3 0%, #e2e2e2 100%, #e2e2e2 100%); /* FF3.6+ */
  764. 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+ */
  765. background: -webkit-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* Chrome10+,Safari5.1+ */
  766. background: -o-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* Opera 11.10+ */
  767. background: -ms-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* IE10+ */
  768. background: linear-gradient(to bottom, #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* W3C */
  769. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#e2e2e2',GradientType=0 ); /* IE6-8 */
  770. }
  771. #tabs_tag_search_buttons li:first-child
  772. {
  773. -webkit-box-shadow: -1px -1px 1px 1px rgba(0, 0, 0, 0.1);
  774. -moz-box-shadow: -1px -1px 1px 1px rgba(0, 0, 0, 0.1);
  775. box-shadow: -1px -1px 1px 1px rgba(0, 0, 0, 0.1);
  776. }
  777. #tabs_tag_search_buttons li:last-child
  778. {
  779. -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
  780. -moz-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
  781. box-shadow: 1px -1px 1px 1px rgba(0, 0, 0, 0.1);
  782. }
  783. #tabs_tag_search_buttons li div.dart
  784. {
  785. display: none;
  786. height: 16px;
  787. margin-left: 30px;
  788. margin-top: 6px;
  789. width: 30px;
  790. background: url("/img/icon_bigtag_choosed.png") no-repeat scroll 0 0 transparent;
  791. position: absolute;
  792. }
  793. #tabs_tag_search_buttons li.selected div.dart
  794. {
  795. display: block;
  796. }
  797. ul.tagbox a.close
  798. {
  799. background: url("/img/icon_close_red.png") repeat scroll 0 100% transparent;
  800. position: absolute;
  801. width: 11px;
  802. text-indent: -9999px;
  803. margin-left: 2px;
  804. }
  805. ul.tagbox li.tag
  806. {
  807. padding-right: 18px;
  808. }
  809. ul.tagbox li.tag, ul#favorite_tags li, ul.tags_cloud li
  810. {
  811. border-radius: 3px 3px 3px 3px;
  812. display: inline-block;
  813. font-size: 13px;
  814. font-weight: bold;
  815. line-height: 1;
  816. margin-bottom: 1px;
  817. margin-right: 3px;
  818. -moz-border-radius: 4px;
  819. -webkit-border-radius: 4px;
  820. -khtml-border-radius: 4px;
  821. border-radius: 4px;
  822. }
  823. ul.tagbox li.input {display:block; float:left;}
  824. ul.tagbox input:focus {
  825. border-color: #fff;
  826. }
  827. ul.tagbox input {
  828. width: 50px;
  829. margin: 0;
  830. border: 0;
  831. outline: 0;
  832. line-height:1.2;
  833. padding: 3px 0;
  834. font-size: 105%;
  835. }
  836. ul#favorite_tags li
  837. {
  838. margin-right: 0px;
  839. }
  840. #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
  841. {
  842. float: right;
  843. margin-top: -58px;
  844. padding: 15px;
  845. color: white;
  846. border: none;
  847. background: #f6282d; /* Old browsers */
  848. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  849. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2MjgyZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjYyODJkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2M1MDYxNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjNTA2MTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  850. background: -moz-linear-gradient(top, #f6282d 0%, #f6282d 0%, #c50617 100%, #c50617 100%); /* FF3.6+ */
  851. 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+ */
  852. background: -webkit-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Chrome10+,Safari5.1+ */
  853. background: -o-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Opera 11.10+ */
  854. background: -ms-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* IE10+ */
  855. background: linear-gradient(to bottom, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* W3C */
  856. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6282d', endColorstr='#c50617',GradientType=0 ); /* IE6-8 */
  857. }
  858. #registration_link, #login_link
  859. {
  860. margin-right: -112px;
  861. margin-top: -76px;
  862. }
  863. #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
  864. {
  865. margin-left: -5px;
  866. margin-right: 5px;
  867. margin-top: -1px;
  868. }
  869. #element_add_link.justtopright, #element_add_close_link.justtopright, #group_add_link.justtopright, #group_add_link_disabled.justtopright, #group_add_close_link.justtopright
  870. {
  871. margin-top: 0px;
  872. margin-right: 0px;
  873. }
  874. .top_tools
  875. {
  876. padding: 10px;
  877. margin-bottom: 10px;
  878. }
  879. form[name="search"]
  880. {
  881. margin-top: -5px;
  882. }
  883. form[name="search"] input[type="submit"]
  884. {
  885. float: right;
  886. height: 34px;
  887. margin-top: -55px;
  888. }
  889. .top_tools input.tag_prompt
  890. {
  891. text-align: center;
  892. width: 518px;
  893. }
  894. .niceinput
  895. {
  896. -webkit-box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  897. box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  898. height: 34px;
  899. -moz-border-radius: 4px;
  900. -webkit-border-radius: 4px;
  901. -khtml-border-radius: 4px;
  902. border-radius: 4px;
  903. border: medium none;
  904. padding-left: 10px;
  905. padding-right: 10px;
  906. }
  907. .nicetextbox
  908. {
  909. -webkit-box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  910. box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  911. height: 34px;
  912. -moz-border-radius: 4px;
  913. -webkit-border-radius: 4px;
  914. -khtml-border-radius: 4px;
  915. border-radius: 4px;
  916. border: medium none;
  917. padding: 10px;
  918. padding-right: 10px;
  919. }
  920. input:-moz-placeholder, textarea:-moz-placeholder {
  921. color: black;
  922. }
  923. input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  924. color: black;
  925. }
  926. a.elements_more div
  927. {
  928. height: 32px;
  929. width: 100%;
  930. padding: 0px;
  931. text-align: center;
  932. background-image: url("/img/more_result.png");
  933. background-repeat: no-repeat;
  934. padding-top: 30px;
  935. text-transform : uppercase;
  936. }
  937. a.elements_more
  938. {
  939. color: black;
  940. font-weight: bold;
  941. }
  942. a.elements_more:hover
  943. {
  944. color: black;
  945. }
  946. div#element_add_box
  947. {
  948. padding: 10px;
  949. }
  950. #element_add_box h2
  951. {
  952. margin-top: 0px;
  953. }
  954. div#form_add_first_part #element_add_url
  955. {
  956. height: 29px;
  957. width: 485px;
  958. }
  959. #tabs_tag_search_buttons a
  960. {
  961. padding-left: 5px;
  962. }
  963. #tabs_tag_search_buttons img
  964. {
  965. float: left;
  966. }
  967. .muzichlogodecored
  968. {
  969. background-image: url("/img/icon_minilogo_2.png");
  970. background-repeat: no-repeat;
  971. background-position: left center;
  972. }
  973. a#autoplay_launch
  974. {
  975. -moz-border-radius: 3px 3px 0px 0px;
  976. -webkit-border-radius: 3px 3px 0px 0px;
  977. -khtml-border-radius: 3px 3px 0px 0px;
  978. padding-bottom: 0px;
  979. border-bottom: none;
  980. margin-right: -4px;
  981. margin-top: -3px;
  982. }
  983. div#tags_prompt_add
  984. {
  985. width: 465px;
  986. }
  987. div#tags_prompt_add input.tag_prompt
  988. {
  989. width: 450px;
  990. }
  991. div#form_add_second_part table td
  992. {
  993. padding: 10px;
  994. }
  995. div#form_add_second_part input[type="submit"]
  996. {
  997. float: right;
  998. margin-top: -25px;
  999. }
  1000. div#footer
  1001. {
  1002. height: 104px;
  1003. width: 100%;
  1004. margin-top: 25px;
  1005. border-top: 4px solid #E51936;
  1006. background-color: #171717;
  1007. text-align: center;
  1008. position: absolute;
  1009. bottom:0;
  1010. }
  1011. div#footer_content
  1012. {
  1013. margin-left: auto;
  1014. margin-right: auto;
  1015. width: 980px;
  1016. color: #999999;
  1017. }
  1018. div#footer_content a
  1019. {
  1020. color: #999999;
  1021. }
  1022. div#footer_logo
  1023. {
  1024. line-height: 18px;
  1025. margin-top: 25px;
  1026. padding-left: 0;
  1027. padding-right: 40px;
  1028. text-align: left;
  1029. width: 191px;
  1030. float: left;
  1031. }
  1032. div#footer_logo img
  1033. {
  1034. float: left;
  1035. padding-right: 10px;
  1036. }
  1037. div#footer_logo_2
  1038. {
  1039. line-height: 18px;
  1040. margin-top: 25px;
  1041. padding-left: 0;
  1042. padding-right: 40px;
  1043. text-align: left;
  1044. width: 135px;
  1045. float: left;
  1046. }
  1047. div#footer_logo_2 img
  1048. {
  1049. float: none;
  1050. padding-right: 0px;
  1051. }
  1052. span.fotter_muzich_big
  1053. {
  1054. font-size: 22px;
  1055. font-weight: bold;
  1056. }
  1057. div#footer_content ul.footer_pages_links
  1058. {
  1059. float: left;
  1060. height: 74px;
  1061. margin-bottom: 0;
  1062. margin-top: 12px;
  1063. padding-top: 10px;
  1064. margin-left: 0;
  1065. padding-left: 32px;
  1066. width: 210px;
  1067. border-left: 1px solid #2F2F2F;
  1068. text-align: left;
  1069. }
  1070. div#footer_content ul.footer_pages_links li
  1071. {
  1072. list-style-image: url("/img/list_chip_red.png");
  1073. }
  1074. div.search_tag_list ul.search_tag_list
  1075. {
  1076. list-style-image: none;
  1077. padding:0;
  1078. margin:0;
  1079. list-style-type:none;
  1080. overflow: hidden;
  1081. }
  1082. div.search_tag_list ul.search_tag_list li
  1083. {
  1084. float: left;
  1085. margin-right: 4px;
  1086. margin-left: 4px;
  1087. margin-top: 2px;
  1088. margin-bottom: 2px;
  1089. padding: 2px 4px 2px 4px;
  1090. background-color: #d9f7ff;
  1091. border-radius: 4px;
  1092. -moz-border-radius: 4px;
  1093. -webkit-border-radius: 4px;
  1094. -webkit-box-shadow: #666 0px 2px 3px;
  1095. -moz-box-shadow: #666 0px 2px 3px;
  1096. box-shadow: #666 0px 2px 3px;
  1097. }
  1098. div.search_tag_list ul.search_tag_list li.new
  1099. {
  1100. font-weight: bold;
  1101. background: #e0e0e0;
  1102. color: black;
  1103. }
  1104. #container div.search_tag_list ul.search_tag_list li.new a
  1105. {
  1106. color: black;
  1107. }
  1108. #helpbox div.search_tag_list ul.search_tag_list li.new a
  1109. {
  1110. color: black;
  1111. }
  1112. div.search_tag_list ul.search_tag_list li:hover
  1113. {
  1114. background-color: #999999;
  1115. }
  1116. div.search_tag_list span.info
  1117. {
  1118. text-shadow: 1px 1px 1px #666;
  1119. font-weight: bold;
  1120. font-size: 17px;
  1121. }
  1122. #container ul.search_tag_list li a
  1123. {
  1124. color: #E7E7E7;
  1125. }
  1126. #container ul.search_tag_list li a:hover
  1127. {
  1128. text-decoration: none;
  1129. }
  1130. ul.search_tag_list li a
  1131. {
  1132. color: white;
  1133. }
  1134. div#search_tag_search a.more, div#search_tag_add a.more
  1135. {
  1136. color: black;
  1137. }
  1138. div#search_tag_search p.help
  1139. {
  1140. font-size: 11px;
  1141. font-style: italic;
  1142. }
  1143. .textcenter
  1144. {
  1145. text-align: center;
  1146. }
  1147. ul#form_add_prop_tags_api li
  1148. {
  1149. float: left;
  1150. list-style-type: none;
  1151. margin-right: 15px;
  1152. }
  1153. ul#form_add_prop_tags_api li:hover
  1154. {
  1155. text-decoration: underline;
  1156. }
  1157. ul.elements li.element.selected
  1158. {
  1159. background-color: #E7E7E7;
  1160. }
  1161. ul.elements li.element h2
  1162. {
  1163. margin-top: 0px;
  1164. }
  1165. ul.elements li.element fieldset
  1166. {
  1167. margin-bottom: 5px;
  1168. }
  1169. ul.elements li.element fieldset.edit_url label, ul.elements li.element fieldset.edit_name label, ul.elements li.element fieldset.edit_tags label
  1170. {
  1171. display: block;
  1172. float: left;
  1173. width: 80px;
  1174. font-size: 16px;
  1175. padding-top: 6px;
  1176. font-weight: bold;
  1177. }
  1178. ul.elements li.element fieldset.edit_tags label
  1179. {
  1180. float: left;
  1181. }
  1182. ul.elements li.element fieldset.edit_url input[type="text"], ul.elements li.element fieldset.edit_name input[type="text"]
  1183. {
  1184. width: 520px;
  1185. font-size: 100%;
  1186. height: 30px;
  1187. }
  1188. ul.elements li.element fieldset.edit_tags input.tag_prompt
  1189. {
  1190. width: 600px;
  1191. }
  1192. ul.elements li.element div.inputs
  1193. {
  1194. text-align: right;
  1195. }
  1196. div.no_elements
  1197. {
  1198. text-align: center;
  1199. }
  1200. ul#autoplay_element
  1201. {
  1202. margin: 0px;
  1203. padding: 0px;
  1204. }
  1205. ul#autoplay_element li, ul.elements li
  1206. {
  1207. list-style-type: none;
  1208. }
  1209. ul.tagbox {
  1210. cursor: text;
  1211. border: none;
  1212. overflow: hidden;
  1213. padding: 0 0 1px 3px;
  1214. margin-left: 0px;
  1215. }
  1216. ul.tagbox li {
  1217. margin:0;
  1218. }
  1219. ul#favorite_tags, ul.tags_cloud
  1220. {
  1221. padding:0;
  1222. margin-top:10px;
  1223. margin-bottom: 10px;
  1224. margin-left: 0px;
  1225. list-style-type:none;
  1226. }
  1227. ul#favorite_tags li a, ul.tags_cloud li a
  1228. {
  1229. color: white;
  1230. }
  1231. ul#favorite_tags li.list_length_big a
  1232. {
  1233. font-size: 16px;
  1234. padding-top: 2px;
  1235. padding-bottom: 2px;
  1236. }
  1237. ul#favorite_tags li.list_length_medium a
  1238. {
  1239. font-size: 15px;
  1240. padding-top: 3px;
  1241. padding-bottom: 3px;
  1242. }
  1243. ul#favorite_tags li a.active
  1244. {
  1245. color: #999999;
  1246. }
  1247. ul#favorite_tags li a.highlight
  1248. {
  1249. color: #E51936;
  1250. }
  1251. ul#favorite_tags li a.highlight.active
  1252. {
  1253. color: #999999;
  1254. }
  1255. input#element_add_name
  1256. {
  1257. width: 450px;
  1258. }
  1259. .darkbutton {
  1260. background-color: #585454;
  1261. padding: 8px 8px 6px 6px;
  1262. border: 1px solid black;
  1263. text-transform : uppercase;
  1264. font-size: 70%;
  1265. font-weight: bold;
  1266. background: none;
  1267. background-color: #555;
  1268. box-shadow: 0 1px 1px 0 #696465 inset;
  1269. color: white;
  1270. }
  1271. div.top_tools div.show_options
  1272. {
  1273. float: right;
  1274. padding: 10px;
  1275. }
  1276. div.show_options a
  1277. {
  1278. color: white;
  1279. }
  1280. .nicelabels label
  1281. {
  1282. display: block;
  1283. float: left;
  1284. font-size: 16px;
  1285. font-weight: bold;
  1286. padding-top: 6px;
  1287. width: 100px;
  1288. }
  1289. div#group_add_box label
  1290. {
  1291. width: 110px;
  1292. }
  1293. div#group_add_box input#group_name
  1294. {
  1295. width: 488px;
  1296. }
  1297. div#group_add_box textarea#group_description
  1298. {
  1299. width: 487px;
  1300. height: 85px;
  1301. }
  1302. div#group_add_box input.tag_prompt
  1303. {
  1304. width: 96%;
  1305. }
  1306. div.alignright
  1307. {
  1308. text-align: right;
  1309. }
  1310. div#group_add_box input[type="submit"]
  1311. {
  1312. margin-top: 10px;
  1313. }
  1314. div#registration_box input.niceinput
  1315. {
  1316. width: 250px;
  1317. }
  1318. div#registration_box label
  1319. {
  1320. width: 70px;
  1321. }
  1322. div#registration_box input[type="submit"]
  1323. {
  1324. float: right;
  1325. }
  1326. div#registration_box div.field
  1327. {
  1328. margin-bottom: 5px;
  1329. }
  1330. .mainbox_start input.tag_prompt
  1331. {
  1332. width: 96%;
  1333. }
  1334. .mainbox_start input[type="submit"]
  1335. {
  1336. float: right;
  1337. margin-right: 7px;
  1338. margin-top: 10px;
  1339. }
  1340. div.global_search_results
  1341. {
  1342. margin-top: 10px;
  1343. }
  1344. div#add_url_title, div.element_title
  1345. {
  1346. width: 510px;
  1347. font-weight: bold;
  1348. font-size: 15px;
  1349. white-space: nowrap;
  1350. overflow: hidden;
  1351. text-overflow: ellipsis;
  1352. }
  1353. .button
  1354. {
  1355. cursor: pointer;
  1356. }
  1357. .button:active, ul.element_links_actions li:active
  1358. {
  1359. background: #f6282d; /* Old browsers */
  1360. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  1361. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2MjgyZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjYyODJkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2M1MDYxNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjNTA2MTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  1362. background: -moz-linear-gradient(top, #f6282d 0%, #f6282d 0%, #c50617 100%, #c50617 100%); /* FF3.6+ */
  1363. 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+ */
  1364. background: -webkit-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Chrome10+,Safari5.1+ */
  1365. background: -o-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Opera 11.10+ */
  1366. background: -ms-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* IE10+ */
  1367. background: linear-gradient(to bottom, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* W3C */
  1368. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6282d', endColorstr='#c50617',GradientType=0 ); /* IE6-8 */
  1369. }
  1370. div#tags_prompt_tag_favorites_form input.tag_prompt
  1371. {
  1372. width: 95%;
  1373. }
  1374. form[name="tag_favorites_form"] input.button
  1375. {
  1376. float: right;
  1377. margin-right: 11px;
  1378. margin-top: 5px;
  1379. }
  1380. form.changepassword label
  1381. {
  1382. width: 210px;
  1383. }
  1384. form.changepassword input[type="password"]
  1385. {
  1386. margin-bottom: 2px;
  1387. width: 388px;
  1388. }
  1389. form.changepassword input[type="submit"]
  1390. {
  1391. float: right;
  1392. margin-top: 5px;
  1393. margin-right: 7px;
  1394. }
  1395. form.changeemail label
  1396. {
  1397. width: 210px;
  1398. }
  1399. form.changeemail input[type="text"]
  1400. {
  1401. width: 388px;
  1402. }
  1403. form.changeemail input[type="submit"], form.privacy input[type="submit"], form.delete input[type="submit"]
  1404. {
  1405. float: right;
  1406. margin-top: 5px;
  1407. margin-right: 7px;
  1408. }
  1409. div#myaccount h2
  1410. {
  1411. cursor: pointer;
  1412. }
  1413. div#myaccount h2:hover
  1414. {
  1415. text-decoration: underline;
  1416. }
  1417. div.tag_proposition input.tag_prompt
  1418. {
  1419. width: 605px;
  1420. }
  1421. div.tag_proposition input.button
  1422. {
  1423. float: right;
  1424. margin-top: 5px;
  1425. margin-left: 5px;
  1426. }
  1427. li.element_view_propositions_link
  1428. {
  1429. padding-left: 2px;
  1430. padding-right: 2px;
  1431. padding-top: 1px;
  1432. }
  1433. div#results_search_form div.seachboxcontainer input
  1434. {
  1435. width: 570px;
  1436. }
  1437. div.display_more_elements
  1438. {
  1439. padding: 10px;
  1440. text-align: center;
  1441. }
  1442. div.element_embed div.jp-playlist ul
  1443. {
  1444. text-align: left;
  1445. }
  1446. div.reputation img
  1447. {
  1448. float: left;
  1449. margin: 4px;
  1450. margin-right: 8px;
  1451. margin-top: 8px;
  1452. }
  1453. p.show_info
  1454. {
  1455. margin-top: 0px;
  1456. }
  1457. div#presubscription
  1458. {
  1459. margin-top: 23px;
  1460. }
  1461. div#presubscription input[type="email"]
  1462. {
  1463. width: 253px;
  1464. }
  1465. div#presubscription input[type="submit"]
  1466. {
  1467. margin-top: 10px;
  1468. margin-right: 1px;
  1469. }
  1470. ul.element_thumb_actions li.score
  1471. {
  1472. color: black;
  1473. }
  1474. div#myaccount_preferences input[type="submit"]
  1475. {
  1476. float: right;
  1477. margin-right: 7px;
  1478. margin-top: 5px;
  1479. }
  1480. /* old isolated css files */
  1481. div.show_options {
  1482. float: right;
  1483. }
  1484. #container #group_add_link, #container #group_add_link_disabled, #container #group_add_close_link
  1485. {
  1486. font-size: 120%;
  1487. float: right;
  1488. }
  1489. /*
  1490. 1328276321_add_small.png
  1491. 1328276855_list-remove.png
  1492. 1328276953_clean.png */
  1493. div.show_options
  1494. {
  1495. float: right;
  1496. }
  1497. #container .follow_link
  1498. {
  1499. text-decoration: none;
  1500. width: 110px;
  1501. text-align: center;
  1502. }
  1503. /*#container a.following
  1504. {
  1505. background: -moz-linear-gradient(top, #08ec00 0%, #10d400 39%, #0a9800 100%);
  1506. background: -webkit-linear-gradient(top, #08ec00 0%, #10d400 39%, #0a9800 100%);
  1507. background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #08ec00), color-stop(0.39, #10d400), color-stop(1, #0a9800));
  1508. background: -o-linear-gradient(top, #08ec00 0%, #10d400 39%, #0a9800 100%);
  1509. background: -ms-linear-gradient(top, #08ec00 0%, #10d400 39%, #0a9800 100%);
  1510. background: linear-gradient(top, #08ec00 0%, #10d400 39%, #0a9800 100%);
  1511. border: 1px solid #0a9800;
  1512. color: white;
  1513. }
  1514. #container a.following:hover
  1515. {
  1516. background: -moz-linear-gradient(top, #ff1e00 0%, #e50600 35%, #bf0a00 100%);
  1517. background: -webkit-linear-gradient(top, #ff1e00 0%, #e50600 35%, #bf0a00 100%);
  1518. background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ff1e00), color-stop(0.35, #e50600), color-stop(1, #bf0a00));
  1519. background: -o-linear-gradient(top, #ff1e00 0%, #e50600 35%, #bf0a00 100%);
  1520. background: -ms-linear-gradient(top, #ff1e00 0%, #e50600 35%, #bf0a00 100%);
  1521. background: linear-gradient(top, #ff1e00 0%, #e50600 35%, #bf0a00 100%);
  1522. border: 1px solid #bf0a00;
  1523. text-decoration: none;
  1524. }*/
  1525. /*#container #element_add_link, #container #element_add_close_link
  1526. {
  1527. color: white;
  1528. font-size: 120%;
  1529. float: right;
  1530. }*/
  1531. /*#container #element_add_box
  1532. {
  1533. background-color: #e3f6fd;
  1534. padding: 20px;
  1535. }*/
  1536. #container div.select_network a
  1537. {
  1538. color: white;
  1539. }
  1540. div.select_network a.all_network
  1541. {
  1542. padding-left: 20px;
  1543. background-image: url(/bundles/muzichcore/img/1328191242_keyboard_layout.png);
  1544. background-repeat: no-repeat;
  1545. background-position: 2px 3px;
  1546. }
  1547. div.select_network a.my_network
  1548. {
  1549. padding-left: 20px;
  1550. background-image: url(/bundles/muzichcore/img/1328191129_edit_group.png);
  1551. background-repeat: no-repeat;
  1552. background-position: 2px 3px;
  1553. }
  1554. div.more_filters a.new_comments
  1555. {
  1556. margin-top: 5px;
  1557. padding-left: 20px;
  1558. background-image: url(/bundles/muzichcore/img/1332286007_comments_reply.png);
  1559. background-repeat: no-repeat;
  1560. background-position: 2px 3px;
  1561. }
  1562. div.more_filters a.new_favorites
  1563. {
  1564. margin-top: 5px;
  1565. padding-left: 20px;
  1566. background-image: url(/bundles/muzichcore/img/favorite.png);
  1567. background-repeat: no-repeat;
  1568. background-position: 2px 3px;
  1569. }
  1570. div.more_filters a.new_tags
  1571. {
  1572. margin-top: 5px;
  1573. padding-left: 20px;
  1574. background-image: url(/bundles/muzichcore/img/1333484018_rss-tag.png);
  1575. background-repeat: no-repeat;
  1576. background-position: 2px 3px;
  1577. }
  1578. div.more_filters a.new_comments img, div.more_filters a.new_favorites img, div.more_filters a.new_tags img
  1579. {
  1580. margin-bottom: -3px;
  1581. }
  1582. div.select_network a.active
  1583. {
  1584. background-color: #39c9cc
  1585. }
  1586. div.tags_prompt
  1587. {
  1588. margin-top: 5px;
  1589. }
  1590. p.group_description
  1591. {
  1592. font-size: 90%;
  1593. text-indent: 15px;
  1594. }
  1595. .hello
  1596. {
  1597. background-color: #f4f4f4;
  1598. padding: 30px;
  1599. }
  1600. .hello #login_box, .hello #registration_box
  1601. {
  1602. width: 525px;
  1603. margin-left: auto;
  1604. margin-right: auto;
  1605. background-color: #e3f6fd;
  1606. padding: 20px;
  1607. }
  1608. #login_box input[id="username"], #login_box input[id="password"]
  1609. {
  1610. width: 228px;
  1611. }
  1612. #login_box div.login
  1613. {
  1614. margin-top: 8px;
  1615. }
  1616. #login_box div.textcenter
  1617. {
  1618. margin-top: 12px;
  1619. }
  1620. /*#registration_link, #login_link
  1621. {
  1622. float: right;
  1623. font-size: 120%;
  1624. }*/
  1625. ul#moderate_tags li.tag
  1626. {
  1627. font-size: 115%;
  1628. }
  1629. ul#moderate_tags li.tag span.name
  1630. {
  1631. width: 350px;
  1632. }
  1633. ul#moderate_elements
  1634. {
  1635. margin-left: 0px;
  1636. }
  1637. ul#moderate_elements li.element
  1638. {
  1639. list-style: none;
  1640. background-color: #f0f0f0;
  1641. margin-top: 25px;
  1642. }
  1643. ul#moderate_elements div.controls
  1644. {
  1645. text-align: center;
  1646. font-size: 110%;
  1647. font-weight: bold;
  1648. }
  1649. #container .link_navigation
  1650. {
  1651. float: right;
  1652. font-weight: bold;
  1653. text-decoration: none;
  1654. color: black;
  1655. }
  1656. div#autoplay.popin_block
  1657. {
  1658. width: 500px;
  1659. }
  1660. div#helpbox
  1661. {
  1662. width: 500px;
  1663. }
  1664. div#helpbox h1
  1665. {
  1666. margin-top: 0px;
  1667. }
  1668. div#helpbox h2
  1669. {
  1670. margin-top: 10px;
  1671. margin-bottom: 10px;
  1672. }
  1673. a#autoplay_previous
  1674. {
  1675. float: left;
  1676. text-decoration: none;
  1677. margin-left: -120px;
  1678. margin-top: 25px;
  1679. }
  1680. a#autoplay_next
  1681. {
  1682. float: right;
  1683. text-decoration: none;
  1684. margin-right: -120px;
  1685. margin-top: 25px;
  1686. }
  1687. a#autoplay_previous, a#autoplay_next, a#autoplay_close, a#helpbox_close
  1688. {
  1689. background: #fff;
  1690. padding: 5px;
  1691. border: 10px solid #ddd;
  1692. z-index: 99999;
  1693. /*--Les différentes définitions de Box Shadow en CSS3--*/
  1694. -webkit-box-shadow: 0px 0px 20px #000;
  1695. -moz-box-shadow: 0px 0px 20px #000;
  1696. box-shadow: 0px 0px 20px #000;
  1697. /*--Coins arrondis en CSS3--*/
  1698. -webkit-border-radius: 10px;
  1699. -moz-border-radius: 10px;
  1700. border-radius: 10px;
  1701. }
  1702. a#autoplay_close, a#helpbox_close
  1703. {
  1704. float: left;
  1705. text-decoration: none;
  1706. margin-top: 130px;
  1707. margin-left: -110px;
  1708. z-index: 99;
  1709. }
  1710. a#helpbox_close
  1711. {
  1712. margin-top: 10px;
  1713. }
  1714. div#tourtip, div#tourControls
  1715. {
  1716. z-index: 999;
  1717. border: 10px solid #CD0B1A;
  1718. background: #fff;
  1719. }
  1720. div#tourtip
  1721. {
  1722. width: 450px;
  1723. }
  1724. div#tourtip h1, div#tourControls h1
  1725. {
  1726. font-size: 1.55em;
  1727. margin-top: 0;
  1728. }
  1729. div#tourControls a#tourEnd
  1730. {
  1731. margin-top: 10px;
  1732. float: right;
  1733. }
  1734. a.tag_prompt_tool
  1735. {
  1736. float: right;
  1737. margin-bottom: 0;
  1738. margin-left: 0px;
  1739. margin-top: 5px;
  1740. margin-right: 11px;
  1741. }
  1742. form#address_update input.intext
  1743. {
  1744. width: 90px;
  1745. }
  1746. div#form_add_thumb img
  1747. {
  1748. width: 100px;
  1749. height: 100px;
  1750. }
  1751. #know_more, #launch_tour
  1752. {
  1753. float: none;
  1754. margin-bottom: 16px;
  1755. margin-top: 0;
  1756. width: 269px;
  1757. }
  1758. div.helpbox_image_container
  1759. {
  1760. text-align: center;
  1761. }
  1762. div.helpbox_image_container img
  1763. {
  1764. border: 3px solid #DDDDDD;
  1765. }
  1766. #register_beta_closed
  1767. {
  1768. text-align: center;
  1769. padding: 15px;
  1770. font-weight: bold;
  1771. background-color: #F19191;
  1772. -webkit-border-radius: 5px;
  1773. -moz-border-radius: 5px;
  1774. border-radius: 5px;
  1775. }
  1776. .fotter_muzich_little{
  1777. font-size: 9px;
  1778. }
  1779. div.side_margin_top
  1780. {
  1781. margin-top: 25px;
  1782. }
  1783. p.accept_cgu
  1784. {
  1785. font-size: 11px;
  1786. }
  1787. li.user_name a
  1788. {
  1789. color: inherit;
  1790. }
  1791. li.user_name a:hover
  1792. {
  1793. text-decoration: underline;
  1794. }
  1795. div.myaccount_part.flashing
  1796. {
  1797. padding: 2px;
  1798. }
  1799. div.choose_password
  1800. {
  1801. text-align: center;
  1802. }
  1803. div.center
  1804. {
  1805. text-align: center;
  1806. }
  1807. div#email_not_confirmed_box input
  1808. {
  1809. margin: 10px;
  1810. }
  1811. div#email_not_confirmed_box p.info
  1812. {
  1813. font-style: italic;
  1814. }
  1815. span.message_success
  1816. {
  1817. font-weight: bold;
  1818. color: green;
  1819. }
  1820. span.message_error
  1821. {
  1822. font-weight: bold;
  1823. color: red;
  1824. }
  1825. div#helpbox input.tag_prompt
  1826. {
  1827. width: 480px;
  1828. }
  1829. div#helpbox input.button
  1830. {
  1831. float: right;
  1832. margin-right: 11px;
  1833. margin-top: 5px;
  1834. }
  1835. div#helpbox div.center input.button
  1836. {
  1837. float: none;
  1838. }
  1839. div#facebook_login
  1840. {
  1841. float: right;
  1842. margin-bottom: 0;
  1843. margin-right: 0;
  1844. margin-top: -5px;
  1845. }
  1846. div#login_box
  1847. {
  1848. margin-top: 23px;
  1849. }
  1850. ul.playlists ul.tags_cloud
  1851. {
  1852. margin-top: 5px;
  1853. margin-bottom: 5px;
  1854. }
  1855. ul.playlists ul.tags_cloud li
  1856. {
  1857. font-size: 11px;
  1858. font-weight: normal;
  1859. padding: 4px;
  1860. }
  1861. ul.playlist_elements
  1862. {
  1863. margin-left: 0px;
  1864. }
  1865. li.playlist_element div.actions, li.playlist div.actions
  1866. {
  1867. float: left;
  1868. margin-top: 4px;
  1869. }
  1870. li.playlist_element div.actions img.autoplay_off
  1871. {
  1872. margin-left: -5px;
  1873. }
  1874. li.playlist_element div.actions_right
  1875. {
  1876. float: right;
  1877. margin-top: 4px;
  1878. }
  1879. li.playlist_element div.actions a, li.playlist div.actions a
  1880. {
  1881. margin-left: -5px;
  1882. }
  1883. li.playlist_element div.actions a.drag
  1884. {
  1885. cursor: move;
  1886. }
  1887. li.playlist_element div.title
  1888. {
  1889. margin-left: 53px;
  1890. margin-top: 4px;
  1891. }
  1892. ul.playlist_elements li.playlist_element a
  1893. {
  1894. color: black;
  1895. }
  1896. ul.playlist_elements li.playlist_element
  1897. {
  1898. border-top: 1px solid #C8C8C8;
  1899. height: 27px;
  1900. list-style: none outside none;
  1901. background-color: #F8F8F8;
  1902. }
  1903. ul.playlist_elements li.playlist_element ul.elements li.element
  1904. {
  1905. border-top: none;
  1906. }
  1907. a.button img
  1908. {
  1909. float: left;
  1910. }
  1911. a.button span
  1912. {
  1913. float: left;
  1914. margin-top: 4px;
  1915. }
  1916. ul.playlists
  1917. {
  1918. margin-left: 0px;
  1919. margin-bottom: 10px;
  1920. }
  1921. ul.playlists li.playlist
  1922. {
  1923. border-top: 1px solid #C8C8C8;
  1924. list-style: none outside none;
  1925. background-color: #F8F8F8;
  1926. }
  1927. ul.playlists li.playlist a.title
  1928. {
  1929. color: black;
  1930. font-weight: bold;
  1931. font-size: 110%;
  1932. }
  1933. ul.playlists li.playlist a.title:hover
  1934. {
  1935. text-decoration: underline;
  1936. }
  1937. ul.playlists li.playlist ul.tags_cloud
  1938. {
  1939. margin-left: 25px;
  1940. }
  1941. li.playlist div.title
  1942. {
  1943. margin-left: 42px;
  1944. margin-top: 3px;
  1945. }
  1946. div.playlists_prompt
  1947. {
  1948. padding: 10px;
  1949. width: 375px;
  1950. background-color: #F8F8F8;
  1951. }
  1952. div.playlists_prompt h2
  1953. {
  1954. font-size: 1em;
  1955. margin-top: 7px;
  1956. }
  1957. div.playlists_prompt h2.nomargintop
  1958. {
  1959. margin-top: 0px;
  1960. }
  1961. div.playlists_prompt input.niceinput
  1962. {
  1963. font-size: 13px;
  1964. height: 23px;
  1965. }
  1966. div.playlists_prompt a.close_playlists_prompt
  1967. {
  1968. float: right;
  1969. margin-top: -5px;
  1970. margin-right: -5px;
  1971. }
  1972. ul.form-errors
  1973. {
  1974. margin-left: 10px;
  1975. }
  1976. ul.form-errors li
  1977. {
  1978. color: red;
  1979. list-style-type: none;
  1980. }
  1981. div.playlists_prompt ul.form-errors li
  1982. {
  1983. font-size: 85%;
  1984. }
  1985. p.solop
  1986. {
  1987. margin: 15px;
  1988. }
  1989. div.tags_proposition_view
  1990. {
  1991. padding: 10px;
  1992. margin: 5px;
  1993. margin-top: 10px;
  1994. /*--Les différentes définitions de Box Shadow en CSS3--*/
  1995. -webkit-box-shadow: 0px 0px 6px #999999;
  1996. -moz-box-shadow: 0px 0px 6px #999999;
  1997. box-shadow: 0px 0px 6px #999999;
  1998. /*--Coins arrondis en CSS3--*/
  1999. -webkit-border-radius: 5px;
  2000. -moz-border-radius: 5px;
  2001. border-radius: 5px;
  2002. }
  2003. div.tags_proposition_view a.darkbutton
  2004. {
  2005. margin: 2px;
  2006. padding: 6px 6px 4px 4px;
  2007. }
  2008. /*
  2009. *
  2010. *
  2011. *
  2012. */
  2013. @-webkit-keyframes clignote
  2014. {
  2015. 0%{box-shadow:0px 0px 10px #909090;}
  2016. 50%{box-shadow:0px 0px 2px #909090;}
  2017. 100%{box-shadow:0px 0px 10px #909090;}
  2018. }
  2019. @-moz-keyframes clignote
  2020. {
  2021. 0%{box-shadow:0px 0px 10px #909090;}
  2022. 50%{box-shadow:0px 0px 2px #909090;}
  2023. 100%{box-shadow:0px 0px 10px #909090;}
  2024. }
  2025. @-ms-keyframes clignote
  2026. {
  2027. 0%{box-shadow:0px 0px 10px #909090;}
  2028. 50%{box-shadow:0px 0px 2px #909090;}
  2029. 100%{box-shadow:0px 0px 10px #909090;}
  2030. }
  2031. @-o-keyframes clignote
  2032. {
  2033. 0%{box-shadow:0px 0px 10px #909090;}
  2034. 50%{box-shadow:0px 0px 2px #909090;}
  2035. 100%{box-shadow:0px 0px 10px #909090;}
  2036. }
  2037. @keyframes clignote
  2038. {
  2039. 0%{box-shadow:0px 0px 10px #909090;}
  2040. 50%{box-shadow:0px 0px 2px #909090;}
  2041. 100%{box-shadow:0px 0px 10px #909090;}
  2042. }
  2043. @-webkit-keyframes sidesticktop
  2044. {
  2045. 0%{top: auto;}
  2046. 50%{top: 0px;}
  2047. 100%{top: 25px}
  2048. }
  2049. @-moz-keyframes sidesticktop
  2050. {
  2051. 0%{top: auto;}
  2052. 50%{top: 0px;}
  2053. 100%{top: 25px}
  2054. }
  2055. @-ms-keyframes sidesticktop
  2056. {
  2057. 0%{top: auto;}
  2058. 50%{top: 0px;}
  2059. 100%{top: 25px}
  2060. }
  2061. @-o-keyframes sidesticktop
  2062. {
  2063. 0%{top: auto;}
  2064. 50%{top: 0px;}
  2065. 100%{top: 25px}
  2066. }
  2067. @keyframes sidesticktop
  2068. {
  2069. 0%{top: auto;}
  2070. 50%{top: 0px;}
  2071. 100%{top: 25px}
  2072. }
  2073. @-webkit-keyframes sidestickbottom
  2074. {
  2075. 0%{bottom: auto;}
  2076. 50%{bottom: 0px;}
  2077. 100%{bottom: 25px}
  2078. }
  2079. @-moz-keyframes sidestickbottom
  2080. {
  2081. 0%{bottom: auto;}
  2082. 50%{bottom: 0px;}
  2083. 100%{bottom: 25px}
  2084. }
  2085. @-ms-keyframes sidestickbottom
  2086. {
  2087. 0%{bottom: auto;}
  2088. 50%{bottom: 0px;}
  2089. 100%{bottom: 25px}
  2090. }
  2091. @-o-keyframes sidestickbottom
  2092. {
  2093. 0%{bottom: auto;}
  2094. 50%{bottom: 0px;}
  2095. 100%{bottom: 25px}
  2096. }
  2097. @keyframes sidestickbottom
  2098. {
  2099. 0%{bottom: auto;}
  2100. 50%{bottom: 0px;}
  2101. 100%{bottom: 25px}
  2102. }
  2103. .flashing
  2104. {
  2105. font-weight: bold;
  2106. text-shadow: 0 1px 0 white;
  2107. border-radius: 3px;
  2108. padding: 5px 10px;
  2109. box-shadow:0px 0px 10px #909090;
  2110. -webkit-animation-name: clignote;
  2111. -webkit-animation-duration: 1s;
  2112. -webkit-animation-iteration-count:infinite;
  2113. -moz-animation-name: clignote;
  2114. -moz-animation-duration: 1s;
  2115. -moz-animation-iteration-count:infinite;
  2116. -ms-animation-name: clignote;
  2117. -ms-animation-duration: 1s;
  2118. -ms-animation-iteration-count:infinite;
  2119. -o-animation-name: clignote;
  2120. -o-animation-duration: 1s;
  2121. -o-animation-iteration-count:infinite;
  2122. animation-name: clignote;
  2123. animation-duration: 1s;
  2124. animation-iteration-count:infinite;
  2125. }