updating theme
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -25,6 +25,7 @@ pnpm-debug.log*
|
||||
# Custom
|
||||
src/assets/deck_of_cards
|
||||
src/assets/avatars
|
||||
src/assets/navbar
|
||||
|
||||
# terraform
|
||||
*.terraform
|
||||
|
||||
30
src/App.vue
30
src/App.vue
@@ -8,7 +8,7 @@
|
||||
app
|
||||
:expand-on-hover="true"
|
||||
overflow
|
||||
color="#070042"
|
||||
color="#272935"
|
||||
>
|
||||
<v-list>
|
||||
<v-list-item
|
||||
@@ -18,28 +18,31 @@
|
||||
:to="item.link"
|
||||
>
|
||||
<v-list-item-icon>
|
||||
<v-icon >{{ item.icon }}</v-icon>
|
||||
<!-- <v-icon>{{ item.icon }}</v-icon> -->
|
||||
<v-img :src="item.icon" width="50"></v-img>
|
||||
</v-list-item-icon>
|
||||
|
||||
<v-list-item-content >
|
||||
<v-list-item-title>{{ item.title }}</v-list-item-title>
|
||||
<v-list-item-content>
|
||||
<v-list-item-title class="text-button">{{
|
||||
item.title
|
||||
}}</v-list-item-title>
|
||||
</v-list-item-content>
|
||||
</v-list-item>
|
||||
</v-list>
|
||||
</v-navigation-drawer>
|
||||
|
||||
<v-app-bar :clipped-left="false" app color="#070042" >
|
||||
<v-app-bar :clipped-left="false" app color="#272935">
|
||||
<v-app-bar-nav-icon
|
||||
@click.stop="primaryDrawer.model = !primaryDrawer.model"
|
||||
></v-app-bar-nav-icon>
|
||||
<v-toolbar-title >Onmyoji Deck Builder</v-toolbar-title>
|
||||
<v-toolbar-title>Onmyoji Deck Builder</v-toolbar-title>
|
||||
</v-app-bar>
|
||||
|
||||
<v-main>
|
||||
<router-view></router-view>
|
||||
</v-main>
|
||||
|
||||
<v-footer :inset="false" color="#04002E" app>
|
||||
<v-footer :inset="false" color="#272935" app>
|
||||
<!-- <span class="px-4"
|
||||
>© {{ new Date().getFullYear() }} Daniel Tomlinson</span
|
||||
>
|
||||
@@ -53,12 +56,13 @@
|
||||
|
||||
<script>
|
||||
import {
|
||||
mdiViewDashboard,
|
||||
mdiCalculator,
|
||||
mdiHelpBox,
|
||||
mdiGithub,
|
||||
} from "@mdi/js";
|
||||
|
||||
const home_icon = require(`@/assets/navbar/0000034a.png`);
|
||||
const deck_icon = require(`@/assets/navbar/00000047.png`);
|
||||
const help_icon = require(`@/assets/navbar/00000121.png`);
|
||||
|
||||
export default {
|
||||
name: "App",
|
||||
|
||||
@@ -66,9 +70,9 @@ export default {
|
||||
primaryDrawer: {
|
||||
model: true,
|
||||
items: [
|
||||
{ title: "Home", icon: mdiViewDashboard, link: "/" },
|
||||
{ title: "Deck Builder", icon: mdiCalculator, link: "deck-builder" },
|
||||
{ title: "Help", icon: mdiHelpBox, link: "help" },
|
||||
{ title: "Home", icon: home_icon, link: "/" },
|
||||
{ title: "Deck Builder", icon: deck_icon, link: "deck-builder" },
|
||||
{ title: "Help", icon: help_icon, link: "help" },
|
||||
],
|
||||
},
|
||||
icons: {
|
||||
|
||||
BIN
src/assets/000000c6.png
Normal file
BIN
src/assets/000000c6.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.2 MiB |
Binary file not shown.
|
Before Width: | Height: | Size: 45 KiB |
@@ -1,3 +1,3 @@
|
||||
$material-dark: (
|
||||
'background': #04002E
|
||||
'background': #16192B
|
||||
);
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
x-large
|
||||
@click="data.select"
|
||||
@click:close="remove_shikigami(data.item)"
|
||||
color="#070042"
|
||||
color="#C0B094"
|
||||
>
|
||||
<v-avatar size="90" left>
|
||||
<v-img
|
||||
@@ -76,7 +76,7 @@
|
||||
<!-- deck_title: {{ deck_title }} -->
|
||||
</v-row>
|
||||
<v-row v-for="(_, index) in selected_shikigami_names" :key="index">
|
||||
<v-card elevation="2" width="100%" class="pa-3" flat tile color="#070042">
|
||||
<v-card elevation="2" width="100%" class="pa-3" flat tile color="#171D29">
|
||||
<v-row>
|
||||
<v-col cols="2">
|
||||
<div cols="12">
|
||||
@@ -118,7 +118,7 @@
|
||||
label
|
||||
@click="data.select"
|
||||
@click:close="remove_decks(index, data.index)"
|
||||
color="#04002E"
|
||||
color="#C0B094"
|
||||
>{{ data.item.name }}</v-chip
|
||||
></template
|
||||
>
|
||||
@@ -132,7 +132,7 @@
|
||||
v-for="i in selected_shikigami_decks[index][index]"
|
||||
:key="i.id"
|
||||
width="12.3%"
|
||||
color="#070042"
|
||||
color="#171D29"
|
||||
>
|
||||
<!-- <div class="text-center">
|
||||
{{ i.name }}
|
||||
@@ -149,7 +149,6 @@
|
||||
</v-row>
|
||||
<v-row>
|
||||
<!-- <v-textarea :value="construct_url()" color="teal"> </v-textarea> -->
|
||||
<v-textarea :value="construct_url()" color="teal"> </v-textarea>
|
||||
</v-row>
|
||||
</v-container>
|
||||
</template>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<v-row class="text-center">
|
||||
<v-col cols="12">
|
||||
<v-img
|
||||
:src="require('../assets/front_page_shikigami.png')"
|
||||
:src="require('../assets/000000c6.png')"
|
||||
class="my-3"
|
||||
contain
|
||||
height="500"
|
||||
@@ -14,7 +14,7 @@
|
||||
<h1 class="display-2 font-weight-bold mb-3">Onmyoji Deck Builder</h1>
|
||||
|
||||
<p class="subheading font-weight-regular">Build and share decks.</p>
|
||||
<v-btn elevation="1" x-large color="#EA6F1A">Get started</v-btn>
|
||||
<v-btn elevation="1" x-large color="#C0B094">Get started</v-btn>
|
||||
</v-col>
|
||||
</v-row>
|
||||
<!-- <v-row class="text-center">
|
||||
|
||||
Reference in New Issue
Block a user