main.css 39KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605
  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. header#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. header#header 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: 210px;
  54. width: 560px;
  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: 15px;
  98. padding: 0px;
  99. }
  100. #register_and_login li
  101. {
  102. float: left;
  103. display: inline;
  104. }
  105. #register_and_login li a
  106. {
  107. background-color: #585454;
  108. padding: 8px 8px 6px 6px;
  109. border: 1px solid black;
  110. text-transform : uppercase;
  111. font-size: 70%;
  112. font-weight: bold;
  113. background-color: #555;
  114. box-shadow: 0 1px 1px 0 #696465 inset;
  115. }
  116. #register_and_login li a.left
  117. {
  118. -webkit-border-top-left-radius: 5px;
  119. -webkit-border-bottom-left-radius: 5px;
  120. -moz-border-radius-topleft: 5px;
  121. -moz-border-radius-bottomleft: 5px;
  122. border-top-left-radius: 5px;
  123. border-bottom-left-radius: 5px;
  124. }
  125. #register_and_login li a.right
  126. {
  127. -webkit-border-top-right-radius: 5px;
  128. -webkit-border-bottom-right-radius: 5px;
  129. -moz-border-radius-topright: 5px;
  130. -moz-border-radius-bottomright: 5px;
  131. border-top-right-radius: 5px;
  132. border-bottom-right-radius: 5px;
  133. }
  134. /*#parameters
  135. {
  136. float: right;
  137. border-right-width: 0;
  138. margin-bottom: 0;
  139. margin-left: 0;
  140. margin-right: 0;
  141. margin-top: 8px;
  142. }*/
  143. /*#parameters li
  144. {
  145. float: left;
  146. display: inline;
  147. }
  148. #parameters li a
  149. {
  150. float: left;
  151. display: inline;
  152. font-size: 80%;
  153. font-weight: bold;
  154. }*/
  155. div#languages
  156. {
  157. float: right;
  158. height: 16px;
  159. overflow: hidden;
  160. padding: 2px;
  161. text-align: center;
  162. width: 15px;
  163. position: absolute;
  164. margin-left: 945px;
  165. margin-top: 7px;
  166. -moz-border-radius: 3px;
  167. -webkit-border-radius: 3px;
  168. -khtml-border-radius: 3px;
  169. border-radius: 3px;
  170. }
  171. div#languages a
  172. {
  173. color: white;
  174. font-weight: bold;
  175. font-size: 11px;
  176. }
  177. div#languages:hover
  178. {
  179. height: auto;
  180. background: #474747; /* Old browsers */
  181. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  182. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ3NDc0NyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNDc0NzQ3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIxMjEyMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMTIxMjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  183. background: -moz-linear-gradient(top, #474747 0%, #474747 0%, #212121 100%, #212121 100%); /* FF3.6+ */
  184. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#474747), color-stop(0%,#474747), color-stop(100%,#212121), color-stop(100%,#212121)); /* Chrome,Safari4+ */
  185. background: -webkit-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Chrome10+,Safari5.1+ */
  186. background: -o-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Opera 11.10+ */
  187. background: -ms-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* IE10+ */
  188. background: linear-gradient(to bottom, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* W3C */
  189. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474747', endColorstr='#212121',GradientType=0 ); /* IE6-8 */
  190. }
  191. #content
  192. {
  193. display: table;
  194. width: 980px;
  195. margin-right: auto;
  196. margin-left: auto;
  197. padding-bottom: 135px;
  198. }
  199. #main_content
  200. {
  201. position: relative;
  202. min-height: 100%;
  203. }
  204. #main
  205. {
  206. display: table-cell;
  207. width: 650px;
  208. padding-right: 30px;
  209. }
  210. #mainbox
  211. {
  212. margin-top: 25px;
  213. /*padding: 10px;*/
  214. padding-bottom: 23px;
  215. }
  216. #mainbox.mainbox_margintop
  217. {
  218. margin-top: 80px;
  219. }
  220. #mainbox.mainbox_nopadding
  221. {
  222. padding: 0px;
  223. }
  224. #mainbox.mainbox_padding
  225. {
  226. padding: 10px;
  227. }
  228. #mainbox h1
  229. {
  230. margin-top: 10px;
  231. }
  232. .nicebox
  233. {
  234. -webkit-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
  235. -moz-box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
  236. box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
  237. border: 1px solid #d3d3d3;
  238. }
  239. aside#sidebar
  240. {
  241. display: table-cell;
  242. width: 300px;
  243. vertical-align: top;
  244. }
  245. ul.elements
  246. {
  247. margin-top: 0px;
  248. margin-left: 0px;
  249. margin-bottom: 0px;
  250. }
  251. ul.elements li.element
  252. {
  253. background-color: #f8f8f8;
  254. border-top: 1px solid #c8c8c8;
  255. list-style-type: none;
  256. padding: 10px;
  257. }
  258. ul.elements li.element:last-child
  259. {
  260. }
  261. td.element_thumbnail
  262. {
  263. background-color: #d5d5d5;
  264. padding: 4px;
  265. text-align: center;
  266. width: 140px;
  267. }
  268. li.element img.element_thumbnail
  269. {
  270. border: 3px solid white;
  271. }
  272. .element_thumb_actions_container
  273. {
  274. }
  275. ul.element_thumb_actions
  276. {
  277. margin-top: 0;
  278. margin-bottom: 0;
  279. margin-left: auto;
  280. margin-right: auto;
  281. text-align: center;
  282. float: right;
  283. }
  284. ul.element_thumb_actions li
  285. {
  286. list-style-type: none;
  287. color: #787777;
  288. font-weight: bold;
  289. height: 20px;
  290. display: inline;
  291. float: left;
  292. padding-left: 9px;
  293. padding-right: 9px;
  294. }
  295. ul.element_thumb_actions li.score
  296. {
  297. padding-top: 2px;
  298. margin-top: 0px;
  299. border-right: 1px solid #bfbfbf;
  300. }
  301. ul.element_thumb_actions li.thumb
  302. {
  303. border-left: 1px solid #eeeeee;
  304. border-right: 1px solid #bfbfbf;
  305. }
  306. ul.element_thumb_actions li.star
  307. {
  308. padding-top: 2px;
  309. border-left: 1px solid #eeeeee;
  310. }
  311. ul.element_thumb_actions li.star a img
  312. {
  313. }
  314. ul.element_thumb_actions li.separator
  315. {
  316. }
  317. td.element_content
  318. {
  319. vertical-align: top;
  320. padding-top: 5px;
  321. padding-left: 15px;
  322. padding-bottom: 5px;
  323. padding-right: 0px;
  324. color: #404040;
  325. }
  326. td.element_content a
  327. {
  328. color: #b80c1a;
  329. }
  330. td.element_content .element_name a
  331. {
  332. color: #171717;
  333. font-weight: bold;
  334. font-size: 15px;
  335. }
  336. ul.element_links_actions
  337. {
  338. float: right;
  339. margin: 0px;
  340. padding: 0px;
  341. border: 1px solid #c7c7c7;
  342. height: 18px;
  343. padding: 0px 1px 1px;
  344. background: #f8f8f8; /* Old browsers */
  345. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  346. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y4ZjhmOCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjhmOGY4IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2Q3ZDdkNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkN2Q3ZDciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  347. background: -moz-linear-gradient(top, #f8f8f8 0%, #f8f8f8 0%, #d7d7d7 100%, #d7d7d7 100%); /* FF3.6+ */
  348. 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+ */
  349. background: -webkit-linear-gradient(top, #f8f8f8 0%,#f8f8f8 0%,#d7d7d7 100%,#d7d7d7 100%); /* Chrome10+,Safari5.1+ */
  350. background: -o-linear-gradient(top, #f8f8f8 0%,#f8f8f8 0%,#d7d7d7 100%,#d7d7d7 100%); /* Opera 11.10+ */
  351. background: -ms-linear-gradient(top, #f8f8f8 0%,#f8f8f8 0%,#d7d7d7 100%,#d7d7d7 100%); /* IE10+ */
  352. background: linear-gradient(to bottom, #f8f8f8 0%,#f8f8f8 0%,#d7d7d7 100%,#d7d7d7 100%); /* W3C */
  353. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#d7d7d7',GradientType=0 ); /* IE6-8 */
  354. -webkit-border-top-left-radius: 3px;
  355. -webkit-border-bottom-left-radius: 3px;
  356. -moz-border-radius-topleft: 3px;
  357. -moz-border-radius-bottomleft: 3px;
  358. border-top-left-radius: 3px;
  359. border-bottom-left-radius: 3px;
  360. -webkit-border-top-right-radius: 3px;
  361. -webkit-border-bottom-right-radius: 3px;
  362. -moz-border-radius-topright: 3px;
  363. -moz-border-radius-bottomright: 3px;
  364. border-top-right-radius: 3px;
  365. border-bottom-right-radius: 3px;
  366. }
  367. ul.element_links_actions li
  368. {
  369. list-style-type: none;
  370. display: inline;
  371. float: left;
  372. height: 18px;
  373. border-right: 1px solid #c7c7c7;
  374. border-left: 1px solid #ffffff;
  375. }
  376. ul.element_links_actions li:first-child
  377. {
  378. border-left: none;
  379. }
  380. ul.element_links_actions li:last-child
  381. {
  382. border-right: none;
  383. }
  384. .elements ul.element_tags
  385. {
  386. margin-top: 3px;
  387. margin-left: 0px;
  388. }
  389. .elements ul.element_tags li, ul#autoplay_element ul.element_tags li
  390. {
  391. display: inline;
  392. font-size: 90%;
  393. }
  394. ul.element_tags .button
  395. {
  396. padding: 2px 4px 2px 4px;
  397. font-size: 95%;
  398. }
  399. .button {
  400. display: inline-block;
  401. line-height: 1;
  402. padding: 4px 7px;
  403. font-weight: bold;
  404. -moz-border-radius: 3px;
  405. -webkit-border-radius: 3px;
  406. -khtml-border-radius: 3px;
  407. border-radius: 3px;
  408. border: 1px solid #2b82ad;
  409. text-transform : uppercase;
  410. border: 1px solid #b0b0b0;
  411. background: #f3f3f3; /* Old browsers */
  412. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  413. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjNmM2YzIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2Q1ZDVkNSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkNWQ1ZDUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  414. background: -moz-linear-gradient(top, #f3f3f3 0%, #f3f3f3 0%, #d5d5d5 100%, #d5d5d5 100%); /* FF3.6+ */
  415. 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+ */
  416. background: -webkit-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#d5d5d5 100%,#d5d5d5 100%); /* Chrome10+,Safari5.1+ */
  417. background: -o-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#d5d5d5 100%,#d5d5d5 100%); /* Opera 11.10+ */
  418. background: -ms-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#d5d5d5 100%,#d5d5d5 100%); /* IE10+ */
  419. background: linear-gradient(to bottom, #f3f3f3 0%,#f3f3f3 0%,#d5d5d5 100%,#d5d5d5 100%); /* W3C */
  420. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#d5d5d5',GradientType=0 ); /* IE6-8 */
  421. }
  422. a.button.element_tag, ul.tagbox li.tag, ul.search_tag_list li, ul#favorite_tags li
  423. {
  424. padding: 6px;
  425. border: none;
  426. background: #474747; /* Old browsers */
  427. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  428. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ3NDc0NyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNDc0NzQ3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIxMjEyMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMTIxMjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  429. background: -moz-linear-gradient(top, #474747 0%, #474747 0%, #212121 100%, #212121 100%); /* FF3.6+ */
  430. 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+ */
  431. background: -webkit-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Chrome10+,Safari5.1+ */
  432. background: -o-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Opera 11.10+ */
  433. background: -ms-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* IE10+ */
  434. background: linear-gradient(to bottom, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* W3C */
  435. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474747', endColorstr='#212121',GradientType=0 ); /* IE6-8 */
  436. }
  437. td.element_content li.element_tag a.button, ul.tagbox li.tag
  438. {
  439. color: #fff;
  440. text-decoration: none;
  441. text-transform : uppercase;
  442. }
  443. .button.active
  444. {
  445. background-color: #39C9CC;
  446. }
  447. li.element a.element_tag_large_for_fav_still
  448. {
  449. padding-right: 17px;
  450. }
  451. li.element a.tag_to_favorites, li.element img.tag_to_favorites
  452. {
  453. margin-left: -17px;
  454. margin-right: 4px;
  455. }
  456. img.tag_to_favorites
  457. {
  458. margin-bottom: -1px;
  459. }
  460. img.tag_add_to_favorites
  461. {
  462. margin-bottom: -1px;
  463. margin-left: 1px;
  464. }
  465. td.element_content a.display_comments, td.element_content a.add_comment, td.element_content a.hide_comments, div.comments a.add_comment
  466. {
  467. color: #404040;
  468. }
  469. div.comments form.add_comment textarea, div.comments form.edit_comment textarea
  470. {
  471. width: 75%;
  472. height: 48px;
  473. }
  474. div.comments form.add_comment div.buttons input, div.comments form.edit_comment div.buttons input
  475. {
  476. margin-top: 1px;
  477. margin-bottom: 1px;
  478. }
  479. aside#sidebar div.nicebox
  480. {
  481. background-color: #f5f6f6;
  482. margin-bottom: 18px;
  483. padding: 12px;
  484. }
  485. div#user_statusbox
  486. {
  487. margin-top: 25px;
  488. }
  489. div.user_score
  490. {
  491. float: left;
  492. padding-top: 4px;
  493. border: 1px solid #D3D3D3;
  494. background-color: white;
  495. text-align: center;
  496. width: 138px;
  497. }
  498. .blackgradiant
  499. {
  500. background: #474747; /* Old browsers */
  501. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  502. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ3NDc0NyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNDc0NzQ3IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzIxMjEyMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMyMTIxMjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  503. background: -moz-linear-gradient(top, #474747 0%, #474747 0%, #212121 100%, #212121 100%); /* FF3.6+ */
  504. 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+ */
  505. background: -webkit-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Chrome10+,Safari5.1+ */
  506. background: -o-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* Opera 11.10+ */
  507. background: -ms-linear-gradient(top, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* IE10+ */
  508. background: linear-gradient(to bottom, #474747 0%,#474747 0%,#212121 100%,#212121 100%); /* W3C */
  509. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474747', endColorstr='#212121',GradientType=0 ); /* IE6-8 */
  510. }
  511. div.user_avatar
  512. {
  513. height: 137px;
  514. padding-right: 1px;
  515. }
  516. div.user_score div.score
  517. {
  518. color: #f5f6f6;
  519. height: 29px;
  520. font-weight: bold;
  521. font-size: 18px;
  522. padding-top: 5px;
  523. margin-bottom: 4px;
  524. margin-left: 4px;
  525. margin-right: 4px;
  526. }
  527. ul.user_events_infos
  528. {
  529. margin: 0;
  530. padding: 0;
  531. margin-left: 150px;
  532. margin-top: 10px;
  533. width: 126px;
  534. }
  535. ul.user_events_infos li
  536. {
  537. list-style-type: none;
  538. height: 29px;
  539. font-weight: bold;
  540. border-bottom: 1px solid #c0c1c1;
  541. padding-top: 6px;
  542. vertical-align: middle;
  543. }
  544. ul.user_events_infos li img, ul.user_events_infos li span
  545. {
  546. float: left;
  547. }
  548. ul.user_events_infos li img
  549. {
  550. padding-right: 8px;
  551. }
  552. ul.user_events_infos li span
  553. {
  554. margin-top: 2px;
  555. }
  556. ul.user_events_infos li:first-child
  557. {
  558. padding-top: 0px;
  559. height: 25px;
  560. }
  561. ul.user_events_infos li:last-child
  562. {
  563. border-bottom: none;
  564. }
  565. ul.user_events_infos li.user_name
  566. {
  567. text-transform : uppercase;
  568. }
  569. div.seachboxcontainer
  570. {
  571. -webkit-box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  572. box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  573. height: 34px;
  574. -moz-border-radius: 4px;
  575. -webkit-border-radius: 4px;
  576. -khtml-border-radius: 4px;
  577. border-radius: 4px;
  578. }
  579. div.seachboxcontainer input
  580. {
  581. background: none;
  582. border: none;
  583. height: 34px;
  584. margin: 0;
  585. padding: 0;
  586. padding-left: 6px;
  587. width: 222px;
  588. }
  589. div.seachboxcontainer img
  590. {
  591. border-left: 1px solid #C4C0C0;
  592. float: right;
  593. margin-right: 8px;
  594. margin-top: 3px;
  595. padding-left: 5px;
  596. }
  597. ul.social_links
  598. {
  599. margin: 0px;
  600. padding: 0px;
  601. height: 35px;
  602. margin-left: 22px;
  603. }
  604. ul.social_links li
  605. {
  606. list-style-type: none;
  607. display: inline;
  608. float: left;
  609. padding-left: 10px;
  610. padding-right: 10px;
  611. border-left: 1px solid #E2E2E2;
  612. border-right: 1px solid #E2E2E2;
  613. }
  614. ul.social_links li:first-child, ul.social_links li:last-child
  615. {
  616. border: none;
  617. }
  618. aside#sidebar div#secondarymenu, aside#sidebar div#secondarymenu ul.secondarymenu, aside#sidebar div#secondarymenu ul.submenu
  619. {
  620. padding: 0;
  621. margin: 0;
  622. }
  623. div#secondarymenu ul.secondarymenu li
  624. {
  625. list-style-type: none;
  626. }
  627. div#secondarymenu ul.secondarymenu li.top_menu_element div
  628. {
  629. padding: 10px;
  630. }
  631. div#secondarymenu ul.secondarymenu li.top_menu_element a
  632. {
  633. color: white;
  634. text-transform : uppercase;
  635. font-weight: bold;
  636. }
  637. div#secondarymenu ul.submenu li.sub_menu_element
  638. {
  639. padding: 10px;
  640. padding-left: 20px;
  641. background-color: #f5f6f6;
  642. border-top: 1px solid #dadbdb;
  643. border-bottom: 1px solid #dadbdb;
  644. background: url("/img/icon_list_chip.png") no-repeat scroll 2% 50% transparent;
  645. }
  646. div#secondarymenu ul.submenu li.sub_menu_element:first-child
  647. {
  648. border-top: none;
  649. }
  650. div#secondarymenu ul.submenu li.sub_menu_element:last-child
  651. {
  652. border-bottom: none;
  653. }
  654. div#secondarymenu ul.submenu li.sub_menu_element a
  655. {
  656. color: black;
  657. text-transform : capitalize;
  658. font-weight: inherit;
  659. }
  660. div#secondarymenu ul.secondarymenu li.top_menu_element.close div.dart
  661. {
  662. background: url("/img/icon_dart_top.png") no-repeat;
  663. width: 15px;
  664. height: 15px;
  665. float: right;
  666. margin-top: 2px;
  667. padding: 0;
  668. }
  669. div#secondarymenu ul.secondarymenu li.top_menu_element.close ul.submenu
  670. {
  671. display: none;
  672. }
  673. div#secondarymenu ul.secondarymenu li.top_menu_element.open div.dart
  674. {
  675. background: url("/img/icon_dart_bottom.png") no-repeat scroll 95% 50% transparent;
  676. width: 15px;
  677. height: 15px;
  678. float: right;
  679. margin-top: 2px;
  680. padding: 0;
  681. }
  682. div#secondarymenu ul.secondarymenu li.top_menu_element.open ul.submenu
  683. {
  684. display: block;
  685. }
  686. #tabs_tag_search_buttons
  687. {
  688. margin: 0;
  689. padding: 0;
  690. border-left: 1px solid #d3d3d3;
  691. border-top: 1px solid #d3d3d3;
  692. border-right: 1px solid #d3d3d3;
  693. float: left;
  694. margin-left: -1px;
  695. margin-top: -61px;
  696. font-weight: bold;
  697. -webkit-border-top-left-radius: 3px;
  698. -webkit-border-bottom-left-radius: 3px;
  699. -moz-border-radius-topleft: 3px;
  700. -moz-border-radius-bottomleft: 3px;
  701. border-top-left-radius: 3px;
  702. border-bottom-left-radius: 3px;
  703. -webkit-border-top-right-radius: 3px;
  704. -webkit-border-bottom-right-radius: 3px;
  705. -moz-border-radius-topright: 3px;
  706. -moz-border-radius-bottomright: 3px;
  707. border-top-right-radius: 3px;
  708. border-bottom-right-radius: 3px;
  709. }
  710. #tabs_tag_search_buttons a
  711. {
  712. color: black;
  713. }
  714. #tabs_tag_search_buttons li
  715. {
  716. list-style-type: none;
  717. display: inline;
  718. float: left;
  719. padding: 20px;
  720. background: #dddddd; /* Old browsers */
  721. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  722. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RkZGRkZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZGRkZGRkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2NhY2FjYSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjYWNhY2EiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  723. background: -moz-linear-gradient(top, #dddddd 0%, #dddddd 0%, #cacaca 100%, #cacaca 100%); /* FF3.6+ */
  724. 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+ */
  725. background: -webkit-linear-gradient(top, #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* Chrome10+,Safari5.1+ */
  726. background: -o-linear-gradient(top, #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* Opera 11.10+ */
  727. background: -ms-linear-gradient(top, #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* IE10+ */
  728. background: linear-gradient(to bottom, #dddddd 0%,#dddddd 0%,#cacaca 100%,#cacaca 100%); /* W3C */
  729. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dddddd', endColorstr='#cacaca',GradientType=0 ); /* IE6-8 */
  730. }
  731. #tabs_tag_search_buttons li.selected
  732. {
  733. list-style-type: none;
  734. padding: 20px;
  735. background: #f3f3f3; /* Old browsers */
  736. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  737. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YzZjNmMyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjNmM2YzIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2UyZTJlMiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlMmUyZTIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  738. background: -moz-linear-gradient(top, #f3f3f3 0%, #f3f3f3 0%, #e2e2e2 100%, #e2e2e2 100%); /* FF3.6+ */
  739. 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+ */
  740. background: -webkit-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* Chrome10+,Safari5.1+ */
  741. background: -o-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* Opera 11.10+ */
  742. background: -ms-linear-gradient(top, #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* IE10+ */
  743. background: linear-gradient(to bottom, #f3f3f3 0%,#f3f3f3 0%,#e2e2e2 100%,#e2e2e2 100%); /* W3C */
  744. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#e2e2e2',GradientType=0 ); /* IE6-8 */
  745. }
  746. #tabs_tag_search_buttons li:first-child
  747. {
  748. -webkit-box-shadow: -1px -1px 1px 1px rgba(0, 0, 0, 0.1);
  749. -moz-box-shadow: -1px -1px 1px 1px rgba(0, 0, 0, 0.1);
  750. box-shadow: -1px -1px 1px 1px rgba(0, 0, 0, 0.1);
  751. }
  752. #tabs_tag_search_buttons li:last-child
  753. {
  754. -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
  755. -moz-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.1);
  756. box-shadow: 1px -1px 1px 1px rgba(0, 0, 0, 0.1);
  757. }
  758. #tabs_tag_search_buttons li div.dart
  759. {
  760. display: none;
  761. height: 16px;
  762. margin-left: 30px;
  763. margin-top: 6px;
  764. width: 30px;
  765. background: url("/img/icon_bigtag_choosed.png") no-repeat scroll 0 0 transparent;
  766. position: absolute;
  767. }
  768. #tabs_tag_search_buttons li.selected div.dart
  769. {
  770. display: block;
  771. }
  772. ul.tagbox a.close
  773. {
  774. background: url("/img/icon_close_red.png") repeat scroll 0 100% transparent;
  775. position: absolute;
  776. width: 11px;
  777. text-indent: -9999px;
  778. margin-left: 2px;
  779. }
  780. ul.tagbox li.tag
  781. {
  782. padding-right: 18px;
  783. }
  784. ul.tagbox li.tag, ul#favorite_tags li
  785. {
  786. border-radius: 3px 3px 3px 3px;
  787. display: inline-block;
  788. font-size: 13px;
  789. font-weight: bold;
  790. line-height: 1;
  791. margin-bottom: 1px;
  792. margin-right: 3px;
  793. -moz-border-radius: 4px;
  794. -webkit-border-radius: 4px;
  795. -khtml-border-radius: 4px;
  796. border-radius: 4px;
  797. }
  798. ul.tagbox li.input {display:block; float:left;}
  799. ul.tagbox input:focus {
  800. border-color: #fff;
  801. }
  802. ul.tagbox input {
  803. width: 50px;
  804. margin: 0;
  805. border: 0;
  806. outline: 0;
  807. line-height:1.2;
  808. padding: 3px 0;
  809. font-size: 105%;
  810. }
  811. ul#favorite_tags li
  812. {
  813. margin-right: 0px;
  814. }
  815. #element_add_link, #element_add_close_link, #group_add_link, #group_add_close_link, #registration_link, #login_link
  816. {
  817. float: right;
  818. margin-top: -58px;
  819. padding: 15px;
  820. color: white;
  821. border: none;
  822. background: #f6282d; /* Old browsers */
  823. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  824. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2MjgyZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjYyODJkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2M1MDYxNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjNTA2MTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  825. background: -moz-linear-gradient(top, #f6282d 0%, #f6282d 0%, #c50617 100%, #c50617 100%); /* FF3.6+ */
  826. 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+ */
  827. background: -webkit-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Chrome10+,Safari5.1+ */
  828. background: -o-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Opera 11.10+ */
  829. background: -ms-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* IE10+ */
  830. background: linear-gradient(to bottom, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* W3C */
  831. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6282d', endColorstr='#c50617',GradientType=0 ); /* IE6-8 */
  832. }
  833. #registration_link, #login_link
  834. {
  835. margin-right: -10px;
  836. margin-top: -68px;
  837. }
  838. #element_add_link img, #element_add_close_link img, #group_add_link img, #group_add_close_link img, #registration_link img, #login_link img
  839. {
  840. margin-bottom: -5px;
  841. margin-right: -5px;
  842. }
  843. #element_add_link.justtopright, #element_add_close_link.justtopright, #group_add_link.justtopright, #group_add_close_link.justtopright
  844. {
  845. margin-top: 0px;
  846. margin-right: 0px;
  847. }
  848. .top_tools
  849. {
  850. padding: 10px;
  851. margin-bottom: 10px;
  852. }
  853. form[name="search"]
  854. {
  855. margin-top: -5px;
  856. }
  857. form[name="search"] input[type="submit"]
  858. {
  859. float: right;
  860. height: 34px;
  861. margin-top: -55px;
  862. }
  863. .top_tools input.tag_prompt
  864. {
  865. text-align: center;
  866. width: 518px;
  867. }
  868. .niceinput
  869. {
  870. -webkit-box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  871. box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  872. height: 34px;
  873. -moz-border-radius: 4px;
  874. -webkit-border-radius: 4px;
  875. -khtml-border-radius: 4px;
  876. border-radius: 4px;
  877. border: medium none;
  878. padding-left: 10px;
  879. padding-right: 10px;
  880. }
  881. .nicetextbox
  882. {
  883. -webkit-box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  884. box-shadow: inset 0px 0px 2px 3px #c8c8c8;
  885. height: 34px;
  886. -moz-border-radius: 4px;
  887. -webkit-border-radius: 4px;
  888. -khtml-border-radius: 4px;
  889. border-radius: 4px;
  890. border: medium none;
  891. padding: 10px;
  892. padding-right: 10px;
  893. }
  894. input:-moz-placeholder, textarea:-moz-placeholder {
  895. color: black;
  896. }
  897. input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  898. color: black;
  899. }
  900. a.elements_more div
  901. {
  902. height: 32px;
  903. width: 100%;
  904. padding: 0px;
  905. text-align: center;
  906. background-image: url("/img/more_result.png");
  907. background-repeat: no-repeat;
  908. padding-top: 30px;
  909. text-transform : uppercase;
  910. }
  911. a.elements_more
  912. {
  913. color: black;
  914. font-weight: bold;
  915. }
  916. a.elements_more:hover
  917. {
  918. color: black;
  919. }
  920. div#element_add_box
  921. {
  922. padding: 10px;
  923. }
  924. #element_add_box h2
  925. {
  926. margin-top: 0px;
  927. }
  928. div#form_add_first_part #element_add_url
  929. {
  930. height: 29px;
  931. width: 485px;
  932. }
  933. #tabs_tag_search_buttons a
  934. {
  935. padding-left: 5px;
  936. }
  937. #tabs_tag_search_buttons img
  938. {
  939. float: left;
  940. }
  941. .muzichlogodecored
  942. {
  943. background-image: url("/img/icon_minilogo_2.png");
  944. background-repeat: no-repeat;
  945. background-position: left center;
  946. }
  947. a#autoplay_launch
  948. {
  949. -moz-border-radius: 3px 3px 0px 0px;
  950. -webkit-border-radius: 3px 3px 0px 0px;
  951. -khtml-border-radius: 3px 3px 0px 0px;
  952. padding-bottom: 0px;
  953. border-bottom: none;
  954. margin-right: -4px;
  955. margin-top: -3px;
  956. }
  957. div#tags_prompt_add
  958. {
  959. width: 465px;
  960. }
  961. div#tags_prompt_add input.tag_prompt
  962. {
  963. width: 450px;
  964. }
  965. div#form_add_second_part table td
  966. {
  967. padding: 10px;
  968. }
  969. div#form_add_second_part input[type="submit"]
  970. {
  971. float: right;
  972. margin-top: -25px;
  973. }
  974. div#footer
  975. {
  976. height: 104px;
  977. width: 100%;
  978. margin-top: 25px;
  979. border-top: 4px solid #E51936;
  980. background-color: #171717;
  981. text-align: center;
  982. position: absolute;
  983. bottom:0;
  984. }
  985. div#footer_content
  986. {
  987. margin-left: auto;
  988. margin-right: auto;
  989. width: 980px;
  990. color: #999999;
  991. }
  992. div#footer_content a
  993. {
  994. color: #999999;
  995. }
  996. div#footer_logo
  997. {
  998. line-height: 18px;
  999. margin-top: 25px;
  1000. padding-left: 0;
  1001. padding-right: 40px;
  1002. text-align: left;
  1003. width: 191px;
  1004. float: left;
  1005. }
  1006. div#footer_logo img
  1007. {
  1008. float: left;
  1009. padding-right: 10px;
  1010. }
  1011. span.fotter_muzich_big
  1012. {
  1013. font-size: 22px;
  1014. font-weight: bold;
  1015. }
  1016. div#footer_content ul.footer_pages_links
  1017. {
  1018. float: left;
  1019. height: 74px;
  1020. margin-bottom: 0;
  1021. margin-top: 12px;
  1022. padding-top: 10px;
  1023. margin-left: 0;
  1024. padding-left: 32px;
  1025. width: 210px;
  1026. border-left: 1px solid #2F2F2F;
  1027. text-align: left;
  1028. }
  1029. div#footer_content ul.footer_pages_links li
  1030. {
  1031. list-style-image: url("/img/list_chip_red.png");
  1032. }
  1033. div.search_tag_list ul.search_tag_list
  1034. {
  1035. list-style-image: none;
  1036. padding:0;
  1037. margin:0;
  1038. list-style-type:none;
  1039. overflow: hidden;
  1040. }
  1041. div.search_tag_list ul.search_tag_list li
  1042. {
  1043. float: left;
  1044. margin-right: 4px;
  1045. margin-left: 4px;
  1046. margin-top: 2px;
  1047. margin-bottom: 2px;
  1048. padding: 2px 4px 2px 4px;
  1049. background-color: #d9f7ff;
  1050. border-radius: 4px;
  1051. -moz-border-radius: 4px;
  1052. -webkit-border-radius: 4px;
  1053. -webkit-box-shadow: #666 0px 2px 3px;
  1054. -moz-box-shadow: #666 0px 2px 3px;
  1055. box-shadow: #666 0px 2px 3px;
  1056. }
  1057. div.search_tag_list ul.search_tag_list li.new
  1058. {
  1059. font-weight: bold;
  1060. background: #e0e0e0;
  1061. color: black;
  1062. }
  1063. #container div.search_tag_list ul.search_tag_list li.new a
  1064. {
  1065. color: black;
  1066. }
  1067. div.search_tag_list ul.search_tag_list li:hover
  1068. {
  1069. background-color: #999999;
  1070. }
  1071. div.search_tag_list span.info
  1072. {
  1073. text-shadow: 1px 1px 1px #666;
  1074. font-weight: bold;
  1075. font-size: 17px;
  1076. }
  1077. #container ul.search_tag_list li a
  1078. {
  1079. color: #E7E7E7;
  1080. }
  1081. #container ul.search_tag_list li a:hover
  1082. {
  1083. text-decoration: none;
  1084. }
  1085. ul.search_tag_list li a
  1086. {
  1087. color: white;
  1088. }
  1089. div#search_tag_search a.more, div#search_tag_add a.more
  1090. {
  1091. color: black;
  1092. }
  1093. div#search_tag_search p.help
  1094. {
  1095. font-size: 11px;
  1096. font-style: italic;
  1097. }
  1098. .textcenter
  1099. {
  1100. text-align: center;
  1101. }
  1102. ul#form_add_prop_tags_api li
  1103. {
  1104. float: left;
  1105. list-style-type: none;
  1106. margin-right: 15px;
  1107. }
  1108. ul#form_add_prop_tags_api li:hover
  1109. {
  1110. text-decoration: underline;
  1111. }
  1112. ul.elements li.element.selected
  1113. {
  1114. background-color: #E7E7E7;
  1115. }
  1116. ul.elements li.element h2
  1117. {
  1118. margin-top: 0px;
  1119. }
  1120. ul.elements li.element fieldset
  1121. {
  1122. margin-bottom: 5px;
  1123. }
  1124. ul.elements li.element fieldset.edit_url label, ul.elements li.element fieldset.edit_name label, ul.elements li.element fieldset.edit_tags label
  1125. {
  1126. display: block;
  1127. float: left;
  1128. width: 80px;
  1129. font-size: 16px;
  1130. padding-top: 6px;
  1131. font-weight: bold;
  1132. }
  1133. ul.elements li.element fieldset.edit_tags label
  1134. {
  1135. float: left;
  1136. }
  1137. ul.elements li.element fieldset.edit_url input[type="text"], ul.elements li.element fieldset.edit_name input[type="text"]
  1138. {
  1139. width: 520px;
  1140. font-size: 100%;
  1141. height: 30px;
  1142. }
  1143. ul.elements li.element fieldset.edit_tags input.tag_prompt
  1144. {
  1145. width: 600px;
  1146. }
  1147. ul.elements li.element div.inputs
  1148. {
  1149. text-align: right;
  1150. }
  1151. div.no_elements
  1152. {
  1153. text-align: center;
  1154. }
  1155. ul#autoplay_element
  1156. {
  1157. margin: 0px;
  1158. padding: 0px;
  1159. }
  1160. ul#autoplay_element li
  1161. {
  1162. list-style-type: none;
  1163. }
  1164. ul.tagbox {
  1165. cursor: text;
  1166. border: none;
  1167. overflow: hidden;
  1168. padding: 0 0 1px 3px;
  1169. margin-left: 0px;
  1170. }
  1171. ul.tagbox li {
  1172. margin:0;
  1173. }
  1174. ul#favorite_tags
  1175. {
  1176. padding:0;
  1177. margin-top:10px;
  1178. margin-bottom: 10px;
  1179. margin-left: 0px;
  1180. list-style-type:none;
  1181. }
  1182. ul#favorite_tags li a
  1183. {
  1184. color: white;
  1185. }
  1186. ul#favorite_tags li.list_length_big a
  1187. {
  1188. font-size: 16px;
  1189. padding-top: 2px;
  1190. padding-bottom: 2px;
  1191. }
  1192. ul#favorite_tags li.list_length_medium a
  1193. {
  1194. font-size: 15px;
  1195. padding-top: 3px;
  1196. padding-bottom: 3px;
  1197. }
  1198. ul#favorite_tags li a.active
  1199. {
  1200. color: #999999;
  1201. }
  1202. ul#favorite_tags li a.highlight
  1203. {
  1204. color: #E51936;
  1205. }
  1206. ul#favorite_tags li a.highlight.active
  1207. {
  1208. color: #999999;
  1209. }
  1210. input#element_add_name
  1211. {
  1212. width: 450px;
  1213. }
  1214. .darkbutton {
  1215. background-color: #585454;
  1216. padding: 8px 8px 6px 6px;
  1217. border: 1px solid black;
  1218. text-transform : uppercase;
  1219. font-size: 70%;
  1220. font-weight: bold;
  1221. background: none;
  1222. background-color: #555;
  1223. box-shadow: 0 1px 1px 0 #696465 inset;
  1224. color: white;
  1225. }
  1226. div.top_tools div.show_options
  1227. {
  1228. float: right;
  1229. padding: 10px;
  1230. }
  1231. div.show_options a
  1232. {
  1233. color: white;
  1234. }
  1235. .nicelabels label
  1236. {
  1237. display: block;
  1238. float: left;
  1239. font-size: 16px;
  1240. font-weight: bold;
  1241. padding-top: 6px;
  1242. width: 100px;
  1243. }
  1244. div#group_add_box label
  1245. {
  1246. width: 110px;
  1247. }
  1248. div#group_add_box input#group_name
  1249. {
  1250. width: 488px;
  1251. }
  1252. div#group_add_box textarea#group_description
  1253. {
  1254. width: 487px;
  1255. height: 85px;
  1256. }
  1257. div#group_add_box input.tag_prompt
  1258. {
  1259. width: 96%;
  1260. }
  1261. div.alignright
  1262. {
  1263. text-align: right;
  1264. }
  1265. div#group_add_box input[type="submit"]
  1266. {
  1267. margin-top: 10px;
  1268. }
  1269. div#registration_box input.niceinput
  1270. {
  1271. width: 430px;
  1272. }
  1273. div#registration_box label
  1274. {
  1275. width: 170px;
  1276. }
  1277. div#registration_box div.field
  1278. {
  1279. margin-bottom: 5px;
  1280. }
  1281. .mainbox_start input.tag_prompt
  1282. {
  1283. width: 96%;
  1284. }
  1285. .mainbox_start input[type="submit"]
  1286. {
  1287. float: right;
  1288. margin-right: 7px;
  1289. margin-top: 10px;
  1290. }
  1291. div.global_search_results
  1292. {
  1293. margin-top: 10px;
  1294. }
  1295. div#add_url_title, div.element_title
  1296. {
  1297. width: 510px;
  1298. font-weight: bold;
  1299. font-size: 15px;
  1300. white-space: nowrap;
  1301. overflow: hidden;
  1302. text-overflow: ellipsis;
  1303. }
  1304. .button
  1305. {
  1306. cursor: pointer;
  1307. }
  1308. .button:active, ul.element_links_actions li:active
  1309. {
  1310. background: #f6282d; /* Old browsers */
  1311. /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  1312. background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y2MjgyZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjZjYyODJkIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2M1MDYxNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjNTA2MTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  1313. background: -moz-linear-gradient(top, #f6282d 0%, #f6282d 0%, #c50617 100%, #c50617 100%); /* FF3.6+ */
  1314. 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+ */
  1315. background: -webkit-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Chrome10+,Safari5.1+ */
  1316. background: -o-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* Opera 11.10+ */
  1317. background: -ms-linear-gradient(top, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* IE10+ */
  1318. background: linear-gradient(to bottom, #f6282d 0%,#f6282d 0%,#c50617 100%,#c50617 100%); /* W3C */
  1319. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6282d', endColorstr='#c50617',GradientType=0 ); /* IE6-8 */
  1320. }
  1321. div#tags_prompt_tag_favorites_form input.tag_prompt
  1322. {
  1323. width: 95%;
  1324. }
  1325. form[name="tag_favorites_form"] input.button
  1326. {
  1327. float: right;
  1328. margin-right: 11px;
  1329. margin-top: 5px;
  1330. }
  1331. form.changepassword label
  1332. {
  1333. width: 210px;
  1334. }
  1335. form.changepassword input[type="password"]
  1336. {
  1337. margin-bottom: 2px;
  1338. width: 388px;
  1339. }
  1340. form.changepassword input[type="submit"]
  1341. {
  1342. float: right;
  1343. margin-top: 5px;
  1344. margin-right: 7px;
  1345. }
  1346. form.changeemail label
  1347. {
  1348. width: 210px;
  1349. }
  1350. form.changeemail input[type="text"]
  1351. {
  1352. width: 388px;
  1353. }
  1354. form.changeemail input[type="submit"]
  1355. {
  1356. float: right;
  1357. margin-top: 5px;
  1358. margin-right: 7px;
  1359. }
  1360. div#myaccount h2
  1361. {
  1362. cursor: pointer;
  1363. }
  1364. div#myaccount h2:hover
  1365. {
  1366. text-decoration: underline;
  1367. }