diff options
Diffstat (limited to 'hyperkitty/static/hyperkitty/css/hyperkitty-overview.css')
-rw-r--r-- | hyperkitty/static/hyperkitty/css/hyperkitty-overview.css | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css b/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css new file mode 100644 index 0000000..1fef97c --- /dev/null +++ b/hyperkitty/static/hyperkitty/css/hyperkitty-overview.css @@ -0,0 +1,100 @@ +/* Summary page */ + +#recent-activities h2 { + font-size: 22px; + line-height: 32px; + margin-bottom: 0.5em; + text-align: center; +} + +#recent-activities h3 { + font-size: 20px; + line-height: 28px; + margin-bottom: 0.5em; + text-align: center; +} + +#graph h2 { + text-align: center; +} +#graph rect { + cursor: pointer; +} + +#fig { + position: relative; + margin: auto; + width: 540px; + height: 330px; +} + +#fig .axis path, #fig .axis line { + fill: none; + stroke: #000; + shape-rendering: geometricPrecision; +} + +#fig .area { + fill: steelBlue; +} + + +#recent-activities p.thread-new { + text-align: center; +} + + +#recent-activities .widget { + padding: 1em; + padding-bottom: 0; + border: 1px solid #ddd; + -webkit-border-radius: 10px; + -moz-border-radius: 10px; + border-radius: 10px; + margin: 1em 0; +} + +.category { + font-variant: small-caps; + font-weight: bold; + color: white; + -webkit-border-radius: 5px 5px 5px 5px; + -moz-border-radius: 5px 5px 5px 5px; + border-radius: 5px 5px 5px 5px; + vertical-align: top; + margin-bottom: 10px; + padding-top: 0px; + padding-left: 10px; +} + +.category_entry { + list-style-type: circle; + margin-top: 0px; + padding-bottom: 10px; + padding-left: 25px; +} + +.category_entry li { + padding-bottom: 10px; +} + +.maker { + color: rgb(102, 102, 102); + padding-right: 10px; + padding-bottom: 20px; +} + +.maker-id, .maker-name { + font-weight: bold; + font-size: 115%; + vertical-align: top; + padding-right: 20px; +} + +.maker .gravatar { + padding-right: 20px; +} + +.score{ + font-weight: bold; +} |