This repository has been archived by the owner on Sep 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhot_primary_tout.default_breakpoints.inc
94 lines (87 loc) · 3.26 KB
/
hot_primary_tout.default_breakpoints.inc
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?php
/**
* @file
* hot_primary_tout.default_breakpoints.inc
*/
/**
* Implements hook_default_breakpoints().
*/
function hot_primary_tout_default_breakpoints() {
$export = array();
$breakpoint = new stdClass();
$breakpoint->disabled = FALSE; /* Edit this to true to make a default breakpoint disabled initially */
$breakpoint->api_version = 1;
$breakpoint->machine_name = 'breakpoints.hot_primary_tout_3.screen-lg';
$breakpoint->name = 'screen-lg';
$breakpoint->breakpoint = '(min-width: 1200px)';
$breakpoint->source = 'hot_primary_tout';
$breakpoint->source_type = 'module';
$breakpoint->status = 1;
$breakpoint->weight = 3;
$breakpoint->multipliers = array(
'1x' => '1x',
'2x' => '2x',
);
$export['breakpoints.hot_primary_tout_3.screen-lg'] = $breakpoint;
$breakpoint = new stdClass();
$breakpoint->disabled = FALSE; /* Edit this to true to make a default breakpoint disabled initially */
$breakpoint->api_version = 1;
$breakpoint->machine_name = 'breakpoints.hot_primary_tout_3.screen-md';
$breakpoint->name = 'screen-md';
$breakpoint->breakpoint = '(min-width: 992px)and (max-width: 1199px)';
$breakpoint->source = 'hot_primary_tout';
$breakpoint->source_type = 'module';
$breakpoint->status = 1;
$breakpoint->weight = 2;
$breakpoint->multipliers = array(
'1x' => '1x',
'2x' => '2x',
);
$export['breakpoints.hot_primary_tout_3.screen-md'] = $breakpoint;
$breakpoint = new stdClass();
$breakpoint->disabled = FALSE; /* Edit this to true to make a default breakpoint disabled initially */
$breakpoint->api_version = 1;
$breakpoint->machine_name = 'breakpoints.hot_primary_tout_3.screen-sm';
$breakpoint->name = 'screen-sm';
$breakpoint->breakpoint = '(min-wdith: 768px) and (max-width: 991px)';
$breakpoint->source = 'hot_primary_tout';
$breakpoint->source_type = 'module';
$breakpoint->status = 1;
$breakpoint->weight = 1;
$breakpoint->multipliers = array(
'1x' => '1x',
'2x' => '2x',
);
$export['breakpoints.hot_primary_tout_3.screen-sm'] = $breakpoint;
$breakpoint = new stdClass();
$breakpoint->disabled = FALSE; /* Edit this to true to make a default breakpoint disabled initially */
$breakpoint->api_version = 1;
$breakpoint->machine_name = 'breakpoints.hot_primary_tout_3.screen-xs';
$breakpoint->name = 'screen-xs';
$breakpoint->breakpoint = '(min-width: 480px)and (max-width: 767px)';
$breakpoint->source = 'hot_primary_tout';
$breakpoint->source_type = 'module';
$breakpoint->status = 1;
$breakpoint->weight = 0;
$breakpoint->multipliers = array(
'1x' => '1x',
'2x' => '2x',
);
$export['breakpoints.hot_primary_tout_3.screen-xs'] = $breakpoint;
$breakpoint = new stdClass();
$breakpoint->disabled = FALSE; /* Edit this to true to make a default breakpoint disabled initially */
$breakpoint->api_version = 1;
$breakpoint->machine_name = 'breakpoints.hot_primary_tout_3.screen-xxs';
$breakpoint->name = 'screen-xxs';
$breakpoint->breakpoint = '(max-width: 479px)';
$breakpoint->source = 'hot_primary_tout';
$breakpoint->source_type = 'module';
$breakpoint->status = 1;
$breakpoint->weight = 0;
$breakpoint->multipliers = array(
'1x' => '1x',
'2x' => '2x',
);
$export['breakpoints.hot_primary_tout_3.screen-xxs'] = $breakpoint;
return $export;
}