aboutsummaryrefslogtreecommitdiff
path: root/cydia/assets/sass/layout/_page-wrapper.scss
blob: b63a3aabe517caaffeb85c88a0840e87ab036492 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
///
/// Ethereal by HTML5 UP
/// html5up.net | @ajlkn
/// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
///

/* Page Wrapper */

	#page-wrapper {
		@include vendor('display', 'flex');
		@include vendor('align-items', 'center');
		@include vendor('justify-content', 'flex-start');
		@include vendor('flex-grow', '1');
		@include vendor('flex-shrink', '1');
		height: 100%;
		padding: 5rem;

		@include orientation(portrait) {
			padding-left: 2rem;
			padding-right: 2rem;
		}

		@include breakpoint(short) {
			padding: 6vh;
		}

		@include breakpoint(xshort) {
			padding: 0;
		}
	}

	@include breakpoint(small) {
		#page-wrapper {
			height: auto;
			padding: 1rem;
		}
	}

	@include breakpoint(xsmall) {
		#page-wrapper {
			padding: 0;
		}
	}