Explorar el Código

removed nav-wrapper and all styling from nav bar

tags/0.9.0
Alej hace 5 años
padre
commit
90b08f2cb2
Se han modificado 1 ficheros con 49 adiciones y 56 borrados
  1. 49
    56
      vue-theme/src/components/navigation/navigation.vue

+ 49
- 56
vue-theme/src/components/navigation/navigation.vue Ver fichero

@@ -1,64 +1,57 @@
1 1
 // Replace with calls to menu system
2 2
 <template lang="pug">
3
-.nav-wrapper.f-row.between.t-up
4
-    nav.main.f-grow.between
5
-        ul.f-row.between
6
-            li
7
-                router-link(to="/")
8
-                    h1.t-serif x
9
-                        span &nbsp;logotype
10
-            li
11
-                h5 &nbsp;
12
-            li
13
-                router-link(:to="`/`")
14
-                    h5 home
15
-            li
16
-                router-link(:to="`/episodes`")
17
-                    h5 pbs series
18
-            li
19
-                router-link(:to="`/artists`")
20
-                    h5 artists
21
-            li
22
-                router-link(:to="`/exhibitions`")
23
-                    h5 exhibitions
24
-            li
25
-                router-link(:to="`/events`")
26
-                    h5 events
27
-            li
28
-                router-link(:to="`/center`")
29
-                    h5 center
30
-            li
31
-                router-link(:to="`/education`")
32
-                    h5 education
33
-            li
34
-                router-link(:to="`/posts`")
35
-                    h5 news
36
-            li
37
-                router-link(:to="`/support`")
38
-                    h5 support
39
-            li
40
-                router-link(:to="`/search`")
41
-                    h5 search
3
+nav.main
4
+    ul
5
+        li
6
+            router-link(to="/")
7
+                h1.t-serif x
8
+                    span &nbsp;logotype
9
+        li
10
+            h5 &nbsp;
11
+        li
12
+            router-link(:to="`/`")
13
+                h5 home
14
+        li
15
+            router-link(:to="`/episodes`")
16
+                h5 pbs series
17
+        li
18
+            router-link(:to="`/artists`")
19
+                h5 artists
20
+        li
21
+            router-link(:to="`/exhibitions`")
22
+                h5 exhibitions
23
+        li
24
+            router-link(:to="`/events`")
25
+                h5 events
26
+        li
27
+            router-link(:to="`/center`")
28
+                h5 center
29
+        li
30
+            router-link(:to="`/education`")
31
+                h5 education
32
+        li
33
+            router-link(:to="`/posts`")
34
+                h5 news
35
+        li
36
+            router-link(:to="`/support`")
37
+                h5 support
38
+        li
39
+            router-link(:to="`/search`")
40
+                h5 search
42 41
 </template>
43 42
 
44 43
 <style lang="postcss">
45 44
 @import '../../sss/variables.sss'
46 45
 
47
-.nav-wrapper
48
-    background-color: green
49
-    width: 100%
50
-    nav.main
51
-        background-color: lightblue
52
-        max-width: $max-width
53
-        width: 90%
54
-        padding: $ms 0
55
-        align-items: flex-start
56
-        ul
57
-            background-color: grey
58
-            li
59
-                h5
60
-                    color: $cia_black
61
-                h1
62
-                    font-size: 1.5em
63
-                    color: $cia_red
46
+nav.main
47
+    background-color: lightblue
48
+    ul
49
+        width: 100%
50
+        background-color: grey
51
+        li
52
+            h5
53
+                color: $cia_black
54
+            h1
55
+                font-size: 1.5em
56
+                color: $cia_red
64 57
 </style>

Loading…
Cancelar
Guardar