am-commons 0.0.1 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/am-commons-0.0.1.gem +0 -0
  3. data/lib/am-commons/version.rb +1 -1
  4. data/package.json +1 -1
  5. data/stylesheets/_am-commons.scss +1 -2
  6. data/stylesheets/am-commons/_am-american-flags.scss +93 -0
  7. data/stylesheets/am-commons/_am-components.scss +1767 -0
  8. data/stylesheets/am-commons/_am-footer.scss +102 -0
  9. data/stylesheets/am-commons/_am-header.scss +160 -0
  10. data/stylesheets/am-commons/_am-icons-definition.scss +616 -0
  11. data/stylesheets/am-commons/_am-icons.scss +57 -0
  12. data/stylesheets/am-commons/_am-main-menu.scss +243 -0
  13. data/stylesheets/am-commons/_am-print.scss +35 -0
  14. data/stylesheets/am-commons/_am-social-menu.scss +34 -0
  15. data/stylesheets/am-commons/_am-sprite-splash.scss +109 -0
  16. data/stylesheets/am-commons/_am-utils.scss +249 -0
  17. data/stylesheets/am-commons/_am-variables.scss +69 -0
  18. data/stylesheets/am-commons/_epp-grid.scss +1395 -0
  19. data/stylesheets/am-commons/_epp-mixins.scss +38 -0
  20. data/stylesheets/am-commons/_epp-pixelator.scss +352 -0
  21. data/stylesheets/am-commons/_epp-utils.scss +1230 -0
  22. data/stylesheets/am-commons/_fonts.scss +156 -0
  23. data/stylesheets/am-commons/am-airlines.scss +74 -0
  24. data/stylesheets/am-commons/am-checkout.scss +258 -0
  25. data/stylesheets/am-commons/am-common.scss +19 -0
  26. data/stylesheets/am-commons/am-flights-result.scss +2404 -0
  27. data/stylesheets/am-commons/am-flights-resultv2.scss +390 -0
  28. data/stylesheets/am-commons/am-not-found.scss +74 -0
  29. data/stylesheets/am-commons/am.scss +16 -0
  30. data/stylesheets/am-commons/epp-visual-help.scss +36 -0
  31. data/stylesheets/am-commons/epp.scss +12 -0
  32. data/stylesheets/am-commons/flight-result-searchbox.scss +69 -0
  33. metadata +29 -8
  34. data/stylesheets/am-commons/_am.scss +0 -5
  35. data/stylesheets/am-commons/_components.scss +0 -1
  36. data/stylesheets/am-commons/_utils.scss +0 -5
  37. data/stylesheets/am-commons/am/_variables.scss +0 -0
  38. data/stylesheets/am-commons/components/_example.scss +0 -0
  39. data/stylesheets/am-commons/utils/_example.scss +0 -0
