Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.95 KB | None | 0 0
  1. @import "http://dl.dropbox.com/u/78340470/Icon%20Style%20Menu%20Bar/IconStyleCSSFixed.css";
  2.  
  3. /*
  4. MAIN BACKGROUND COLOR AND IMAGE
  5. By default, a Rei Ayanami Wallpaper.
  6.  
  7. For more info or questions on this code:
  8. http://myanimelist.net/forum/?topicid=412787
  9. */
  10. body {
  11. background: url(http://i.imgur.com/oX1APES.png) black;
  12. background-size: cover;
  13. background-attachment: fixed;
  14. }
  15.  
  16. /*
  17. SECOND BACKGROUND (with render)
  18. The background behind the list but in front of the main background.
  19. By default its transparent here.
  20. You can change her with a render or even background image here!
  21. All the other codes should be left alone.
  22. */
  23. #inlineContent {
  24. background: url("none") transparent;
  25. display: inline-block !important;
  26. height: 1200px !important;
  27. left: 0 !important;
  28. margin: auto !important;
  29. position: fixed !important;
  30. right: 0 !important;
  31. top: 0 !important;
  32. width: 2000px !important;
  33. z-index: -1 !important;
  34. }
  35.  
  36.  
  37. /*
  38. HEADER
  39. The List header which by default says My Manga List
  40. can be changed out here.
  41. */
  42. #list_surround {
  43. background: url("http://i44.tinypic.com/15s9esp.jpg") no-repeat scroll 50% 1px transparent;
  44. font-size: 81.25%;
  45. line-height: 1;
  46. margin: 0 auto;
  47. padding-bottom: 10px;
  48. padding-top: 50px;
  49. width: 920px;
  50. }
  51.  
  52.  
  53.  
  54. /*
  55. FONT
  56. Font used across the whole list.
  57. */
  58. body {
  59. font-family: arial;
  60. }
  61.  
  62.  
  63. /*
  64. LINK COLOR
  65. */
  66. a {
  67. -moz-transition: all 0.25s ease-in-out 0s;
  68. -webkit-transition: all 0.25s ease-in-out 0s;
  69. -o-transition: all 0.25s ease-in-out 0s;
  70. transition: all 0.25s ease-in-out 0s;
  71. color: #FFCC00;
  72. text-decoration: none;
  73. text-shadow: none;
  74. }
  75. a:hover {
  76. color: #FFFFFF;
  77. text-shadow: 0 1px rgba(255, 255, 255, 0.15);
  78. }
  79.  
  80.  
  81.  
  82. /* CATEGORY LINKS */
  83. .status_not_selected, .status_selected {
  84. border: 0 none !important;
  85. height: auto !important;
  86. padding: 0 8px;
  87. text-align: center !important;
  88. width: 16.667% !important;
  89. }
  90. .status_not_selected a, .status_selected a {
  91. background-color: rgba(64, 60, 90, 0.6);
  92. border-color: rgba(48, 44, 64, 0.5);
  93. border-radius: 2px 2px 2px 2px;
  94. border-style: solid;
  95. border-width: 1px;
  96. color: #FFFFFF;
  97. display: block !important;
  98. font-weight: bold;
  99. padding: 8px;
  100. text-shadow: 0 1px rgba(0, 0, 0, 0.1);
  101. }
  102. .status_selected a {
  103. background-color: rgba(180, 32, 48, 0.6);
  104. border-color: rgba(164, 16, 32, 0.5);
  105. }
  106. .status_not_selected a:hover {
  107. background-color: #403C5A;
  108. border-color: #201C3A;
  109. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  110. text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  111. }
  112. .status_selected a:hover {
  113. background-color: #B42030;
  114. border-color: rgba(148, 0, 24, 0.5);
  115. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  116. text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  117. }
  118.  
  119.  
  120.  
  121. /* HEADER */
  122. .table_header {
  123. background-color: rgba(65, 35, 95, 0.6);
  124. }
  125. .table_header:first-of-type {
  126. border-radius: 3px 0 0 0;
  127. }
  128. .table_header:nth-of-type(2) {
  129. text-align: left;
  130. }
  131. .table_header:last-of-type {
  132. border-radius: 0 3px 0 0;
  133. }
  134.  
  135.  
  136.  
  137. /* ROWS COLOR */
  138. .td1 {
  139. -moz-transition: all 0.25s ease-in-out 0s;
  140. -webkit-transition: all 0.25s ease-in-out 0s;
  141. -o-transition: all 0.25s ease-in-out 0s;
  142. transition: all 0.25s ease-in-out 0s;
  143. background-color: rgba(136, 147, 169, 0.6);
  144. }
  145. .td2 {
  146. -moz-transition: all 0.25s ease-in-out 0s;
  147. -webkit-transition: all 0.25s ease-in-out 0s;
  148. -o-transition: all 0.25s ease-in-out 0s;
  149. transition: all 0.25s ease-in-out 0s;
  150. background-color: rgba(151, 164, 183, 0.6);
  151. }
  152.  
  153.  
  154.  
  155. /* ROWS HOVER */
  156. tr:hover [class^="td"] {
  157. background-color: rgba(72, 64, 87, 0.6);
  158. }
  159. .td1:nth-of-type(2), .td2:nth-of-type(2) {
  160. text-align: left;
  161. }
  162.  
  163.  
  164.  
  165. /* ROW FONT SIZE TRANSITION (FIREFOX ONLY) */
  166. noindex:-moz-any-link, tr:hover td.td1, tr:hover td.td2 {
  167. font-size: 15px;
  168. }
  169.  
  170.  
  171.  
  172. /* LIST SETTINGS */
  173. .table_header, .td1, .td2, .status_selected, .status_not_selected, .category_totals {
  174. border: 0;
  175. padding: 4px;
  176. text-align: center;
  177. vertical-align: middle;
  178. }
  179. .table_header, .td1, .td2, .category_totals {
  180. color: #FFFFFF;
  181. line-height: 20px;
  182. }
  183. .borderRBL{
  184. line-height: normal !important;
  185. }
  186. [cellspacing="0"] {
  187. line-height: 12px;
  188. }
  189. [class^="header_"] +{
  190. border-collapse: separate !important;
  191. }
  192.  
  193.  
  194.  
  195. /* CATEGORY TOTALS */
  196. .category_totals {
  197. -moz-transition: all 0.25s ease-in-out 0s;
  198. -webkit-transition: all 0.25s ease-in-out 0s;
  199. -o-transition: all 0.25s ease-in-out 0s;
  200. transition: all 0.25s ease-in-out 0s;
  201. background-color: rgba(72, 64, 87, 0);
  202. border-radius: 0 0 3px 3px;
  203. color: rgba(51, 51, 51, 0);
  204. text-align: center;
  205. }
  206. .category_totals:hover {
  207. background-color: rgba(72, 64, 87, 0.6);
  208. color: #EEEEEE;
  209. }
  210.  
  211.  
  212.  
  213. /* HEADER TEXT AND DIMENSIONS */
  214. [class^="header_"] * {
  215. font-size: 30px;
  216. height: 60px;
  217. line-height: 24px;
  218. padding-bottom: 4px;
  219. text-align: center;
  220. vertical-align: bottom;
  221. }
  222. .header_title {
  223. border-radius: 4px 4px 4px 4px;
  224. display: inline-block;
  225. font-style: italic;
  226. height: auto;
  227. padding: 0 8px 0 0;
  228. color: #FFFFFF;
  229. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.15);
  230. }
  231.  
  232.  
  233.  
  234. /* BOTTOM OF LIST */
  235. #grand_totals {
  236. background-color: rgba(72, 64, 87, 0.6);
  237. border: 0 none;
  238. border-radius: 3px 3px 3px 3px;
  239. color: #EEEEEE;
  240. line-height: 20px;
  241. min-height: 20px;
  242. padding: 8px;
  243. text-align: center;
  244. vertical-align: middle;
  245. }
  246. #copyright {
  247. background-color: rgba(180, 32, 48, 0.6);
  248. border-radius: 3px 3px 3px 3px;
  249. color: #EEEEEE;
  250. line-height: 17px;
  251. margin-top: 10px;
  252. padding: 8px;
  253. text-align: center;
  254. }
  255. #copyright:after {
  256. content: " CSS by Kyouhansha. Edits by Shishio-kun and Veriti. Google 'Shishio's Custom Lists' for more designs and info.";
  257. }
  258.  
  259.  
  260.  
  261. //
  262.  
  263. //
  264.  
  265. //
  266.  
  267. /*
  268. COLOR OF THE ICONS
  269. Change the color, and adjust the opacity for brighter color.
  270. Remove the display: none to match the selected icon to the other icons.
  271. */
  272. #mal\_cs\_listinfo:before, #mal\_cs\_links:before,
  273. #mal\_cs\_otherlinks:before, #mal\_cs\_powered:before {
  274. background: transparent;
  275. opacity: .9;
  276.  
  277. }
  278.  
  279. /*
  280. BORDER OF ICONS
  281. If you're having trouble seeing the border bottom, lower the height by a pixel or two until you see it.
  282.  
  283. */
  284. #mal_cs_listinfo:before, #mal_cs_links:before, #mal_cs_otherlinks:before, #mal_cs_powered:before, #mal\_cs\_listinfo:before, #mal\_cs\_links:before,
  285. #mal\_cs\_otherlinks:before, #mal\_cs\_powered:before {
  286. border-color: ;
  287. border-style: ;
  288. border-width: ;
  289. height: 32px !important;
  290. }
  291.  
  292. /*
  293. BUTTONS COLOR AND BORDER
  294. Buttons within the hover menus, not the icons themselves.
  295. Second code is for button color on hover.
  296. */
  297. #mal_cs_listinfo a, #mal_cs_links a, #mal_cs_otherlinks a, #mal_cs_powered a img{
  298. background-color: rgba(64, 60, 90, 0.6) !important;
  299. border-color: transparent;
  300. border-style: solid !important;
  301. border-width: 1px !important;
  302. }
  303.  
  304.  
  305. #mal\_cs\_listinfo a:hover, #mal\_cs\_links a:hover, #mal\_cs\_otherlinks a:hover, #mal_cs_powered a img:hover {
  306. background-color: #403C5A !important;
  307. }
  308.  
  309.  
  310.  
  311. /*
  312. COLOR OF HOVER MENUS AND SELECTED ICONS
  313. Remove display none from the second code to match the colors of the selected icon to the icons above.
  314. */
  315. #mal\_cs\_listinfo div, #mal\_cs\_links div, #mal\_cs\_otherlinks div,
  316. #mal\_cs\_powered div, #mal\_cs\_powered dd, #mal\_cs\_powered a {
  317. background-color: rgba(255, 255, 255, 0.6) !important;
  318. }
  319.  
  320. #mal\_cs\_listinfo:hover:before, #mal\_cs\_links:hover:before,
  321. #mal\_cs\_otherlinks:hover:before, #mal\_cs\_powered:hover:before,
  322. #mal\_cs\_listinfo:hover:after, #mal\_cs\_links:hover:after,
  323. #mal\_cs\_otherlinks:hover:after, #mal\_cs\_powered:hover:after {
  324. display: none;
  325. background-color: ;
  326. opacity: .2;
  327. }
  328.  
  329. /*
  330. COLOR OF USERNAME (for visitors)
  331. You don't see this username on the menus when you're logged in, log out to see it.
  332. */
  333. #mal\_cs\_otherlinks strong a {
  334. color: #333333 !important;
  335. }
  336.  
  337. #mal\_cs\_otherlinks strong a:hover {
  338. color: blue !important;
  339. background-color: transparent !important;
  340. }
  341.  
  342. /*
  343. POSITION OF TOP BAR
  344. Change to absolute if you want it to not scroll with the page.
  345. */
  346. #mal\_control\_strip
  347. {
  348. position: fixed !important;
  349. background-color: transparent !important;
  350. background-image: url(none) !important;
  351. }
  352.  
  353.  
  354.  
  355.  
  356. /*
  357. OTHER CODES
  358. If you want to change out the icon images themselves, you can scroll down through the codes and find the background images and change them with your own.
  359. */
  360.  
  361. #mal\_cs\_listinfo, #mal\_cs\_links, #mal\_cs\_otherlinks, #mal\_cs\_powered {
  362. -moz-box-sizing: border-box;
  363. transition: all 0.4s ease 0s;
  364. background: none no-repeat scroll 100% 0 transparent;
  365. border: 0 none;
  366. height: 0 !important;
  367. overflow: hidden;
  368. position: absolute;
  369. right: 4px;
  370. text-align: center;
  371. top: 4px;
  372. width: 150px;
  373. z-index: 10;
  374. }
  375. #mal\_cs\_listinfo:hover, #mal\_cs\_links:hover, #mal\_cs\_otherlinks:hover, #mal\_cs\_powered:hover {
  376. height: 200px !important;
  377. padding-top: 32px;
  378. width: 150px;
  379. }
  380. #mal\_cs\_listinfo div, #mal\_cs\_links div, #mal\_cs\_otherlinks div, #mal\_cs\_powered div, #mal\_cs\_powered dd {
  381. transition: opacity 0.4s ease-in-out 0s;
  382. border-radius: 3px 0 0 0;
  383. font-size: 0 !important;
  384. line-height: 0;
  385. margin: 0 !important;
  386. opacity: 0;
  387. padding: 8px 0 0;
  388. }
  389. #mal\_cs\_listinfo:hover div, #mal\_cs\_links:hover div, #mal\_cs\_otherlinks:hover div, #mal\_cs\_powered:hover div, #mal\_cs\_powered:hover dd {
  390. opacity: 1;
  391. }
  392. #mal\_cs\_listinfo div:nth-of-type(2), #mal\_cs\_links div:nth-of-type(2), #mal\_cs\_otherlinks div:nth-of-type(2), #mal\_cs\_powered div:nth-of-type(2) {
  393. border-radius: 0 0 3px 3px;
  394. padding: 4px 0 8px;
  395. }
  396. #mal\_cs\_listinfo a, #mal\_cs\_links a, #mal\_cs\_otherlinks a, #mal\_cs\_powered a {
  397. background-color: rgba(64, 60, 90, 0.6);
  398. border-radius: 3px 3px 3px 3px;
  399. display: block;
  400. font: 13px/17px arial,sans-serif;
  401. margin: 4px 12px 0;
  402. padding: 3px 0;
  403. text-decoration: none;
  404. }
  405. #mal\_cs\_listinfo a:nth-of-type(1), #mal\_cs\_links a:nth-of-type(1), #mal\_cs\_otherlinks a:nth-of-type(1), #mal\_cs\_powered a:nth-of-type(1) {
  406. margin-top: 0;
  407. }
  408.  
  409. #mal\_cs\_listinfo strong a strong {
  410. font-weight: normal;
  411. }
  412. #mal\_cs\_otherlinks strong {
  413. color: #333333;
  414. display: block;
  415. font: bold 13px/17px arial,sans-serif !important;
  416. padding: 0 4px 4px;
  417. text-shadow: 0 1px 1px #FFFFFF;
  418. }
  419. #mal\_cs\_otherlinks strong a {
  420. background: none repeat scroll 0 0 transparent !important;
  421. border-color: transparent !important;
  422. border-radius: 0 0 0 0;
  423. color: #333333;
  424. display: inline;
  425. font: bold 13px/17px arial,sans-serif !important;
  426. margin: 0;
  427. padding: 0;
  428. text-shadow: 0 1px 1px #FFFFFF;
  429. }
  430. #mal\_cs\_powered a {
  431. border-radius: 3px 0 0 0 !important;
  432. display: block !important;
  433. margin: 0 !important;
  434. opacity: 0;
  435. padding: 8px 0 0 !important;
  436. }
  437. #mal\_cs\_powered:hover a {
  438. opacity: 1;
  439. }
  440. #mal\_cs\_powered a img {
  441. background: url("http://i.imgur.com/fGTjBC3.png") no-repeat scroll 50% 6px rgba(64, 60, 90, 0.6);
  442. border-radius: 3px 3px 3px 3px;
  443. display: block;
  444. height: 0;
  445. margin: 0 12px;
  446. padding: 23px 0 0 126px;
  447. width: 0;
  448. }
  449. #mal\_cs\_powered a img:hover {
  450. background-color: #403C5A;
  451. }
  452. #mal\_cs\_powered #search {
  453. border-radius: 0 0 3px 3px;
  454. padding: 8px;
  455. position: relative;
  456. }
  457. #mal\_cs\_powered #search #searchBox {
  458. -moz-box-sizing: border-box;
  459. border-color: #BCBCBC #D6D6D6 #D6D6D6;
  460. border-radius: 2px 2px 2px 2px;
  461. border-style: solid;
  462. border-width: 1px;
  463. color: #333333;
  464. display: inline-block;
  465. font-family: arial,sans-serif;
  466. font-size: 13px;
  467. height: 28px;
  468. padding-left: 6px;
  469. padding-right: 24px;
  470. vertical-align: top;
  471. width: 100%;
  472. }
  473. #mal\_cs\_powered #search #searchBox:hover, #mal\_cs\_powered #search #searchBox:focus {
  474. border-color: #ACACAC #C6C6C6 #C6C6C6;
  475. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
  476. }
  477. #mal\_cs\_powered #search #searchListButton {
  478. background: url("http://i.imgur.com/XqsilHp.png") no-repeat scroll 0 0 transparent;
  479. border-radius: 3px 3px 3px 3px;
  480. height: 0;
  481. margin: 0;
  482. padding: 16px 0 0 16px;
  483. position: absolute;
  484. right: 12px;
  485. top: 14px;
  486. width: 0;
  487. }
  488. #mal\_cs\_listinfo {
  489. background-image: url("http://i.imgur.com/UXZxrWI.png");
  490. right: 106px;
  491. }
  492. #mal\_cs\_listinfo:hover {
  493. background-image: url("http://i.imgur.com/VcVVnod.png");
  494. }
  495. #mal\_cs\_links {
  496. background-image: url("http://i.imgur.com/LpXWTzt.png");
  497. right: 72px;
  498. z-index: 9;
  499. }
  500. #mal\_cs\_links:hover {
  501. background-image: url("http://i.imgur.com/oPfKrOl.png");
  502. }
  503. #mal\_cs\_otherlinks {
  504. background-image: url("http://i.imgur.com/ogmX9qC.png");
  505. right: 38px;
  506. z-index: 8;
  507. }
  508. #mal\_cs\_otherlinks:hover {
  509. background-image: url("http://i.imgur.com/EEGHkbF.png");
  510. }
  511. #mal\_cs\_powered {
  512. background-image: url("http://i.imgur.com/ct4BVP5.png");
  513. right: 4px !important;
  514. z-index: 7;
  515. }
  516. #mal\_cs\_powered:hover {
  517. background-image: url("http://i.imgur.com/TUUWtaj.png");
  518. }
  519. td#mal\_cs\_pic a img {
  520. display: none;
  521. }
  522. #mal\_cs\_pic, #mal\_cs\_listinfo, #mal\_cs\_links {
  523. border-right: 0 none !important;
  524. }
  525.  
  526. #mal\_cs\_listinfo, #mal\_cs\_links, #mal\_cs\_otherlinks, #mal\_cs\_powered {
  527. padding: 32px 0 0 !important;
  528. }
  529.  
  530. #mal\_cs\_listinfo:before,
  531. #mal\_cs\_links:before,
  532. #mal\_cs\_otherlinks:before,
  533. #mal\_cs\_powered:before {
  534. z-index: 10 !important;
  535. content: "";
  536. right: 0 !important;
  537. top: 0 !important;
  538. width: 32px !important;
  539. position: absolute !important;
  540. border-radius: 4px;
  541. }
  542.  
  543. #mal\_cs\_listinfo:after{
  544. background-image: url(http://i.imgur.com/856wzPZ.png);
  545. }
  546. #mal\_cs\_links:after{
  547. background-image: url(http://i.imgur.com/rwvRyux.png);
  548. }
  549. #mal\_cs\_otherlinks:after{
  550. background-image: url(http://i.imgur.com/fbWr1K4.png);
  551. }
  552. #mal\_cs\_powered:after{
  553. background-image: url(http://i.imgur.com/fKvpt1F.png);
  554. }
  555.  
  556. #mal\_cs\_listinfo:after,
  557. #mal\_cs\_links:after,
  558. #mal\_cs\_otherlinks:after,
  559. #mal\_cs\_powered:after {
  560. z-index: 10 !important;
  561. content: "";
  562. right: 0 !important;
  563. top: 0 !important;
  564. width: 32px !important;
  565. height: 32px !important;
  566. position: absolute !important;
  567. }
  568.  
  569.  
  570.  
  571. #searchBox {
  572. width: 128px !important;
  573. margin-left: 1px;
  574. }
  575.  
  576. #mal_cs_powered #search #searchListButton {
  577. right: 15px !important;
  578. top: 12px !important;
  579. }
  580.  
  581. @media screen and (-webkit-min-device-pixel-ratio:0) {
  582. #searchBox {
  583. width: 96px !important;
  584. }
  585. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement