ADD logo
This commit is contained in:
parent
326d4b7148
commit
e997f3ff2a
1
.gitignore
vendored
1
.gitignore
vendored
@ -11,3 +11,4 @@ selenium-debug.log
|
|||||||
firefox_root/
|
firefox_root/
|
||||||
GeckoChildCrash*
|
GeckoChildCrash*
|
||||||
electroshot-config.json
|
electroshot-config.json
|
||||||
|
tmpaddon*
|
||||||
|
|||||||
36
README.md
36
README.md
@ -1,28 +1,8 @@
|
|||||||
# vue-test
|
<h1 align="center">
|
||||||
|
<br>
|
||||||
> A Vue.js project
|
<a href="https://github.com/salomonelli/best-resume-ever">
|
||||||
|
<img src="" alt="Markdownify" width="200"></a>
|
||||||
## Build Setup
|
<br>
|
||||||
|
best-resume-ever
|
||||||
``` bash
|
<br>
|
||||||
# install dependencies
|
</h1>
|
||||||
npm install
|
|
||||||
|
|
||||||
# serve with hot reload at localhost:8080
|
|
||||||
npm run dev
|
|
||||||
|
|
||||||
# build for production with minification
|
|
||||||
npm run build
|
|
||||||
|
|
||||||
# build for production and view the bundle analyzer report
|
|
||||||
npm run build --report
|
|
||||||
|
|
||||||
# run unit tests
|
|
||||||
npm run unit
|
|
||||||
|
|
||||||
# run e2e tests
|
|
||||||
npm run e2e
|
|
||||||
|
|
||||||
# run all tests
|
|
||||||
npm test
|
|
||||||
```
|
|
||||||
|
|||||||
0
_config.yml
Normal file → Executable file
0
_config.yml
Normal file → Executable file
0
pdf/left-right.pdf
Normal file → Executable file
0
pdf/left-right.pdf
Normal file → Executable file
0
pdf/material-blue.pdf
Normal file → Executable file
0
pdf/material-blue.pdf
Normal file → Executable file
0
pdf/oblique.pdf
Normal file → Executable file
0
pdf/oblique.pdf
Normal file → Executable file
0
pdf/side-bar.pdf
Normal file → Executable file
0
pdf/side-bar.pdf
Normal file → Executable file
0
pdf/template.pdf
Normal file → Executable file
0
pdf/template.pdf
Normal file → Executable file
BIN
src/assets/logo.png
Normal file
BIN
src/assets/logo.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 46 KiB |
0
src/components/resume-left-right.vue
Normal file → Executable file
0
src/components/resume-left-right.vue
Normal file → Executable file
0
src/components/resume-material-blue.vue
Normal file → Executable file
0
src/components/resume-material-blue.vue
Normal file → Executable file
0
src/components/resume-oblique.vue
Normal file → Executable file
0
src/components/resume-oblique.vue
Normal file → Executable file
0
src/components/resume-side-bar.vue
Normal file → Executable file
0
src/components/resume-side-bar.vue
Normal file → Executable file
0
src/components/resume-template.vue
Normal file → Executable file
0
src/components/resume-template.vue
Normal file → Executable file
@ -1,6 +1,9 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="home">
|
<div class="home">
|
||||||
<a href="https://github.com/salomonelli/best-resume-ever" target="_blank"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
|
<a href="https://github.com/salomonelli/best-resume-ever" target="_blank"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
|
||||||
|
<div class="logo">
|
||||||
|
<img src="../assets/logo.png" />
|
||||||
|
</div>
|
||||||
<h3 class="title">best-resume-ever</h3>
|
<h3 class="title">best-resume-ever</h3>
|
||||||
<div class="previews">
|
<div class="previews">
|
||||||
<div class="preview">
|
<div class="preview">
|
||||||
@ -59,15 +62,25 @@ export default Vue.component('resume', {
|
|||||||
font-family: 'Roboto' !important;
|
font-family: 'Roboto' !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.logo{
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo img {
|
||||||
|
height: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
.title {
|
.title {
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
color: #ee6e73;
|
color: black;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
font-size: 3.56rem;
|
font-size: 30px;
|
||||||
line-height: 110%;
|
line-height: 110%;
|
||||||
margin: 1.78rem 0 1.424rem 0;
|
margin: 1.78rem 0 1.424rem 0;
|
||||||
|
margin-top: 0px;
|
||||||
|
margin-bottom: 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.previews{
|
.previews{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user