You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bit4sat/web/src/App.vue

49 lines
794 B
Vue

<template>
<div id="app" class="flex flex-column items-center">
<div id="logo" class="w-100 flex justify-center items-end">
<span class="logo-titla f1 lh-title tracked">BIT4SAT</span>
</div>
<div class="main h-100 w-100 flex mt5 items-start justify-center">
<router-view />
</div>
</div>
</template>
<script charset="utf-8">
</script>
<style>
#app {
height: 100vh;
}
#logo {
height: 35%;
color: #FF725C;
font-style: italic;
font-weight: bolder;
text-shadow: 2px 3px #444, -2px -2px #444;
}
.unpaid {
background-color: pink;
}
.expired {
background-color: yellow;
}
.paid {
background-color: lightgreen;
}
.last-upload {
background: cyan;
}
.dl-link{
color: #d33b00
}
</style>