Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: sitescripts/stats/static/stats.css

Issue 11481051: Update stats processing (Closed)
Patch Set: Improved performance using memoization Created Aug. 29, 2013, 1:39 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sitescripts/stats/static/hours.png ('k') | sitescripts/stats/template/fileOverview.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 body 1 body
2 { 2 {
3 font: 11px Verdana, Arial, Helvetica, Sans-Serif; 3 font: 11px Verdana, Arial, Helvetica, Sans-Serif;
4 color: #000000; 4 color: #000000;
5 background-color: #FFFFFF; 5 background-color: #FFFFFF;
6 margin-top: 0; 6 margin-top: 0;
7 margin-bottom: 0; 7 margin-bottom: 0;
8 } 8 }
9 9
10 a:link, a:visited 10 a:link, a:visited
(...skipping 18 matching lines...) Expand all
29 font-size: 13px; 29 font-size: 13px;
30 font-weight: bold; 30 font-weight: bold;
31 color: #000000; 31 color: #000000;
32 background-color: #CCCCDD; 32 background-color: #CCCCDD;
33 text-align: center; 33 text-align: center;
34 padding: 1px; 34 padding: 1px;
35 } 35 }
36 36
37 td, th 37 td, th
38 { 38 {
39 vertical-align: center; 39 vertical-align: middle;
40 padding: 4px; 40 padding: 4px;
41 } 41 }
42 td.title 42 td.title
43 { 43 {
44 font-size: 13px; 44 font-size: 13px;
45 font-weight: bold; 45 font-weight: bold;
46 } 46 }
47 td.chart 47 td.chart
48 { 48 {
49 line-height: 1px; 49 line-height: 1px;
50 } 50 }
51 .special 51 .special
52 { 52 {
53 background-color: #EAEAEA; 53 background-color: #EAEAEA;
54 } 54 }
55 .emph
56 {
57 font-weight: bold;
58 }
59
60 #quickLinks
61 {
62 text-align: center;
63 max-width: 600px;
64 margin-left: auto;
65 margin-right: auto;
66 margin-top: 20px;
67 margin-bottom: 20px;
68 }
69
70 #quickLinks > a
71 {
72 text-decoration: none;
73 white-space: nowrap;
74 }
75
76 #quickLinks > a:after
77 {
78 content: "|";
79 margin: 0px 5px;
80 }
81
82 #quickLinks > a:last-child:after
83 {
84 content: none;
85 }
86
87 .showAllLink
88 {
89 font-size: 80%;
90 }
91
92 .countrycode
93 {
94 float: right;
95 margin-left: 10px;
96 }
97
98 .hitsChart,
99 .bandwidthChart
100 {
101 height: 6px;
102 display: inline-block;
103 }
55 104
56 .hitsChart 105 .hitsChart
57 { 106 {
58 display: inline-block;
59 background-color: #66DDEE; 107 background-color: #66DDEE;
60 }
61 .bandwidthChart
62 {
63 display: inline-block;
64 background-color: #2EA495;
65 }
66 .hitsChart.vertical,
67 .bandwidthChart.vertical
68 {
69 width: 6px;
70 }
71 .hitsChart.horizontal,
72 .bandwidthChart.horizontal
73 {
74 height: 6px;
75 }
76 .hitsChart.vertical
77 {
78 background: -moz-linear-gradient(left, #16CAD2 0%, #86E8F0 40%, #069E9E 100%);
79 background: -webkit-gradient(linear, left top, right top, color-stop(0%,#16CAD 2), color-stop(40%,#86E8F0), color-stop(100%,#069E9E));
80 border-right: 1px solid black;
81 }
82 .hitsChart.horizontal
83 {
84 background: -moz-linear-gradient(top, #16CAD2 0%, #86E8F0 40%, #069E9E 100%); 108 background: -moz-linear-gradient(top, #16CAD2 0%, #86E8F0 40%, #069E9E 100%);
85 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#16C AD2), color-stop(40%,#86E8F0), color-stop(100%,#069E9E)); 109 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#16C AD2), color-stop(40%,#86E8F0), color-stop(100%,#069E9E));
86 border-bottom: 1px solid black; 110 border-bottom: 1px solid black;
87 } 111 }
88 .bandwidthChart.vertical 112
113 .bandwidthChart
89 { 114 {
90 background: -moz-linear-gradient(left, #008453 0%, #2FA496 40%, #005738 100%); 115 background-color: #2EA495;
91 background: -webkit-gradient(linear, left top, right top, color-stop(0%,#00845 3), color-stop(40%,#2FA496), color-stop(100%,#005738));
92 }
93 .bandwidthChart.horizontal
94 {
95 background: -moz-linear-gradient(top, #008453 0%, #2FA496 40%, #005738 100%); 116 background: -moz-linear-gradient(top, #008453 0%, #2FA496 40%, #005738 100%);
96 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#008 453), color-stop(40%,#2FA496), color-stop(100%,#005738)); 117 background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#008 453), color-stop(40%,#2FA496), color-stop(100%,#005738));
97 } 118 }
OLDNEW
« no previous file with comments | « sitescripts/stats/static/hours.png ('k') | sitescripts/stats/template/fileOverview.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld