uxunity 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/.DS_Store +0 -0
  3. data/README.md +0 -15
  4. data/lib/.DS_Store +0 -0
  5. data/lib/stylesheets/README.txt +1 -0
  6. data/lib/stylesheets/_uxunity.scss +1 -0
  7. data/lib/stylesheets/base/README.txt +1 -0
  8. data/lib/stylesheets/base/_forms.scss +0 -0
  9. data/lib/stylesheets/base/_lists.scss +0 -0
  10. data/lib/stylesheets/base/_media.scss +4 -0
  11. data/lib/stylesheets/base/_tables.scss +0 -0
  12. data/lib/stylesheets/base/_typography.scss +0 -0
  13. data/lib/stylesheets/components/.DS_Store +0 -0
  14. data/lib/stylesheets/components/README.txt +1 -0
  15. data/lib/stylesheets/components/blocks/.DS_Store +0 -0
  16. data/lib/stylesheets/components/blocks/README.txt +1 -0
  17. data/lib/stylesheets/components/blocks/footer.scss +76 -0
  18. data/lib/stylesheets/components/blocks/front-page.scss +399 -0
  19. data/lib/stylesheets/components/blocks/login-popup.scss +15 -0
  20. data/lib/stylesheets/components/blocks/menus.scss +179 -0
  21. data/lib/stylesheets/components/blocks/nav_index.scss +342 -0
  22. data/lib/stylesheets/components/blocks/region_side_bar.scss +106 -0
  23. data/lib/stylesheets/components/blocks/search.scss +104 -0
  24. data/lib/stylesheets/components/blocks/spinner.scss +90 -0
  25. data/lib/stylesheets/components/blocks/treeStyles.scss +97 -0
  26. data/lib/stylesheets/components/blocks/treeview.scss +154 -0
  27. data/lib/stylesheets/components/node/README.txt +1 -0
  28. data/lib/stylesheets/components/node/asset.scss +3 -0
  29. data/lib/stylesheets/components/node/basic_page.scss +42 -0
  30. data/lib/stylesheets/components/node/blog.scss +75 -0
  31. data/lib/stylesheets/components/node/bulk_photo_nodes_default.scss +125 -0
  32. data/lib/stylesheets/components/node/edit.scss +33 -0
  33. data/lib/stylesheets/components/node/magnify.scss +31 -0
  34. data/lib/stylesheets/components/node/node.scss +398 -0
  35. data/lib/stylesheets/components/node/pattern.scss +134 -0
  36. data/lib/stylesheets/components/node/spec_style.scss +131 -0
  37. data/lib/stylesheets/components/node/webform.scss +17 -0
  38. data/lib/stylesheets/components/views/README.txt +1 -0
  39. data/lib/stylesheets/components/views/assets.scss +19 -0
  40. data/lib/stylesheets/components/views/taxonomy.scss +63 -0
  41. data/lib/stylesheets/components/views/test-views-search-php.html +70 -0
  42. data/lib/stylesheets/mixins/_mixins.scss +49 -0
  43. data/lib/stylesheets/mixins/_prefix-mixins.scss +158 -0
  44. data/lib/stylesheets/utility/.DS_Store +0 -0
  45. data/lib/stylesheets/utility/README.txt +1 -0
  46. data/lib/stylesheets/utility/_dependencies.scss +5 -0
  47. data/lib/stylesheets/utility/abstractions/README.txt +1 -0
  48. data/lib/stylesheets/utility/variables/README.txt +1 -0
  49. data/lib/stylesheets/utility/variables/_breakpoints.scss +5 -0
  50. data/lib/stylesheets/utility/variables/_colors.scss +144 -0
  51. data/lib/stylesheets/utility/variables/_forms.scss +0 -0
  52. data/lib/stylesheets/utility/variables/_globals.scss +31 -0
  53. data/lib/stylesheets/utility/variables/_grid.scss +12 -0
  54. data/lib/stylesheets/utility/variables/_legacy.scss +4 -0
  55. data/lib/stylesheets/utility/variables/_typography.scss +21 -0
  56. data/lib/stylesheets/ux/.DS_Store +0 -0
  57. data/lib/stylesheets/ux/_lists.scss +28 -0
  58. data/lib/stylesheets/ux/_ux-buttons.scss +156 -0
  59. data/lib/stylesheets/ux/_ux-tooltips.scss +8 -0
  60. data/lib/stylesheets/ux/_ux-utils.scss +67 -0
  61. data/lib/stylesheets/ux/ux-dropdown.scss +71 -0
  62. data/lib/uxunity/version.rb +1 -1
  63. data/uxunity-0.1.0.gem +0 -0
  64. data/uxunity.gemspec +1 -0
  65. metadata +74 -1
