- larvale version 5.6 to 5.8
This commit is contained in:
parent
a2967b90ee
commit
265cfbcd30
43 changed files with 925 additions and 246 deletions
19
resources/sass/_variables.scss
Normal file
19
resources/sass/_variables.scss
Normal file
|
@ -0,0 +1,19 @@
|
|||
// Body
|
||||
$body-bg: #f8fafc;
|
||||
|
||||
// Typography
|
||||
$font-family-sans-serif: "Nunito", sans-serif;
|
||||
$font-size-base: 0.9rem;
|
||||
$line-height-base: 1.6;
|
||||
|
||||
// Colors
|
||||
$blue: #3490dc;
|
||||
$indigo: #6574cd;
|
||||
$purple: #9561e2;
|
||||
$pink: #f66D9b;
|
||||
$red: #e3342f;
|
||||
$orange: #f6993f;
|
||||
$yellow: #ffed4a;
|
||||
$green: #38c172;
|
||||
$teal: #4dc0b5;
|
||||
$cyan: #6cb2eb;
|
36
resources/sass/app1.scss
Normal file
36
resources/sass/app1.scss
Normal file
|
@ -0,0 +1,36 @@
|
|||
// Fonts
|
||||
// @import url("https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700,800");
|
||||
// npm install npm-font-open-sans --save-dev
|
||||
@import '../../../node_modules/npm-font-open-sans/open-sans';
|
||||
|
||||
// Variables
|
||||
// @import "variables";
|
||||
|
||||
// Bootstrap
|
||||
// $icon-font-path: "../fonts/bootstrap/";
|
||||
// @import "~bootstrap-sass/assets/stylesheets/bootstrap";
|
||||
|
||||
// npm i --save @fortawesome/fontawesome-free
|
||||
@import '~@fortawesome/fontawesome-free/scss/brands';
|
||||
@import '~@fortawesome/fontawesome-free/scss/regular';
|
||||
@import '~@fortawesome/fontawesome-free/scss/solid';
|
||||
@import '~@fortawesome/fontawesome-free/scss/fontawesome';
|
||||
|
||||
@import '~purecss-sass/vendor/assets/stylesheets/purecss/base';
|
||||
@import '~purecss-sass/vendor/assets/stylesheets/purecss/buttons';
|
||||
@import '~purecss-sass/vendor/assets/stylesheets/purecss/forms';
|
||||
@import '~purecss-sass/vendor/assets/stylesheets/purecss/menus';
|
||||
@import '~purecss-sass/vendor/assets/stylesheets/purecss/tables';
|
||||
@import '~purecss-sass/vendor/assets/stylesheets/purecss/grids';
|
||||
@import '~purecss-sass/vendor/assets/stylesheets/purecss/grids-responsive';
|
||||
|
||||
|
||||
|
||||
.navbar-laravel {
|
||||
background-color: #fff;
|
||||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
|
||||
}
|
||||
|
||||
.pure-form select {
|
||||
height: 2.5em;
|
||||
}
|
4
resources/sass/font-awesome.scss
vendored
Normal file
4
resources/sass/font-awesome.scss
vendored
Normal file
|
@ -0,0 +1,4 @@
|
|||
@import '~@fortawesome/fontawesome-free/scss/brands';
|
||||
@import '~@fortawesome/fontawesome-free/scss/regular';
|
||||
@import '~@fortawesome/fontawesome-free/scss/solid';
|
||||
@import '~@fortawesome/fontawesome-free/scss/fontawesome';
|
35
resources/sass/style.scss
Normal file
35
resources/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