-
Notifications
You must be signed in to change notification settings - Fork 11
/
_page.scss
49 lines (39 loc) · 1.09 KB
/
_page.scss
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// # Page
// Defines styles for the book's page
// *******************************************************
// ## Variables
// *******************************************************
// The color of the page background
$page-background : white !default;
// Styling for book body div
$page-map : () !default;
// Styling for book body div
$page-inner-map : (
background: $page-background,
max-width: 800px,
margin: 0px auto,
padding: $spacing-unit*3 $spacing-unit*2
) !default;
// *******************************************************
// ## Page divs
// *******************************************************
.page-wrapper
{
position: relative;
outline: none;
@include print( $page-map );
}
.page-inner
{
position: relative;
@include print( $page-inner-map );
}
// *******************************************************
// ## Page elements
// *******************************************************
.page-inner .btn-group .btn
{
border-radius: 0px;
background: #eee;
border: 0px;
}