Skip to content

Instantly share code, notes, and snippets.

@sudogem
Last active June 23, 2021 06:06
Show Gist options
  • Save sudogem/0c0e3af52b156ec94741e0fde178f7dc to your computer and use it in GitHub Desktop.
Save sudogem/0c0e3af52b156ec94741e0fde178f7dc to your computer and use it in GitHub Desktop.
Philstocks Customized CSS Theme for Stylebot - a chrome/firefox addon
/**
* Philstocks Customized Theme for MarketInfo page
* https://my.philstocks.ph/OneScreen/MarketInfo.cshtml
**/
.gaTableSymbol,
.maTableSymbol,
.indicesTitle {
font-size: 0.99em;
font-weight: 700;
}
#moversTable th.maTableHeader,
#activesTable th.maTableHeader,
#gainersTable th.gaTableHeader,
#losersTable th.gaTableHeader {
font-weight: bold;
}
#moversTable th.maTableHeader {
color: #fff;
background-color:hotpink;
}
#moversTable .maTableValue {
color:darkslategrey;
}
#activesTable th.maTableHeader {
color: #fff;
background-color:blue;
}
#activesTable .maTableSymbol {
color:mediumblue;
}
#activesTable .maTableValue {
color: darkblue;
}
#gainersTable th.gaTableHeader {
color: #fff;
background-color:green;
}
#gainersTable span.gaTableSymbol {
color:seagreen;
}
#gainersTable span.gaTablePercent,
#gainersTable span.gaTableVal {
color:limegreen
}
#losersTable th.gaTableHeader {
color: #fff;
background-color:red;
}
#losersTable span.gaTableSymbol {
color:orangered;
}
#losersTable span.gaTablePercent,
#losersTable span.gaTableVal {
color: #ff0000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment