Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2167)

Unified Diff: stylesheets/cq_top_score.css

Issue 12045029: Add CQ Top Score dashboard. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-status
Patch Set: Add "Top scores" link to all CQ pags Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « static/third_party/PressStart2P.ttf ('k') | templates/cq_owner.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: stylesheets/cq_top_score.css
diff --git a/stylesheets/cq_top_score.css b/stylesheets/cq_top_score.css
new file mode 100644
index 0000000000000000000000000000000000000000..d5fe2d50ffc99d5ec96fff42c80f2a7f3a0ddb3f
--- /dev/null
+++ b/stylesheets/cq_top_score.css
@@ -0,0 +1,94 @@
+@font-face {
+ font-family: press_start;
+ src: local(press_start), url('/third_party/PressStart2P.ttf') format('opentype');
+}
+
+body {
+ font-family: press_start;
+ background: black;
+ color: #888888;
+ font-size: 10px;
+}
+
+h1 {
+ font-family: press_start;
+ text-align: center;
+ font-size: 80px;
+ color: white;
+}
+
+table.issue {
+ table-layout: fixed;
+ width: 100%;
+ letter-spacing: 2px;
+ font-size: 20px;
+ margin-top: 10px;
+ margin-left: 10%;
+ margin-right: 10%;
+ margin-bottom: 20px;
+ border-spacing: 10px;
+}
+
+table.issue > tbody > tr:first-child {
+ color: yellow;
+}
+
+table.issue > tbody > tr:nth-child(2) {
+ color: white;
+}
+
+table.issue > tbody > tr:nth-child(3) {
+ color: orange;
+}
+
+table.issue > tbody > tr:nth-child(4) {
+ color: #888888;
+}
+
+table.issue > tbody > tr:nth-child(5) {
+ color: #888888;
+}
+
+table.issue > tbody > tr:nth-child(6) {
+ color: #888888;
+}
+
+table.issue > tbody > tr:nth-child(7) {
+ color: #888888;
+}
+
+table.issue > tbody > tr:nth-child(8) {
+ color: #888888;
+}
+
+table.issue > tbody > tr:nth-child(9) {
+ color: #888888;
+}
+
+table.issue > tbody > tr:nth-child(10) {
+ color: #888888;
+}
+
+table.issue > tbody > tr {
+ color: #555555;
+}
+
+table.legend {
+ /*position: relative;*/
+ /*float: center;
+ text-align: center;
+ table-layout: fixed;
+ vertical-align: baseline;*/
+ width: 100%;
+ color: white;
+ letter-spacing: 2px;
+ line-height: 150%;
+}
+
+table.legend > tbody td:first-child {
+ width: 20%;
+}
+
+table.legend > tbody td:last-child {
+ width: 20%;
+}
« no previous file with comments | « static/third_party/PressStart2P.ttf ('k') | templates/cq_owner.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698