Ignore:
Timestamp:
2021-11-08T17:02:01+13:00 (2 years ago)
Author:
cstephen
Message:

Add footer information

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/model-interfaces-dev/atea/macron-restoration/src/App.vue

    r35723 r35724  
    11<template>
     2<div class="root">
    23    <div class="app-bar theme-primary">
    34        <div class="app-bar-content">
    45            <span class="heading1">{{ translations.get("Title") }}</span>
    5 
    6             <a class="btn-primary theme-primary-l1" href="http://www.maramatanga.co.nz" target="_blank">
    7                 <span class="material-icons mdi-m">open_in_new</span>
    8                 <u>Ngā Pae o te Māramatanga (Replace with image)</u>
    9             </a>
    106        </div>
    117    </div>
     
    2218        </div>
    2319    </div>
     20
     21    <div class="footer">
     22        <img src="img/logo_waikato_uni.jpg" alt="The University of Waikato Logo" />
     23
     24        <div>
     25            This service was funded by <a href="http://www.maramatanga.co.nz" target="_blank">Ngā Pae O Te Māramatanga</a> as
     26            part of the research related to the digitalization of the Pei Jones collection,
     27            and was developed at the <a href="https://www.waikato.ac.nz" target="_blank">University of Waikato</a>.
     28        </div>
     29        <img src="img/logo_nga_pae_o_te_maramatanga.jpg" alt="The Ngā Pae o te Māramatanga Logo" />
     30        <div>
     31            This website collects simple usage logs which will be used for development purposes only.
     32            No details which could be used to identify individuals will be collected and the data will be kept secure at the University of Waikato.
     33            If you do not wish for your activity to be included, click <a href="mailto:[email protected]">here</a> to notify Dr. Te Taka Keegan.
     34            Copyright &copy; 2014 University of Waikato
     35        </div>
     36    </div>
     37</div>
    2438</template>
    2539
    2640<style lang="scss">
    27 #transcription-list {
    28     margin-bottom: 1em;
     41html, body, #app {
     42    height: 100%;
     43}
     44
     45.root {
     46    display: flex;
     47    flex-direction: column;
     48    height: 100%;
    2949}
    3050
     
    5777    padding: 0;
    5878    margin: 1em;
     79    flex-grow: 1;
    5980}
    6081
     
    6384}
    6485
    65 // .transcription-list-item {
    66 //     transition: all 0.8s ease;
    67 //     margin-bottom: 1em;
     86.footer {
     87    display: grid;
     88    grid-template-columns: auto 1fr;
     89    gap: 1em;
    6890
    69 //     &:last-child {
    70 //         margin-bottom: 0;
    71 //     }
    72 // }
     91    box-shadow: 0px 0px 3px 2px #8a8a8a;
     92    padding: 1em;
     93    background-color: var(--paper-color);
    7394
    74 // .transcription-list-leave-to {
    75 //     opacity: 0;
    76 // }
     95    img {
     96        grid-column: 1;
     97        height: 48px;
     98    }
    7799
    78 // .transcription-list-leave-active {
    79 //     position: absolute;
    80 // }
     100    div {
     101        grid-column: 2;
     102    }
     103}
     104
     105.funding {
     106    display: flex;
     107    gap: 1em;
     108    align-items: center;
     109}
    81110</style>
    82111
Note: See TracChangeset for help on using the changeset viewer.