Browse Source

some list css

Bachir Soussi Chiadmi 4 years ago
parent
commit
10b5c05b8b
6 changed files with 27 additions and 9 deletions
  1. 24 0
      assets/css/app.scss
  2. 0 1
      src/pages/Corpus.vue
  3. 0 1
      src/pages/Item.vue
  4. 1 3
      src/pages/Locorum.vue
  5. 1 2
      src/pages/Nominum.vue
  6. 1 2
      src/pages/Operum.vue

+ 24 - 0
assets/css/app.scss

@@ -115,6 +115,30 @@ section[role="main-content"]{
       }
     }
   }
+
+  #corpus, .index{
+    >header>h1{
+      font-family: "noto_sans";
+      color: $rouge;
+      font-weight: 400;
+    }
+
+    article.item{
+      margin: 2em 0 0;
+      header h1{
+        font-size: 1.323em;
+        color: $bleuroi;
+        font-weight: 400;
+        margin:0;
+      }
+    }
+  }
+
+  #corpus{
+  }
+
+  .index{
+  }
 }
 footer[role="tools"]{
   $list-item-h: 5.3em;

+ 0 - 1
src/pages/Corpus.vue

@@ -12,7 +12,6 @@
     </ul>
 
     <template v-slot:nav>
-      nav
     </template>
   </MainContentLayout>
 </template>

+ 0 - 1
src/pages/Item.vue

@@ -10,7 +10,6 @@
     <section v-html="item.tei" class="col-6"/>
 
     <template v-slot:nav>
-      tree
     </template>
   </MainContentLayout>
 </template>

+ 1 - 3
src/pages/Locorum.vue

@@ -1,5 +1,5 @@
 <template>
-  <MainContentLayout id="locorum">
+  <MainContentLayout id="locorum" class="index">
     <template v-slot:header>
       <h1>Lieux</h1>
       <span v-if="!items.length">Loading ...</span>
@@ -12,9 +12,7 @@
     </ul>
 
     <template v-slot:nav>
-      nav
     </template>
-
   </MainContentLayout>
 </template>
 

+ 1 - 2
src/pages/Nominum.vue

@@ -1,5 +1,5 @@
 <template>
-  <MainContentLayout id="nominum">
+  <MainContentLayout id="nominum" class="index">
     <template v-slot:header>
       <h1>Personnes</h1>
       <span v-if="!items.length">Loading ...</span>
@@ -12,7 +12,6 @@
     </ul>
 
     <template v-slot:nav>
-      nav
     </template>
   </MainContentLayout>
 </template>

+ 1 - 2
src/pages/Operum.vue

@@ -1,5 +1,5 @@
 <template>
-  <MainContentLayout id="operum">
+  <MainContentLayout id="operum" class="index">
     <template v-slot:header>
       <h1>Œuvres</h1>
       <span v-if="!items.length">Loading ...</span>
@@ -12,7 +12,6 @@
     </ul>
 
     <template v-slot:nav>
-      nav
     </template>
   </MainContentLayout>
 </template>