@@ -0,0 +1,102 @@
1
+ //---------------------------------\\
2
+ //----------Table of Content-------\\
3
+ //---------------------------------\\
4
+
5
+ // 01 Footer
6
+
7
+ .footer {
8
+ border-bottom: 1px solid $gray-lighter;
9
+ margin: 16px auto;
10
+ padding-top: 16px;
11
+ .main-menu{
12
+ margin-top: 16px;
13
+ }
14
+ }
15
+ .footer-title {
16
+ font-size: 14px;
17
+ line-height: 24px;
18
+ color: $gray-dark;
19
+ border-bottom: 1px solid $gray-light;
20
+ }
21
+ .footer-list{
22
+ margin: 0;
23
+ text-overflow: ellipsis;
24
+ &__item{
25
+ margin: 0 0 4px 0;
26
+ list-style-type: none;
27
+ font-size: 12px;
28
+ &::first-letter {
29
+ text-transform: uppercase;
30
+ }
31
+ }
32
+ &__dest{
33
+ font-size: 12px;
34
+ }
35
+ }
36
+ .legal {
37
+ padding: 16px;
38
+ box-sizing:border-box;
39
+
40
+ .social-menu{
41
+ @include respond-to(ph){
42
+ margin-bottom: 16px;
43
+ }
44
+ }
45
+ }
46
+
47
+ .legal-text {
48
+ text-align: right;
49
+ font-size: 12px;
50
+ }
51
+
52
+ .legal__data-fiscal {
53
+ display: block;
54
+ width: 34px;
55
+ height: 45px;
56
+ float: right;
57
+ margin: 0 0 0 8px;
58
+
59
+ }
60
+
61
+ .footer-list__item__logo{
62
+ display: block;
63
+ width: 132px;
64
+ height: 24px;
65
+ margin: 5px 0 0 0;
66
+ }
67
+ .sub-footer{
68
+ border-top: 1px solid $gray-lighter;
69
+ padding-top: 8px!important;
70
+ padding-bottom: 8px!important;
71
+ margin-top: 32px;
72
+ .am-logo{
73
+ margin: 10px 0;
74
+ vertical-align: top;
75
+ }
76
+ .copy{
77
+ margin:16px 0;
78
+ }
79
+ .content{
80
+ @include font-rem(null,10px,16px);
81
+ text-align: center;
82
+ }
83
+ &:last-child{
84
+ margin-top: 0;
85
+ }
86
+
87
+ }
88
+ .fiscal-data{
89
+ display: table;
90
+ margin:10px 0;
91
+ }
92
+ .fiscal-data__text{
93
+ display:table-cell;
94
+ vertical-align:middle;
95
+ text-align:right;
96
+ width:90%;
97
+ }
98
+ .fiscal-data__img{
99
+ display:table-cell;
100
+ vertical-align:middle;
101
+ width:10%;
102
+ }
@@ -0,0 +1,160 @@
1
+ //---------------------------------\\
2
+ //----------Table of Content-------\\
3
+ //---------------------------------\\
4
+
5
+
6
+
7
+ // 01 Header
8
+
9
+ .header {
10
+ margin-top: 16px;
11
+ margin-bottom: 16px;
12
+ position: relative;
13
+ z-index: 3;
14
+ .header-flags{
15
+ position: absolute;
16
+ right: 110px;
17
+ top: 16px;
18
+ border-right: 1px solid $gray;
19
+ padding: 0 12px 0 0;
20
+ height: 26px;
21
+ }
22
+ .header-menu{
23
+ font-size: 0;
24
+ @include respond-to(ph){
25
+ margin-top: 16px;
26
+ }
27
+ .social-menu{
28
+ margin-right: 8px;
29
+ }
30
+ }
31
+ .secondary-menu {
32
+ list-style-type: none;
33
+ text-decoration: none;
34
+ font-size: 11px;
35
+ display: inline-block;
36
+ vertical-align: top;
37
+ padding: 0;
38
+ font-size: 0;
39
+ position: relative;
40
+ margin: 20px 0;
41
+ @include respond-to(ph){
42
+ margin: 0;
43
+ }
44
+ &__item{
45
+ display: inline-block;
46
+ vertical-align: top;
47
+ position: relative;
48
+ margin-left: 0;
49
+ @include respond-to(ph){
50
+ display: block;
51
+ }
52
+ &__button{
53
+ color: $gray;
54
+ margin: 0;
55
+ display: inline-block;
56
+ vertical-align: top;
57
+ font-size: 12px;
58
+ line-height: 24px;
59
+ padding: 0 16px;
60
+ border-right: 1px solid $gray-lighter;
61
+ text-transform: capitalize;
62
+ &__icon{
63
+ margin: 0 4px 0 0;
64
+ display: inline-block;
65
+ vertical-align: top;
66
+ line-height: 24px;
67
+ height: 24px;
68
+ width: 24px;
69
+ text-align: center;
70
+ }
71
+ &:hover{
72
+ text-decoration:none;
73
+ color: $gray-light;
74
+ }
75
+ &.login{
76
+ padding: 0 8px 0 0;
77
+ background-color: $gray-lightest;
78
+ }
79
+ }
80
+ .phone-tooltip{
81
+ position: absolute;
82
+ display: none;
83
+ z-index: 3;
84
+ top: 20px;
85
+ left: 2px;
86
+ padding: 5px;
87
+ border: 1px solid $gray-lighter;
88
+ background: white;
89
+ text-align:left;
90
+ width: 160%;
91
+ p{
92
+ font-size: 12px;
93
+ }
94
+ }
95
+ }
96
+ }
97
+ }
98
+ .logo-ctn{
99
+ padding: 8px 0;
100
+ vertical-align: top;
101
+ .brand-change{
102
+ display: inline-block;
103
+ vertical-align: top;
104
+ line-height: 48px;
105
+ font-style: italic;
106
+ color: $blue;
107
+ font-size: 14px;
108
+ margin-left: 8px;
109
+ }
110
+ }
111
+ .logo {
112
+ display: inline-block;
113
+ vertical-align: top;
114
+ font-size: 0;
115
+ &__iso{
116
+ display: inline-block;
117
+ width: 36px;
118
+ height: 36px;
119
+ color: $orange;
120
+ font-size: 36px;
121
+ line-height: 36px;
122
+ margin-right: 4px;
123
+ }
124
+ &__logo-almundo {
125
+ position: absolute;
126
+ font-size: 190px;
127
+ line-height: 36px!important;
128
+ color: $blue;
129
+ }
130
+
131
+ &__logo-com {
132
+ position: absolute;
133
+ font-size: 190px;
134
+ line-height: 36px!important;
135
+ color: $orange;
136
+ }
137
+ &--lg{
138
+ position: absolute;
139
+ left: 50%;
140
+ margin-left:-216px;
141
+ .logo__iso{
142
+ width: 70px;
143
+ height: 70px;
144
+ font-size: 70px;
145
+ line-height: 70px;
146
+ margin-right: 4px;
147
+ }
148
+ .logo__logo-almundo {
149
+ font-size: 350px;
150
+ line-height: 70px!important;
151
+ }
152
+
153
+ .logo__logo-com {
154
+ position: absolute;
155
+ font-size: 350px;
156
+ line-height: 70px!important;
157
+ }
158
+ }
159
+
160
+ }