ソースを参照

Merge branch 'master' of ssh://gitea.yvvas.com:4022/craft-in-america/vue-wp

tags/0.9.0
j 5年前
コミット
8289485198
1個のファイルの変更86行の追加110行の削除
  1. 86
    110
      vue-theme/src/components/footer.vue

+ 86
- 110
vue-theme/src/components/footer.vue ファイルの表示

@@ -1,122 +1,98 @@
1 1
 <template lang="pug">
2 2
 <footer>
3
-    ul
4
-        li
5
-            h5 Craft in America
6
-        li
7
-            h5 8415 W. Third St.
8
-        li
9
-            h5 Los Angeles, CA 90048
10
-        li
11
-            h5 Tues–Sat, 12PM–6PM
12
-        li
13
-            h5 (310) 659-9022 office
14
-        li
15
-            h5 (323) 951-0610 center
16
-        li
17
-            h5
18
-                a(href="mailto:info@craftinamerica.org") info@craftinamerica.org
19
-    
20
-    ul
21
-        li
22
-            h5 PBS Series
23
-        li
24
-            h5 Episodes
25
-        li
26
-            h5 Shorts
27
-        li
28
-            h5 Techniques
29
-    
30
-    ul
31
-        li
32
-            h5 Artists
33
-    
34
-    ul
35
-        li
36
-            h5 Exhibitions
37
-    
38
-    ul
39
-        li
40
-            h5 Explore Craft Objects
41
-    
42
-    ul   
43
-        li
44
-            h5 Center
45
-        li
46
-            h5 Events
47
-        li
48
-            h5 Talks
49
-        li
50
-            h5 Library
51
-    
52
-    ul
53
-        li
54
-            h5 Education
55
-        li
56
-            h5 Publications
57
-        li
58
-            h5 Library
59
-    
60
-    ul
61
-        li
62
-            h5 Support
63
-        li
64
-            h5 Donate
65
-        li
66
-            h5 Shop
67
-    
68
-    ul
69
-        li
70
-            h5 About
71
-        li
72
-            h5 Mission
73
-        li
74
-            h5 Staff
75
-        li
76
-            h5 Board
77
-        li
78
-            h5 Contact
79
-    
80
-    ul
81
-        li
82
-            h5 News
83
-        li
84
-            h5 Blog Posts
85
-        li
86
-            h5 Press Releases
87
-        li
88
-            h5 In the News
89
-    
90
-    ul
91
-        li
92
-            h5 Connect with us
93
-        li
94
-            h5
95
-                a(href="https://www.facebook.com/CraftinAmerica") Facebook
96
-        li
97
-            h5
98
-                a(href="http://www.youtube.com/user/craftinamerica") YouTube
99
-        li
100
-            h5
101
-                a(href="http://www.instagram.com/craftinamerica") Instagram
102
-        li
103
-            h5
104
-                a(href="https://twitter.com/CraftinAmerica") Twitter
105
-        li
106
-            h5
107
-                a(href="http://eepurl.com/hpwhn5") Join email list
108
-    
109
-    ul
110
-        li
111
-            p Craft in America © 2010–2021
3
+.footer-wrapper
4
+ul
5
+    li
6
+        h5 Craft in America
7
+            ul
8
+                li 8415 W. Third St.
9
+                li Los Angeles, CA 90048
10
+                li Tues–Sat, 12PM–6PM
11
+                li (310) 659-9022 office
12
+                li (323) 951-0610 center
13
+                li
14
+                    a(href="mailto:info@craftinamerica.org") info@craftinamerica.org
15
+ul
16
+    li
17
+        h5 PBS Series
18
+            ul
19
+                li Episodes
20
+                li Shorts
21
+                li Techniques
22
+    li
23
+        h5 Artists
24
+            ul
25
+                li A-Z
26
+                li By Material
27
+    li
28
+        h5 Exhibitions
29
+            ul
30
+                li Current/Upcoming
31
+                li Past
32
+                li Permanent Collection
33
+                li Explore Craft Objects
34
+    li
35
+        h5 Center
36
+            ul
37
+                li Events
38
+                li Talks
39
+                li Library
40
+    li
41
+        h5 Education
42
+            ul
43
+                li Publications
44
+                li Library
45
+    li
46
+        h5 Support
47
+            ul
48
+                li Donate
49
+                li Shop
50
+    li
51
+        h5 About
52
+            ul
53
+                li Mission
54
+                li Staff
55
+                li Board
56
+                li Contact
57
+    li
58
+        h5 News
59
+            ul
60
+                li Blog Posts
61
+                li Press Releases
62
+                li In the News
63
+ul
64
+    li
65
+        h5 Connect with Us
66
+            ul
67
+                li
68
+                    a(href="https://www.facebook.com/CraftinAmerica") Facebook
69
+                li
70
+                    a(href="http://www.youtube.com/user/craftinamerica") YouTube
71
+                li
72
+                    a(href="http://www.instagram.com/craftinamerica") Instagram
73
+                li
74
+                    a(href="https://twitter.com/CraftinAmerica") Twitter
75
+                li
76
+                    a(href="http://eepurl.com/hpwhn5") Join email list
112 77
 </footer>
78
+       ul
79
+            li
80
+                p Craft in America © 2010–2021
113 81
 
114 82
 </template>
115 83
 
116 84
 <style lang="postcss">
85
+$cia_red: #a10000
86
+$cia_white: #efefef
87
+$cia_grey: #777777
88
+
117 89
 footer
90
+    background-color: $cia_red
118 91
     h5
119
-        font-size: 1.8em
92
+        font-color: $cia_white
93
+        font-size: 0.8em
120 94
         font-weight: 700
121 95
         line-height: 1.0em
96
+    a   font color: $cia_grey
97
+
122 98
 </style>

読み込み中…
キャンセル
保存