to all CSS Master and knownledgeble out there ^_^
Please help me build my dream #AnimelistDesign
if it is possible ^_^ thanks you so much
My Imagination Planning
- want to put profile picture on the top left and hover zoom in zoom out
- want to put a hover anime picture beside of the anime profile
- want to customize by changing color of the word Score/Premiered/Studios/Days/AirDATED/Demographic/Genres/UserDates/Licensors
- want to know the code for hover background changing color - will put it on the word above ^^^
- want to customize by changing color of Season / Fall / Winter / Summer / Spring
- want to know the code for changing color of the TAGS and also how did they put a pop up msg or like a comments below TAGS
- if there is a code of any of this to appear on the table? Status: / Aired: / Producers: / Source: / Theme: / Duration:
- is it possible to customize the ratings beside of the table? like changing color/font/hover/put an img/gif
- how to put a hover gif/img on score while changing its color?
*** for shared imports, is it possible to get an easy to understand css code so that i can edit the contents. ^_^
/* == START (Code Working) ==
PARTICLES ANIMATION */
.list-block:after{
z-index: 20 !important;
filter: hue-rotate(0deg);
position: fixed;
display: block;
content: '';
left: 0;
bottom: 0;
margin-left: 0;
width: 100%;
height: 100%;
background-image: url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwMT76AI9woOLhZfSibntlA4 ), url(https://image.myanimelist.net/ui/5LYzTBVoS196gvYvw3zjwA_53oDShrw_6YKAHMPv1d0 );
animation: PARTICLES 15s linear infinite;
pointer-events: none !important;
}
@keyframes PARTICLES {
0% { background-position: -485px 487px, 485px 487px;}
100% { background-position: 0 0, 0 0; }
}
.list-block:after {
-webkit-mask-image: linear-gradient(to bottom, transparent 50%, black);
mask-image: linear-gradient(to bottom, transparent 50%, black);
}
/* PARTICLES ANIMATION
========== END */
/* == START (Code Working) ==
Glowing rows on hover*/
/********************
body[data-query*='"status":7'] .status { position: relative; }
body[data-query*='"status":7'] .list-item:before {
display: table-row;
height: 50px;
}
***********************/
.list-table-data:hover .data.status.watching::after {
content: "WATCHING";
background-color: green;
opacity: 1;
position: absolute;
display: block;
width: 650px;
height: 35px;
border-radius: 0;
top: 0px !important;
/*right: 0px;*/
z-index: -1 !important;
box-shadow: 4px 4px 50px 4px green
}
.list-table-data:hover .data.status.completed::after {
content: "COMPLETED";
background-color: blue;
opacity: 1;
position: absolute;
display: block;
width: 650px;
height: 35px;
border-radius: 0;
top: 0px !important;
z-index: -1 !important;
box-shadow: 4px 4px 50px 4px blue
}
.list-table-data:hover .data.status.onhold::after {
content: "ON-HOLD";
background-color: yellow;
opacity: 1;
position: absolute;
display: block;
width: 650px;
height: 35px;
border-radius: 0;
top: 0px !important;
z-index: -1 !important;
box-shadow: 4px 4px 50px 4px yellow
}
.list-table-data:hover .data.status.dropped::after {
content: "DROPPED";
background-color: red;
opacity: 1;
position: absolute;
display: block;
width: 650px;
height: 35px;
border-radius: 0;
top: 0px !important;
z-index: -1 !important;
box-shadow: 4px 4px 50px 4px red
}
.list-table-data:hover .data.status.plantowatch::after {
content: "PLAN TO WATCH";
background-color: gray;
opacity: 1;
position: absolute;
display: block;
width: 650px;
height: 35px;
border-radius: 0;
top: 0px !important;
z-index: -1 !important;
box-shadow: 4px 4px 50px 4px white
}
/* Glowing rows on hover
========== END */
/* == START (Code Working) ==
Seasonal emojis/icon */
.data.season span a[href*="season"]::before {
content: var(--gicon)
}
/* Winter */
a[href$="/winter"]::before {
--gicon: "βοΈ"
}
/* Spring */
a[href$="/spring"]::before {
--gicon: "πΈ"
}
/* Summer */
a[href$="/summer"]::before {
--gicon: "βοΈ"
}
/* Fall */
a[href$="/fall"]::before {
--gicon: "π"
}
.data.season:hover:before {
background: var(--btn-bg-h);
color: var(--btn-text-h) !important
}
/* Seasonal emojis/icon
========== END*/
/* == START (Code Working) ==
Change Empty Season Appearance */
.data.season:empty::after {
display: block;
width: 140px;
padding: 1px;
background: var(--btn-bg);
border-radius: 8.5px;
color: var(--text) !important;
font-size: 12px !important;
text-align: center;
line-height: 15px;
transition: all .3s ease;
content: "Season : β N/A";
font-weight: 700
}
/* Change Empty Season Appearance
========== END*/
/* == START (Code Working) ==
Styling for all scores */
.data.score .score-label {
width: 30px;
height: 30px;
border-radius: 13px;
display: block
}
/* Score font */
.data.score {
font-family: 'Roboto Mono', Montserrat, Verdana, monospace
}
/* Score color gradient */
.data.score .score-10 {
color: #00FF00;
box-shadow: 0 0 10px 1px #00FF00
}
.data.score .score-9 {
color: #6FED00;
box-shadow: 0 0 10px 1px #6FED00
}
.data.score .score-8 {
color: #98DB00;
box-shadow: 0 0 10px 1px #98DB00
}
.data.score .score-7 {
color: #B6C700;
box-shadow: 0 0 10px 1px #B6C700
}
.data.score .score-6 {
color: #CDB200;
box-shadow: 0 0 10px 1px #CDB200
}
.data.score .score-5 {
color: #DF9B00;
box-shadow: 0 0 10px 1px #DF9B00
}
.data.score .score-4 {
color: #EE8200;
box-shadow: 0 0 10px 1px #EE8200
}
.data.score .score-3 {
color: #F86600;
box-shadow: 0 0 10px 1px #F86600
}
.data.score .score-2 {
color: #FE4400;
box-shadow: 0 0 10px 1px #FE4400
}
.data.score .score-1 {
color: #FF0000;
box-shadow: 0 0 10px 1px #FF0000
}
/* Styling for all scores
========== END*/
/* == START (Code Working) ==
Change Empty Studio Appearance */
.data.genre:empty::before,.data.studio:empty::before,.data.licensor:empty::before,.data.magazine:empty::before,.data.demographic:empty::before {
display: block;
padding: 2px;
background: var(--btn-bg);
border-radius: 8.5px;
color: var(--category-colour) !important;
font-size: 10px !important;
line-height: 15px;
transition: all .3s ease;
font-weight: 700
}
.data.genre:empty::before {
content: "Genre :β N/A";
padding: 1px 8px !important;
/*color: var(--text) !important*/
}
.data.studio:empty::before {
content: "Studio : N/A"
}
.data.licensor:empty::before {
content: "Licensor : N/A"
}
.data.magazine:empty::before {
content: "Magazine : N/A"
}
.data.demographic:empty::before {
content: "Demographic : N/A";
padding: 1px 8px !important;
/*color: var(--text) !important*/
}
.data.genre:empty:hover::before,.data.studio:empty:hover::before,.data.licensor:empty:hover::before,.data.magazine:empty:hover::before,.data.demographic:empty:hover::before {
background: var(--btn-bg-h);
color: var(--btn-text-h) !important
}
/* Change Empty Studio Appearance
========== END*/
/* == START (Code Working) ==
Genre emojis/icon */
.data.genre span a[href*="genre="]::before {
content: var(--gicon)
}
/* Action */
a[href$="&genre=1"]::before {
--gicon: "π₯ " !important
}
/* Adventure */
a[href$="&genre=2"]::before {
--gicon: "πΊοΈ "
}
/* Avant Garde */
a[href$="&genre=5"]::before {
--gicon: "π¨ "
}
/* Award Winning */
a[href$="&genre=46"]::before {
--gicon: "π "
}
/* Boys Love */
a[href$="&genre=28"]::before {
--gicon: "π "
}
/* Comedy */
a[href$="&genre=4"]::before {
--gicon: "π "
}
/* Drama */
a[href$="&genre=8"]::before {
--gicon: "π "
}
/* Ecchi */
a[href$="&genre=9"]::before {
--gicon: "π¦ "
}
/* Erotica */
a[href$="&genre=49"]::before {
--gicon: "π "
}
/* Fantasy */
a[href$="&genre=10"]::before {
--gicon: "π¦ "
}
/* Girls Love */
a[href$="&genre=26"]::before {
--gicon: "π "
}
/* Gourmet */
a[href$="&genre=47"]::before {
--gicon: "π "
}
/* Hentai */
a[href$="&genre=12"]::before {
--gicon: "π "
}
/* Horror */
a[href$="&genre=14"]::before {
--gicon: "π± "
}
/* Mystery */
a[href$="&genre=7"]::before {
--gicon: "π "
}
/* Romance */
a[href$="&genre=22"]::before {
--gicon: "π "
}
/* Sci-Fi */
a[href$="&genre=24"]::before {
--gicon: "πΈ "
}
/* Slice of Life */
a[href$="&genre=36"]::before {
--gicon: "π° "
}
/* Sports */
a[href$="&genre=30"]::before {
--gicon: "β½ "
}
/* Supernatural */
a[href$="&genre=37"]::before {
--gicon: "π» "
}
/* Suspense */
a[href$="&genre=41"]::before {
--gicon: "β³ "
}
/* MARTIAL ARTS */
a[href$="&genre=17"]::before {
--gicon: "β³ "
}
/* MECHA */
a[href$="&genre=18"]::before {
--gicon: "β³ "
}
/* Genre emojis/icon
========== END*/
/* == START (Code Not Working) ==
Anime title color based on category on hover */
.list-table .list-table-data .title .link:hover {
color: var(--category-colour) !important
}
/* == START (Code not Working) ==
Horizontal THEMES */
.list-table-data {
padding-bottom: 25px /* 11px */
}
.data.themes {
position: absolute;
right: -10px;
bottom: 0 !important;
z-index: 0;
display: inline-block !important;
width: 1000px;
height: 100%;
}
.data.themes span {
display: inline-block;
padding: 0
}
.data.themes span a {
padding: 1px 8px !important;
margin: 0 4px 0 0;
white-space: nowrap
}
/* Horizontal THEMES
========== END*/
/* == START (Code NOT Working) ==
Horizontal SOURCE */
.list-table-data {
padding-bottom: 50px /* 11px */
}
.data.source {
position: absolute;
right: -10px;
bottom: 0 !important;
z-index: 0;
display: inline-block !important;
width: 1000px;
height: 100%;
}
.data.source span {
display: inline-block;
padding: 0
}
.data.source span a {
padding: 1px 8px !important;
margin: 0 4px 0 0;
white-space: nowrap
}
/* Horizontal SOURCE
========== END*/
/* == START (Code Not Working) ==
| Horizontal PRODUCERS */
.list-table-data {
padding-bottom: 50px /* 11px */
}
.data.producer {
position: absolute;
right: -10px;
bottom: 0 !important;
z-index: 0;
display: inline-block !important;
width: 1000px;
height: 100%;
}
.data.producer span {
display: inline-block;
padding: 0
}
.data.producer span a {
padding: 1px 8px !important;
margin: 0 4px 0 0;
white-space: nowrap
}
/* Horizontal PRODUCERS
========== END*/
/* == START (Code Not Working) ==
AWC XX (Right) */
.data.tags span {
padding: 0
}
.data.tags span a {
margin: 1px 0
}
.data.tags span a[href*="AWC"] {
position: absolute;
left: 1000px;
top: calc(50% - 13px);
height: 26px;
width: 50px;
padding: 0;
background: var(--bg);
border-radius: 50%;
font-size: 0 !important;
overflow: hidden;
box-shadow: 0 1px 2px rgba(0,0,0,.2);
line-height: 25px;
color: #D3A43E !important;
}
.data.tags span a[href*="=AWC%2017"]::before {
padding: 0;
content: "AWC 17";
font-size: 10px;
}
/* AWC XX (Right)
========== END*/
/* == START (Code Working) ==
Horizontal GENRE 11px
.list-table-data {
padding-bottom: 25px
}
.data.genre {
position: absolute;
left: 179px;
bottom: 20px;
z-index: 2;
display: flex !important;
width: 0;
height: 100%;
padding: 0 !important;
align-items: flex-end
}
.data.genre span {
display: inline-block;
padding: 0
}
.data.genre span a {
padding: 1px 8px !important;
margin: 0 4px 0 0;
white-space: nowrap
}
/* Horizontal GENRE
========== END*/
/* === HIDDEN (WORKING)
DEMOGRAPHIC,STUDIOS,TAGS
.data.demographic {
position: absolute;
left: 80px;
z-index: 2;
display: flex !important;
width: 0;
height: 100%;
padding: 0 !important;
align-items: flex-end
}
.data.demographic span {
display: inline-block;
padding: 0
}
.data.demographic span a {
padding: 1px 8px !important;
margin: 0 4px 0 0;
text-align: center;
white-space: nowrap
}
.data.studio {
position: absolute;
left: 179px;
bottom: 0;
z-index: 2;
display: flex !important;
width: 0;
height: 100%;
padding: 0 !important;
align-items: flex-end
}
.data.studio span {
display: inline-block;
padding: 0
}
.data.studio span a {
padding: 1px 8px !important;
margin: 0 4px 0 0;
white-space: nowrap
}
.data.tags {
position: absolute;
right: -10px;
bottom: 0 !important;
z-index: 0;
display: inline-block !important;
width: 1000px;
height: 100%;
}
.data.tags span {
display: inline-block;
padding: 0
}
.data.tags span a {
padding: 1px 8px !important;
margin: 0 4px 0 0;
white-space: nowrap
}*/
/* DEMOGRAPHIC,STUDIOS,TAGS
========== END*/
/* Tag Descriptions - Base */
.data.tags span a { position: relative; }
.data.tags span a:not([href*="\=Favo"]):after, .data.tags span a:not([href*="\=Favo"]):before {
position: absolute;
display: block;
-webkit-transition: all 0.15s ease;
transition: all 0.15s ease;
pointer-events: none;
opacity: 0;
z-index: 1;
}
.data.tags span a:not([href*="\=Favo"]):after {
top: 27px;
left: calc(50% - 255px);
width: auto;
max-width: 250px;
height: auto;
padding: 4px 8px;
background: #191919;
border: 1px solid #777;
border-radius: 4px;
-moz-box-sizing: border-box;
box-sizing: border-box;
color: #ababab;
font: 11px/15px Arial, Verdana;
text-align: left;
white-space: pre-wrap;
transform: translateX(-50%) translateX(250px);
}
.data.tags span a:not([href*="\=Favo"]):before {
content: "";
top: 17px;
left: 50%;
border-width: 5px;
border-style: solid;
border-color: transparent transparent #777 transparent;
margin-left: -10px;
}
.data.tags span a:hover:after {
left: calc(50% - 250px);
opacity: 1;
}
.data.tags span a:not([href*="\=Favo"]):hover:before {
margin-left: -5px;
opacity: 1;
}
.data.tags span:not([href*="\=Favo"]) a:after { transform: translateX(-17%) translateX(250px); }
.data.tags span:not([href*="\=Favo"]):nth-child(n+3) a:after { transform: translateX(-33%) translateX(250px); }
.data.tags span:not([href*="\=Favo"]):nth-child(n+5) a:after { transform: translateX(-50%) translateX(250px); }
.data.tags span:not([href*="\=Favo"]):nth-child(n+7) a:after { transform: translateX(-67%) translateX(250px); }
.data.tags span:not([href*="\=Favo"]):nth-child(n+9) a:after { transform: translateX(-83%) translateX(250px); }
/* Compatibility fix for R22.0+ Mods */
:root {
/* Generic Colours */
--pbg: #efefef;
--bg: #fff;
--bg-dark: #ddd;
--text: #323232;
--text-h: #787878;
--text-dim: #bababa;
--text-dim-h: #646464;
--text-dark: #111;
--icon: #323232;
--accent: #4065ba;
/* Button Colours */
--btn-bg: #ebebeb;
--btn-bg-h: #323232;
--btn-head-bg-h: #1d439b;
--btn-text-h: #fff;
/* Header Colours */
--text-head: #9b9b9b;
--text-head-h: #787878;
/* Status Colours */
--watching: #2db039;
--completed: #26448f;
--onhold: #f9d457;
--dropped: #a12f31;
--plantowatch: #c3c3c3;
/* Single-Use Colours */
--cover-bg: #323232;
--edit-btn: #d9d9d9;
--checkmark: #9696eb;
}