REST Service for POPCORN - ILIAS
alex
2025-06-03 c4f654f96671f592cae718c1211899995f003aa7
vue/src/App.vue
@@ -1,18 +1,58 @@
<script setup>
import Header from "./components/Header.vue"
import "./assets/styles.styl"
</script>
<template>
   <header>
      <h1>globus-ilias-rest UI</h1>
      <Header />
   </header>
   <main>
      <RouterView />
   </main>
</template>
<style scoped lang="stylus">
<style lang="stylus">
html, body {
   margin 0
   padding 0
   font-family ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji"
}
header
   position fixed;
   top 0
   left 0
   right 0
main
   margin 0 auto
   margin-top 3rlh
   max-width 1280px;
table
   border 1px solid
   border-collapse collapse
   thead
      background-color #ccc;
   tbody
      tr:nth-child(even)
         background-color #eee;
   td, th
      margin 0
      padding .33em .66em
      border 1px solid #ccc
small
   color #555
   font-size .66em;
</style>