summaryrefslogtreecommitdiff
path: root/p/themes/Flat/freshrss.css
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-01-26 14:17:25 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-01-26 14:17:25 +0100
commitc2998ffc97fbb8e45e6179f5d9c59c1b940d5782 (patch)
treed9769ff850142c61fa91c2ce651061f4a30bd221 /p/themes/Flat/freshrss.css
parent5ad19cddc179e3528bd90d4bea8c97518e65bf51 (diff)
Statistiques : performances CSS + thèmes
https://github.com/marienfressinaud/FreshRSS/issues/90 Évite les sélecteurs universels *, les expressions sous-qualifiées, et autres règles lourdes
Diffstat (limited to 'p/themes/Flat/freshrss.css')
-rw-r--r--p/themes/Flat/freshrss.css37
1 files changed, 37 insertions, 0 deletions
diff --git a/p/themes/Flat/freshrss.css b/p/themes/Flat/freshrss.css
index 04b3df842..640c963c2 100644
--- a/p/themes/Flat/freshrss.css
+++ b/p/themes/Flat/freshrss.css
@@ -842,3 +842,40 @@ input.extend {
text-decoration: underline;
}
}
+
+.stat {
+ border:1px solid #aaa;
+ border-radius:10px;
+ box-shadow:2px 2px 5px #aaa;
+ margin:10px 0;
+ padding:0 5px;
+}
+.stat > h2 {
+ border-bottom:1px solid #aaa;
+ margin:0 -5px;
+ padding-left:5px;
+}
+.stat > div {
+ margin:5px 0;
+}
+.stat > table {
+ border-collapse:collapse;
+ margin:5px 0;
+ text-align:center;
+ width:100%;
+}
+.stat > table > thead > tr {
+ border-bottom:2px solid #aaa;
+}
+.stat > table > tbody > tr {
+ border-bottom:1px solid #aaa;
+}
+.stat > table > tbody > tr:last-child {
+ border-bottom:0;
+}
+.stat > table th, .stat > table td {
+ border-left:2px solid #aaa;
+}
+.stat > table th:first-child, .stat > table td:first-child {
+ border-left:0;
+}