summaryrefslogblamecommitdiff
path: root/iridescence/src/App.vue
blob: 8e4e1ec4258459b2232a95d1f7c3b69d2493ede4 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13

                










                                                                                   
                     


           
        
                                               
                                             
                                             
 


                
            

           
   



                   
                 






















                                                                            
                           
 
                                           








                         
        
<template>
  <div id="app">
    <div id="main">
      <Navbar></Navbar>
      <BusyBar></BusyBar>
      <transition
        mode="out-in"
        enter-active-class="animate__animated animate__fadeInRight animate__faster"
        leave-active-class="animate__animated animate__fadeOutLeft animate__faster"
      >
        <router-view />
      </transition>
    </div>
    <Footer></Footer>
  </div>
</template>

<script>
import BusyBar from "@/components/BusyBar.vue";
import Navbar from "@/components/Navbar.vue";
import Footer from "@/components/Footer.vue";

export default {
  name: "App",
  components: {
    BusyBar,
    Navbar,
    Footer
  }
};
</script>

<style lang="scss">
@charset "utf-8";

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Oxygen&display=swap");
$family-sans-serif: "Oxygen", sans-serif;

/* Custom colors */
$viridian-green: #2b9292ff;
$cultured: #f4f6f6ff;
$gainsboro: #dee5e5ff;
$queen-blue: #41668cff;
$madder-lake: #cc2936ff;
$rich-black-fogra-29: #001011ff;

/* Color overrides */
$primary: $viridian-green;
$danger: $madder-lake;
$info: $queen-blue;
$link: $queen-blue;
$black: $rich-black-fogra-29;
$scheme-main: $cultured;
$scheme-main-bis: $gainsboro;

/* Resizing */
$modal-content-width: 50em;

@import "../node_modules/bulma/bulma.sass";

#app {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
#main {
  flex: 1;
}
</style>