Skip to content

Commit 1692b38

Browse files
author
Ari
committed
Add assets, add more components
1 parent db55aec commit 1692b38

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1230
-32
lines changed

.eslintrc.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ module.exports = {
2525
'generator-star-spacing': 'off',
2626
// allow debugger during development
2727
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
28-
'indent': ["error", 4]
28+
'indent': ["error", 4],
29+
'space-before-function-paren': ['warn', 'always']
2930

3031

3132
}

src/App.vue

+17-6
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,54 @@
11
<template>
22
<div id="app">
3+
<Header appName="cc-chooser"/>
34
<div class="container" id="site-container">
4-
<img src="./assets/logo.png">
55
<Chooser/>
66
<hr>
7-
7+
<HelpSection/>
88
<hr>
99
<HTMLGenerator/>
1010
</div>
11+
<Footer/>
1112
</div>
1213
</template>
1314

1415
<script>
1516
import HelloWorld from './components/HelloWorld'
1617
import Chooser from './components/Chooser'
18+
import HelpSection from './components/HelpSection'
1719
import HTMLGenerator from './components/HTMLGenerator'
20+
import SelectedLicense from './components/SelectedLicense'
21+
import { Header, Footer } from '@creativecommons/vocabulary/vocabulary.common'
1822
1923
export default {
2024
name: 'App',
2125
components: {
2226
HelloWorld,
2327
Chooser,
24-
HTMLGenerator
28+
HelpSection,
29+
HTMLGenerator,
30+
Header,
31+
Footer,
32+
SelectedLicense
2533
}
2634
}
2735
</script>
2836

2937
<style>
38+
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro%3A400%2C600%2C700%7CRoboto+Condensed&ver=4.9.8");
39+
3040
#app {
31-
font-family: 'Avenir', Helvetica, Arial, sans-serif;
3241
-webkit-font-smoothing: antialiased;
3342
-moz-osx-font-smoothing: grayscale;
34-
text-align: center;
3543
color: #2c3e50;
36-
margin-top: 60px;
3744
}
3845
3946
hr {
4047
margin-left: 5%;
4148
margin-right: 5%;
4249
}
50+
51+
#site-container {
52+
padding-top: 3%;
53+
}
4354
</style>

src/assets/cc-heart.white.svg

+56
Loading

0 commit comments

Comments
 (0)