-
Notifications
You must be signed in to change notification settings - Fork 0
/
viewScroller.css
72 lines (61 loc) · 1.32 KB
/
viewScroller.css
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*!
* =================================================
* viewScroller
* Version: 2.1.1
* Copyright (c) 2016 Marcin Gierczak
* http://www.viewdesic.com
* =================================================
*/
html,
body {
/* margin: 0; */
width: 100%;
height: 100%;
}
html {
overflow-y: hidden;
overflow-x: hidden;
}
/* view content center */
.vs-center-wrap {
display: table;
width: 100%;
height: 100%;
}
.vs-center {
display: table-cell;
vertical-align: middle;
text-align: center;
}
/* mainviews */
.mainbag {
position: relative; /* for any left/right separation */
overflow-y: hidden; /* for jQuery scrolls only */
height: 100%;
width: 100%; /* if 100% then you can't use left/right separation */
}
.mainview {
position: relative;
height: 100%;
width: 100%;
font-size: 16px;
vertical-align: bottom;
white-space: normal;
}
/* subviews */
.subbag {
overflow: hidden;
height: 100%;
width: 100%;
white-space: nowrap;
font-size: 0;
}
.subview {
position: relative; /* important for any centered content inside subviews */
display: inline-block;
height: 100%;
width: 100%;
font-size: 16px;
vertical-align: bottom;
white-space: normal;
}