Skip to content

Instantly share code, notes, and snippets.

@jaasonw
Last active June 19, 2016 09:03
Show Gist options
  • Save jaasonw/0629e3c9c08e3c4dc0e0aa0486399df7 to your computer and use it in GitHub Desktop.
Save jaasonw/0629e3c9c08e3c4dc0e0aa0486399df7 to your computer and use it in GitHub Desktop.
/*
// Self-explanatory
*/
BODY
{
margin: 0;
color: #000000;
font-size: 11.00px;
font-family: Verdana, Arial;
background-color: #FFFFFF;
/*background-image: url("http://i.imgur.com/qx7Hhw1.png");
background-size: 100% auto;*/
}
/*
// Determines the positioning of your list
*/
#list_surround
{
margin: 0 auto;
width: 950px;
}
/*
// All links on your list
*/
a
{
color: #51819f;
text-decoration: none;
}
a:visited
{
color: #51819f;
text-decoration: none;
}
a:hover
{
color: #51819f;
text-decoration: underline;
}
table
{
opacity: 50%;
}
/*
// Alternating row color 1
*/
.td1
{
color: #000000;
border-width: 0px 1px 1px 0px;
border-style: solid;
border-color: #ABABAB;
padding: 2px;
background-color: #FFFFFF;
}
/*
// Alternating row color 2
*/
.td2
{
color: #000000;
border-width: 0px 1px 1px 0px;
border-style: solid;
border-color: #ABABAB;
padding: 2px;
background-color: #F1F1F1;
}
/*
// This represents the "Anime Title", "Score", "# Eps" columns
*/
.table_header
{
color: #000000;
border-width: 1px 1px 1px 0px;
border-style: solid;
border-color: #ABABAB;
background-color: #E7F1F7;
padding: 2px;
}
/*
// headerLink represents the color of the links inside the table_header
*/
.table_headerLink
{
color: ;
}
.table_headerLink:Visited
{
color: ;
}
.table_headerLink:Hover
{
color: ;
}
/*
// Controls the select form decoration (the drop down select box)
*/
.form
{
border-width: 1px 1px 1px 1px;
border-color: #ABABAB;
border-style: solid;
color: #000000;
padding: 2px;
font-size: 11.00px;
font-family: Verdana, Arial;
}
/* Which 'status' up top is selected? */
.status_selected
{
color: #000000;
border-width: 0px 1px 1px 0px;
border-style: solid;
border-color: #ABABAB;
padding: 2px;
background-color: #FFFFFF;
}
.status_not_selected
{
color: #000000;
border-width: 0px 1px 1px 0px;
border-style: solid;
border-color: #ABABAB;
padding: 2px;
background-color: #F1F1F1;
}
/*
Header classes for Currently Watching, Completed, Dropped, etc...
*/
.header_cw
{
}
.header_cw:after
{
font-size: 14px;
content: 'doubles as my actual plan to watch list';
}
.header_completed
{
}
.
{
}
.header_onhold:after
{
font-size: 14px;
content: 'basically a dropped list.....';
}
.header_dropped
{
}
.header_dropped:after
{
font-size: 14px;
content: 'not how you\'re supposed to use tags';
}
.header_ptw
{
}
.header_ptw:after
{
font-size: 14px;
content: 'aka the random animes i see on my newsfeed list';
}
.header_title {
font-size: 14px;
font-weight: bold;
}
.category_totals
{
}
#grand_totals
{
text-align: center;
}
/* header_al is the div surrounding "User's Anime List" at the top */
.header_al
{
font-weight: bold;
font-size: 16px;
}
/* header_al_links is the div with your "Profile" and "MyAnimeList home" links */
.header_al_links
{
}
/* controls what styles you can give to all the anime titles in your list */
.animetitle
{
font-weight: bold;
}
/*
Tags Row Width
*/
.td1:nth-of-type(6), .td2:nth-of-type(6){
width: 180px;
}
/*
Tags table Header width
*/
.table_header:nth-of-type(6) {
width: 180px;
}
/*
copyright contains the "Producted by Garrett Gyssler" text
DO NOT REMOVE OR HIDE THIS DIV
IF FOUND TO BE REMOVED, YOUR LIST WILL BE REMOVED TOO
*/
#copyright
{
padding-top: 6px;
text-align: center;
margin: 0 auto;
width: 920px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment