diff options
Diffstat (limited to 'app/assets/stylesheets/admin')
-rw-r--r-- | app/assets/stylesheets/admin/dashboard.scss | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/app/assets/stylesheets/admin/dashboard.scss b/app/assets/stylesheets/admin/dashboard.scss index c75b95a..60c257a 100644 --- a/app/assets/stylesheets/admin/dashboard.scss +++ b/app/assets/stylesheets/admin/dashboard.scss | |||
@@ -1,3 +1,42 @@ | |||
1 | // Place all the styles related to the Admin::Dashboard controller here. | 1 | // Place all the styles related to the Admin::Dashboard controller here. |
2 | // They will automatically be included in application.css. | 2 | // They will automatically be included in application.css. |
3 | // You can use Sass (SCSS) here: http://sass-lang.com/ | 3 | // You can use Sass (SCSS) here: http://sass-lang.com/ |
4 | |||
5 | .pagination { | ||
6 | background: #f1f1f1; | ||
7 | border: 1px solid #e5e5e5; | ||
8 | text-align: center; | ||
9 | padding: 1em; | ||
10 | cursor: default; | ||
11 | |||
12 | a, span { | ||
13 | padding: 0.2em 0.3em; | ||
14 | } | ||
15 | |||
16 | .disabled { | ||
17 | color: #aaaaaa; | ||
18 | } | ||
19 | |||
20 | .current { | ||
21 | font-style: normal; | ||
22 | font-weight: bold; | ||
23 | background-color: #bebebe; | ||
24 | display: inline-block; | ||
25 | width: 1.4em; | ||
26 | height: 1.4em; | ||
27 | line-height: 1.5; | ||
28 | -moz-border-radius: 1em; | ||
29 | -webkit-border-radius: 1em; | ||
30 | border-radius: 1em; | ||
31 | text-shadow: rgba(255, 255, 255, 0.8) 1px 1px 1px; | ||
32 | } | ||
33 | |||
34 | a { | ||
35 | text-decoration: none; | ||
36 | color: black; | ||
37 | |||
38 | &:hover, &:focus { | ||
39 | text-decoration: underline; | ||
40 | } | ||
41 | } | ||
42 | } | ||