summaryrefslogtreecommitdiffstats
path: root/sass/parts/_index.scss
blob: e20323b33c03245d9333459c6941d602b2568c54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#pagenavi{
	padding: 20px 0;
	height: 20px;
	line-height: 20px;
	position: relative;
	@include border-shadow();
	a{
		&:hover{
			text-decoration: underline;
		}
	}
	.prev, .next{
		position: absolute;
	}
	.prev{
		background: image-url('back.png') 0 center no-repeat;
		padding-left: 30px;
		left: 0;
	}
	.next{
		background: image-url('more.png') right center no-repeat;
		padding-right: 30px;
		right: 0;
	}
	.center{
		text-align: center;
		width: 100%;
		display: block;
	}
}