@@ -0,0 +1,3 @@
1
+ // Include the variables.
2
+ @import "partials/utility/**/*";
3
+
@@ -0,0 +1,42 @@
1
+ // Include the variables.
2
+ @import "../../../partials/utility/variables/*";
3
+
4
+
5
+
6
+ #vue-topics {
7
+
8
+ img {
9
+ width: 1.7em;
10
+ height: 1.7em;
11
+ padding-right: 1em;
12
+ display: inline-block;
13
+ vertical-align: middle;
14
+ }
15
+ h3 {
16
+ display: inline-block;
17
+ vertical-align: middle;
18
+ }
19
+ .card {
20
+ min-width: 25em;
21
+ width: 48%;
22
+ max-width: 98%;
23
+
24
+ .card-body {
25
+ border: none;
26
+ }
27
+ }
28
+ }
29
+
30
+ /* ******************* Media Queries ********************** */
31
+ @media only screen
32
+ and (max-width: 840px) {
33
+ #vue-topics {
34
+
35
+ .card {
36
+ min-width: 25em;
37
+ width: 48%;
38
+ max-width: 98%;
39
+ }
40
+ }
41
+
42
+ }
@@ -0,0 +1,75 @@
1
+ // Include the variables.
2
+ @import "../../../partials/utility/variables/*";
3
+ .comment-form {
4
+ .form-item-homepage {
5
+ display: none;
6
+ }
7
+ }
8
+
9
+ .comment {
10
+ footer.comment__info .permalink {
11
+ display: none;
12
+ }
13
+ .comment__submitted {
14
+ margin: 0;
15
+ padding: 0;
16
+ line-height: 1.2em;
17
+ }
18
+ ul.links.links--inline.comment__links {
19
+ margin-top: -1.5em;
20
+ margin-bottom: 0.8em;
21
+ }
22
+ }
23
+
24
+ .page-blog .view-id-blogs,
25
+ .view-blogs.view-display-id-pg_blog_list1 {
26
+ li.blog-list {
27
+ font-size: 1.2em;
28
+ margin: 2.3em 0 0 0;
29
+ clear: both;
30
+ display: block;
31
+
32
+ .views-field-title {
33
+ display: block;
34
+ padding: 0.4em 0 0.3em 0;
35
+ }
36
+
37
+ .views-field-picture {
38
+ width: 4.5em;
39
+ height: 4.5em;
40
+ overflow: hidden;
41
+ border-radius: 50%;
42
+ float: left;
43
+ margin: 0.2em 1em 3em 0;
44
+ }
45
+
46
+
47
+ .views-field-field-name-last {
48
+ font-size: 0.8em;
49
+ font-style: italic;
50
+ color: lighten($color-body-text, 15%);
51
+ }
52
+ .views-field-body {
53
+ height: auto;
54
+ max-height: none;
55
+ padding: 0.3em 0 0 0;
56
+ }
57
+
58
+ }
59
+
60
+ li.blog-list:first-child {
61
+ margin-top: 1.3em;
62
+ }
63
+ }
64
+
65
+ /* individual blog node */
66
+ .node-type-blog article.node--blog {
67
+ .user-picture {
68
+ width: 5em;
69
+ height: 5em;
70
+ border-radius: 50%;
71
+ margin: 0 1em 1em 0;
72
+ float: left;
73
+ overflow: hidden;
74
+ }
75
+ }
@@ -0,0 +1,125 @@
1
+ #bpn-upload-form, #bpn-flickr-form, #bpn-flickr-private-form, form.bpn-enabled {
2
+ fieldset {
3
+ border: none;
4
+ padding: 0;
5
+ margin: 0;
6
+ background: transparent;
7
+ }
8
+
9
+ fieldset .fieldset-wrapper {
10
+ padding: 0;
11
+ }
12
+
13
+ fieldset .fieldset-legend {
14
+ }
15
+
16
+ .bpn-left {
17
+ float: left;
18
+ width: 68%;
19
+ }
20
+
21
+ .bpn-right {
22
+ float: right;
23
+ width: 30%;
24
+ border: 1px solid #ccc;
25
+ > div, > h2, > p {
26
+ position: relative;
27
+ margin: 10px 0;
28
+ padding: 0 10px;
29
+ }
30
+ input.form-submit {
31
+ margin: 10px;
32
+ }
33
+ .form-textarea {
34
+ padding: 0;
35
+ }
36
+ .form-text {
37
+ width: 230px;
38
+ }
39
+ }
40
+
41
+ .bpn-info-node {
42
+ position: relative;
43
+ border: 1px solid #ccc;
44
+ padding: 1em;
45
+ margin-bottom: 2em;
46
+ }
47
+
48
+ .bpn-info-node-left {
49
+ float: left;
50
+ width: 15%;
51
+ background-color: #f8f8f8;
52
+ .form-text {
53
+ width: 350px;
54
+ }
55
+ img.bpn-info-node-image {
56
+ max-width: 128px;
57
+ max-height: 128px;
58
+ text-align: center;
59
+ vertical-align: middle;
60
+ width: 16px;
61
+ height: auto;
62
+ margin: 0 auto;
63
+ }
64
+ }
65
+
66
+ .bpn-info-node-right {
67
+ float: right;
68
+ width: 70%;
69
+ }
70
+
71
+ .bpn-info-node-image {
72
+ float: left;
73
+ }
74
+
75
+ .bpn-info-node-delete {
76
+ float: left;
77
+ clear: left;
78
+ margin-top: 1em;
79
+ }
80
+
81
+ .bpn-info-node-title {
82
+ }
83
+
84
+ .bpn-info-node-description {
85
+ }
86
+
87
+ .bpn-info-node-additional {
88
+ padding: 10px 0 0 0;
89
+ position: relative;
90
+ margin: 1em 0;
91
+ }
92
+
93
+ #edit-prev {
94
+ }
95
+
96
+ #edit-finish {
97
+ }
98
+
99
+ }
100
+
101
+ .bpn-flickr,
102
+ .flickr-private {
103
+ background: url(../images/flickr_logo.png) no-repeat 100% 0;
104
+ background-color: #FFFFFF;
105
+ border: solid 1px #CCCCCC;
106
+ padding: 10px;
107
+ }
108
+
109
+ .bpn-flickr-thumbnail {
110
+ float: left;
111
+ margin: 0 2em 2em 0;
112
+ border: 1px solid #CCC;
113
+ .inner {
114
+ padding: 1em;
115
+ }
116
+ }
117
+
118
+ .bpn-upload-option {
119
+ font-size: 24px;
120
+ padding: 20px 0;
121
+ }
122
+
123
+ .bpn-info-node-additional {
124
+ padding: 5px;
125
+ }
@@ -0,0 +1,33 @@
1
+ // Include the variables.
2
+ @import "partials/utility/**/*";
3
+
4
+
5
+ /* **** Search Box **** */
6
+
7
+ #overlay-content {
8
+ padding-left: 7em;
9
+ width: 1104px;
10
+ }
11
+ body#tinymce {
12
+ background: none;
13
+ }
14
+
15
+ .page-node-edit {
16
+ #main-content {
17
+ width: 90% !important;
18
+ }
19
+ h1 {
20
+ position: relative;
21
+ top: 0;
22
+ }
23
+ input#edit-field-additional-keyword-tags-und {
24
+ width: 220px;
25
+ }
26
+ }
27
+
28
+ form.node-form .fieldset-wrapper .field-type-taxonomy-term-reference {
29
+ width: 30%;
30
+ padding-right: 3%;
31
+ display: inline-block;
32
+ vertical-align: top;
33
+ }
@@ -0,0 +1,31 @@
1
+ /*Some CSS*/
2
+ .magnify { position: relative;}
3
+
4
+ /*Lets create the magnifying glass*/
5
+ .XXmagnify-inner-wrapper,
6
+ .magnify-large {
7
+ width: 275px; height: 275px;
8
+ position: absolute;
9
+ border-radius: 100%;
10
+
11
+ /*Multiple box shadows to achieve the glass effect*/
12
+ box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85),
13
+ 0 0 7px 7px rgba(0, 0, 0, 0.25),
14
+ inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
15
+
16
+ /*Lets load up the large image first*/
17
+ background-color: white;
18
+ background: url('http://thecodeplayer.com/uploads/media/iphone.jpg') no-repeat;
19
+
20
+ /*hide the glass by default*/
21
+ display: none;
22
+ }
23
+ .XXmagnify-inner-wrapper {
24
+ background: #ffffff;
25
+ }
26
+
27
+ /*To solve overlap bug at the edges during magnification*/
28
+ .small,
29
+ .magnify img {
30
+ display: block;
31
+ }
@@ -0,0 +1,398 @@
1
+ // Include the variables.
2
+ @import "../../../partials/utility/variables/*";
3
+
4
+
5
+ /* ***** GLOBAL for all nodes (not front) ***** */
6
+ .not-front ul.bullet li {
7
+ list-style: disc;
8
+ list-style-position: outside;
9
+ }
10
+
11
+
12
+ /* ***** for SPECIFIC nodes ***** */
13
+ .node-type-page.not-front,
14
+ .node-type-news-item.not-front,
15
+ .node-type-pattern.not-front,
16
+ .node-type-style.not-front,
17
+ .node-type-component.not-front,
18
+ .node-type-page.not-front,
19
+ .node-type-blog.not-front,
20
+ .page-blog.not-front,
21
+ .page-blog1,
22
+ .page-search,
23
+ .page-search1 {
24
+
25
+ #main-content-wrapper {
26
+ margin-left: 15em;
27
+ max-width: calc(98% - 15em);
28
+ display: block;
29
+ vertical-align: top;
30
+ padding: 0;
31
+ }
32
+ aside.l-region--sidebar-first { // See the nav_index.scss file for main side bar styles
33
+ position: relative;
34
+ left: 1%;
35
+ width: 17%;
36
+ }
37
+
38
+ #main-content-wrapper h4 {
39
+ font-style: $font-regular;
40
+ font-size: 1.1rem;
41
+ line-height: 1.2rem;
42
+ border-bottom: $color-separator-line thin solid;
43
+ margin-bottom: 0.5em;
44
+ }
45
+
46
+ #main-content-wrapper h5 {
47
+ font-style: $font-regular;
48
+ font-size: 1rem;
49
+ line-height: 1.1rem;
50
+ border-bottom: $color-separator-line thin solid;
51
+ margin-bottom: 0.5em;
52
+ }
53
+
54
+ .back2top-wrapper {
55
+ position: relative;
56
+ right: 0;
57
+ top: -8em;
58
+ font-size: 0.75em;
59
+ z-index: 3;
60
+ background: transparent;
61
+ width: 1px;
62
+ height: 1px;
63
+ display: block;
64
+ }
65
+
66
+ }
67
+
68
+
69
+
70
+
71
+
72
+ .front #main-content-wrapper { // there is no sidebar on front page, don-t allocate it
73
+ padding: 0;
74
+ }
75
+
76
+ :not(.front) {
77
+ #main-content-wrapper .flexbox {
78
+ display: -webkit-flex;
79
+ display: -ms-flexbox;
80
+ display: -o-flex;
81
+ display: flex;
82
+ -webkit-justify-content: space-between;
83
+ -ms-justify-content: justify;
84
+ justify-content: space-between;
85
+ -webkit-flex-wrap: wrap;
86
+ -ms-flex-wrap: wrap;
87
+ flex-wrap: wrap;
88
+ padding: 0;
89
+
90
+ height: auto;
91
+ margin: 1em auto;
92
+
93
+
94
+ > div {
95
+ text-align: left;
96
+ padding: 0 1em 2em 0;
97
+ min-width: 14em;
98
+ margin: 1em 1em 1em 0;
99
+ -webkit-flex: 1 1 0;
100
+ -ms-flex: 1 1 0;
101
+ flex: 1 1 0;
102
+ }
103
+
104
+ h4 {
105
+ font-size: 1.2rem;
106
+ line-height: 1.3rem;
107
+ font-family: $font-light;
108
+ color: $color-h4;
109
+ border-bottom: 1px solid #DDDDDD;
110
+ padding-bottom: 5px;
111
+ margin-bottom: 0.9em;
112
+ margin-top: 0;
113
+ }
114
+
115
+ }
116
+
117
+
118
+ .submitted {
119
+ color: $color-submitted;
120
+ font-style: italic;
121
+ font-size: smaller;
122
+ }
123
+
124
+ .example-box {
125
+ border: 1px solid #e4e2e1;
126
+ display: block;
127
+ padding: 24px;
128
+ position: relative;
129
+ margin-top: 24px;
130
+ border-radius: 0 8px 0 0;
131
+
132
+ &::before {
133
+ content: 'Example';
134
+ font-weight: 700;
135
+ text-transform: uppercase;
136
+ font-size: 80%;
137
+ display: inline-block;
138
+ background: white;
139
+ padding: 0 6px;
140
+ position: absolute;
141
+ top: -9px;
142
+ left: 7px;
143
+ }
144
+
145
+ example-box-item {
146
+ clear: both;
147
+ padding: 0 1em;
148
+ }
149
+ }
150
+ .example-code { // assumes that the prior '.example-box' is used in conjunction
151
+ &::before {
152
+ content: 'Code';
153
+ }
154
+ }
155
+ .example-box-title { // default to 'Rewriten' this connects with Javascript OnLoad to change titles dynamically
156
+ &::before {
157
+ content: 'Rewritten';
158
+ content: attr(data-title);
159
+
160
+ }
161
+ }
162
+
163
+
164
+ /* pattern for grouping a set of boxes together in a fluid manner for responsive */
165
+ .cols-group {
166
+ width: 100%;
167
+ padding: 0;
168
+ margin: 0;
169
+
170
+ .cols,
171
+ .cols-2, // cols-2 is overriden below to allow 2 cols instead of 3
172
+ .cols-3 {
173
+ display: inline-block;
174
+ margin: 1%;
175
+ padding: 0.3em 1% 0.8em;
176
+ text-align: left;
177
+ max-width: 28%;
178
+ min-width: 10em;
179
+ vertical-align: top;
180
+
181
+ h2 {
182
+ font-size: 1.9em;
183
+ margin: 0;
184
+ padding: 0;
185
+
186
+ a {
187
+ color: inherit;
188
+ text-decoration: none;
189
+ }
190
+ }
191
+
192
+ p {
193
+ font-size: 1em;
194
+ line-height: 1.3em;
195
+ }
196
+
197
+ img {
198
+ margin: 0;
199
+ padding: 0;
200
+ }
201
+ }
202
+
203
+ /* Override to allow for 2 columns instead of 3 */
204
+ .cols-2 {
205
+ max-width: 47%;
206
+ min-width: 40%;
207
+ }
208
+
209
+
210
+ }
211
+
212
+ .list-block-group {
213
+ margin: 1em 0 0 0;
214
+ padding: 0;
215
+ display: block;
216
+
217
+ section {
218
+ margin: 1em 0;
219
+
220
+ div {
221
+ display: inline-block;
222
+ height: 100px;
223
+ width: 100px;
224
+ padding: 0.3em;
225
+ }
226
+
227
+ div:nth-child(1) {
228
+ vertical-align: bottom;
229
+ }
230
+
231
+ div:nth-child(2) {
232
+ width: 35em;
233
+ height: 100px;
234
+
235
+ h3 {
236
+ margin: 0.7em 0 0 0;
237
+ padding: 0;
238
+ }
239
+ }
240
+ }
241
+ }
242
+ }
243
+
244
+
245
+ article.card-group {
246
+ display: -webkit-flex;
247
+ display: -ms-flexbox;
248
+ display: -o-flex;
249
+ display: flex;
250
+ -webkit-justify-content: flex-start;
251
+ -ms-justify-content: start;
252
+ justify-content: flex-start;
253
+ -webkit-flex-wrap: wrap;
254
+ -ms-flex-wrap: wrap;
255
+ flex-wrap: wrap;
256
+ -webkit-align-items: flex-start;
257
+ -ms-align-items: start;
258
+ align-items: flex-start;
259
+ padding: 0;
260
+
261
+ height: auto;
262
+ margin: 1em auto;
263
+
264
+
265
+ .card {
266
+ text-align: left;
267
+ padding: 0 1em 2em 0;
268
+ max-width: 15em;
269
+ margin: 0;
270
+ -webkit-flex: 1 1 auto;
271
+ -ms-flex: 1 1 auto;
272
+ flex: 1 1 auto;
273
+
274
+
275
+ /* background-color: #80c251; */
276
+ //background-image: -webkit-linear-gradient(top, #80c251 0, #80c251 34px, #fff 35px, #fff 100%);
277
+ //background-image: -moz-linear-gradient(top, #80c251 0, #80c251 34px, #fff 35px, #fff 100%);
278
+ //background-image: -o-linear-gradient(top, #80c251 0, #80c251 34px, #fff 35px, #fff 100%);
279
+ //background-image: linear-gradient(top, #80c251 0, #80c251 34px, #fff 35px, #fff 100%);
280
+
281
+ background-repeat: no-repeat;
282
+
283
+ h2 {
284
+ border: none;
285
+ margin: 0.2em 0 0.4em 0;
286
+ padding: 0;
287
+ color: $color-link-active;
288
+ font-size: 1.33em;
289
+ padding: 0;
290
+ border: none;
291
+ font-family: $font-regular;
292
+
293
+ a {
294
+ color: inherit;
295
+ }
296
+ }
297
+ .card-body {
298
+ border: $color-card-border thin solid;
299
+ padding: 0.2em 1em 1em 1em;
300
+ }
301
+ ul {
302
+ padding-left: 0;
303
+ }
304
+ li {
305
+ list-style: none;
306
+ margin-left: 1em;
307
+ }
308
+ }
309
+ }
310
+
311
+
312
+ article.cell-group {
313
+ display: -webkit-flex;
314
+ display: -ms-flexbox;
315
+ display: -o-flex;
316
+ display: flex;
317
+ -webkit-justify-content:space-between;
318
+ -ms-justify-content:justify;
319
+ justify-content: space-between;
320
+ -webkit-flex-wrap: wrap;
321
+ -ms-flex-wrap: wrap;
322
+ flex-wrap: wrap;
323
+ padding: 0;
324
+
325
+ height: auto;
326
+ margin: 1em auto;
327
+
328
+
329
+ .cell {
330
+ text-align: left;
331
+ padding: 0 1% 1em 0;
332
+ max-width: 16em;
333
+ margin: 0;
334
+ -webkit-flex: 1 1 auto;
335
+ -ms-flex: 1 1 auto;
336
+ flex: 1 1 auto;
337
+
338
+
339
+ /* background-color: #80c251; */
340
+ //background-image: -webkit-linear-gradient(top, #80c251 0, #80c251 34px, #fff 35px, #fff 100%);
341
+ //background-image: -moz-linear-gradient(top, #80c251 0, #80c251 34px, #fff 35px, #fff 100%);
342
+ //background-image: -o-linear-gradient(top, #80c251 0, #80c251 34px, #fff 35px, #fff 100%);
343
+ //background-image: linear-gradient(top, #80c251 0, #80c251 34px, #fff 35px, #fff 100%);
344
+
345
+ background-repeat: no-repeat;
346
+
347
+ h2 {
348
+ border: none;
349
+ margin: 0.2em 0 0.1em 0;
350
+ padding: 0;
351
+ color: $color-link-active;
352
+ font-size: 1.33em;
353
+ padding: 0;
354
+ border: none;
355
+ font-family: $font-regular;
356
+
357
+ a {
358
+ color: inherit;
359
+ }
360
+ }
361
+
362
+
363
+ h3 {
364
+ margin: 0.2em 0 0.3em 0;
365
+ padding: 0;
366
+ font-size: 1.2em;
367
+ font-weight: 100;
368
+ line-height: 1.8em;
369
+ padding: 0;
370
+ border: none;
371
+ font-family: $font-regular;
372
+
373
+ a {
374
+ color: inherit;
375
+ }
376
+ }
377
+
378
+
379
+
380
+
381
+ .cell-body {
382
+ border: none;
383
+ padding: 0.2em 1% 0.5em ;
384
+
385
+ p {
386
+ line-height: 1.3em;
387
+ margin-top: 0;
388
+ }
389
+ }
390
+ ul {
391
+ padding-left: 0;
392
+ }
393
+ li {
394
+ list-style: none;
395
+ margin-left: 1em;
396
+ }
397
+ }
398
+ }