diff options
Diffstat (limited to 'app/assets/stylesheets/quotes/pagination.css.scss')
-rw-r--r-- | app/assets/stylesheets/quotes/pagination.css.scss | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/app/assets/stylesheets/quotes/pagination.css.scss b/app/assets/stylesheets/quotes/pagination.css.scss new file mode 100644 index 0000000..dad8b88 --- /dev/null +++ b/app/assets/stylesheets/quotes/pagination.css.scss | |||
@@ -0,0 +1,49 @@ | |||
1 | .pagination { | ||
2 | text-align: center; | ||
3 | padding: 0.3em; | ||
4 | cursor: default; | ||
5 | margin: 0.5em 0; | ||
6 | |||
7 | a, span, em { | ||
8 | padding: 0.2em 0.5em; | ||
9 | } | ||
10 | |||
11 | .disabled { | ||
12 | color: #aaaaaa; | ||
13 | } | ||
14 | |||
15 | .current { | ||
16 | font-style: normal; | ||
17 | font-weight: bold; | ||
18 | color: #ff0084; | ||
19 | } | ||
20 | |||
21 | a { | ||
22 | border: 1px solid #dddddd; | ||
23 | color: #0063dc; | ||
24 | text-decoration: none; | ||
25 | |||
26 | &:hover, &:focus { | ||
27 | border-color: #003366; | ||
28 | background: #0063dc; | ||
29 | color: white; | ||
30 | } | ||
31 | } | ||
32 | |||
33 | .page_info { | ||
34 | color: #aaaaaa; | ||
35 | padding-top: 0.8em; | ||
36 | } | ||
37 | |||
38 | .previous_page, .next_page { | ||
39 | border-width: 2px; | ||
40 | } | ||
41 | |||
42 | .previous_page { | ||
43 | margin-right: 1em; | ||
44 | } | ||
45 | |||
46 | .next_page { | ||
47 | margin-left: 1em; | ||
48 | } | ||
49 | } \ No newline at end of file | ||