diff options
Diffstat (limited to 'webroot')
-rw-r--r-- | webroot/css/anime.css | 39 | ||||
-rw-r--r-- | webroot/css/base.css | 3 | ||||
-rw-r--r-- | webroot/css/themes/light.css | 8 |
3 files changed, 50 insertions, 0 deletions
diff --git a/webroot/css/anime.css b/webroot/css/anime.css new file mode 100644 index 0000000..03f0883 --- /dev/null +++ b/webroot/css/anime.css @@ -0,0 +1,39 @@ +span.alt_titles { + font-size: 90%; + opacity: 0.7; +} + +table { + border-collapse: collapse; + width: 898px; + max-width: 898px; + table-layout: fixed; +} +tr { + height: 45px; +} +tr:first-child { /* th row */ + height: 25px; +} +th { + vertical-align: middle; +} +th:nth-child(2) { + width: 240px; +} +th:nth-child(3) { + width: 50px; +} +td { + border: 0px solid #bbb; + border-top-width: 1px; + vertical-align: middle; + white-space: nowrap; + overflow: hidden; +} +td:nth-child(2) { + padding-left: 25px; +} +td a { + display: block; +} diff --git a/webroot/css/base.css b/webroot/css/base.css index ab9cca3..e783306 100644 --- a/webroot/css/base.css +++ b/webroot/css/base.css @@ -2,6 +2,9 @@ body { font-family: Cantarell; letter-spacing: -0.01em; } +a:link, a:visited { + text-decoration: none; +} h1 { font-weight: bold; font-size: 220%; diff --git a/webroot/css/themes/light.css b/webroot/css/themes/light.css index 4ade9ff..c837667 100644 --- a/webroot/css/themes/light.css +++ b/webroot/css/themes/light.css @@ -5,6 +5,14 @@ body { background: -webkit-linear-gradient(top, #fff, #ddd 500px, #ddd); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd'); } + +a, a:visited { + color: #33a; +} +a:hover { + color: #55f; +} + nav a, nav a:visited { color: #222; text-shadow:0 1px 0 #fff; |