main.css 55KB

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