my changes
This commit is contained in:
parent
28301e4312
commit
8dc1f1b048
263 changed files with 36882 additions and 4453 deletions
27
resources/assets/js/bootstrap.js
vendored
Normal file
27
resources/assets/js/bootstrap.js
vendored
Normal file
|
@ -0,0 +1,27 @@
|
|||
/**
|
||||
* We'll load the axios HTTP library which allows us to easily issue requests
|
||||
* to our Laravel back-end. This library automatically handles sending the
|
||||
* CSRF token as a header based on the value of the "XSRF" token cookie.
|
||||
*/
|
||||
try {
|
||||
window.$ = window.jQuery = require('jquery');
|
||||
// require('bootstrap-sass');
|
||||
} catch (e) {}
|
||||
|
||||
window.axios = require('axios');
|
||||
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
|
||||
|
||||
/**
|
||||
* Next we will register the CSRF Token as a common header with Axios so that
|
||||
* all outgoing HTTP requests automatically have it attached. This is just
|
||||
* a simple convenience so we don't have to attach every token manually.
|
||||
*/
|
||||
|
||||
let token = document.head.querySelector('meta[name="csrf-token"]');
|
||||
|
||||
if (token) {
|
||||
window.axios.defaults.headers.common['X-CSRF-TOKEN'] = token.content;
|
||||
}
|
||||
else {
|
||||
console.error('CSRF token not found: https://laravel.com/docs/csrf#csrf-x-csrf-token');
|
||||
}
|
22
resources/assets/js/lib.js
Normal file
22
resources/assets/js/lib.js
Normal file
|
@ -0,0 +1,22 @@
|
|||
/**
|
||||
* First we will load all of this project's JavaScript dependencies which
|
||||
* includes Vue and other libraries. It is a great starting point when
|
||||
* building robust, powerful web applications using Vue and Laravel.
|
||||
*/
|
||||
require('./bootstrap');
|
||||
window.Vue = require('vue');
|
||||
|
||||
Vue.prototype.$http = axios;
|
||||
|
||||
// Vue.component('example', require('./components/Example.vue'));
|
||||
|
||||
// const app = new Vue({
|
||||
// el: '#app',
|
||||
|
||||
// data: {
|
||||
// loading: false,
|
||||
// downloading: false,
|
||||
// items: [],
|
||||
// message: "Just a test",
|
||||
// }
|
||||
// });
|
10
resources/assets/sass/app1.scss
Normal file
10
resources/assets/sass/app1.scss
Normal file
|
@ -0,0 +1,10 @@
|
|||
// Fonts
|
||||
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,600");
|
||||
|
||||
// Variables
|
||||
// @import "style";
|
||||
|
||||
// Bootstrap
|
||||
// $icon-font-path: "../fonts/bootstrap/";
|
||||
// @import "~bootstrap-sass/assets/stylesheets/bootstrap";
|
||||
|
35
resources/assets/sass/style.scss
Normal file
35
resources/assets/sass/style.scss
Normal file
|
@ -0,0 +1,35 @@
|
|||
html, body
|
||||
{
|
||||
font-family:"Raleway", sans-serif;
|
||||
font-size: 14px;
|
||||
line-height: 1.42857143;
|
||||
-ms-text-size-adjust: 100%;
|
||||
-webkit-text-size-adjust: 100%;
|
||||
margin:0;
|
||||
padding:0;
|
||||
height:100%;
|
||||
width:100%;
|
||||
}
|
||||
.fontface1
|
||||
{
|
||||
font-family: "Raleway", sans-serif;
|
||||
font-size: 26px;
|
||||
color: #99cc00;
|
||||
}
|
||||
|
||||
.title{
|
||||
margin-top: 1em;
|
||||
margin-bottom: 50px;
|
||||
padding-bottom: 1em;
|
||||
text-align: center;
|
||||
line-height: 1;
|
||||
border-bottom: 1px solid red;
|
||||
font-family: "Marvel", sans-serif;
|
||||
}
|
||||
|
||||
.marvel{
|
||||
color: #E41030;
|
||||
font-family: "Raleway", sans-serif;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue