basic-business-template/content/includes/css.blade.php

85 lines
2.2 KiB
PHP
Raw Normal View History

2023-10-30 08:20:26 +00:00
<link href="{{storage('assets/libs/bootstrap-5.3.0/bootstrap.min.css')}}" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
2023-07-25 14:32:35 +00:00
<style>
body{
background-color: {{$_primary_background_color}};
font-family: {{$_schriftart}};
2023-12-17 14:32:12 +00:00
background-image: url("{{$_background_pattern}}");
background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%239C92AC' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
2023-07-25 14:32:35 +00:00
}
2023-12-17 14:32:12 +00:00
2023-07-25 14:32:35 +00:00
.bg-ci { background-color: {{$_primary_ci_color}};
}
footer { color: {{$_footer_color}} ;
}
2023-07-27 21:49:08 +00:00
footer a, .breadcrumb a , .breadcrumb .breadcrumb-item { color: {{$_footer_link_color}};}
footer a:hover,.breadcrumb a:hover { color: {{$_footer_secondary_link_color}};}
2023-07-25 14:32:35 +00:00
h1,h2,h3,h4{color: {{$_title_color}}!important;}
.card{background-color: {{$_secondary_background_color}};}
.bg-primary{ background-color: {{$_primary_ci_color}} !important;}
2023-09-13 15:35:14 +00:00
.bg-secondary{ background-color: {{$_secondary_background_color}} !important;}
2023-07-25 14:32:35 +00:00
a, a:hover, a:active {color:{{$_primary_link_color}};}
2023-07-27 21:49:08 +00:00
.navbar a:hover{
color: {{$_title_color}};
}
2023-08-09 13:49:13 +00:00
.navbar a:last-of-type{
margin-right: 0px;
}
2023-08-09 16:37:01 +00:00
.navbar .nav-link:active{}
.navbar-nav .nav-link.active{
2023-08-09 16:12:12 +00:00
color: {{$_title_color}};
2023-07-27 21:49:08 +00:00
font-weight: bold;
}
2023-07-25 14:32:35 +00:00
section{
margin-top: 200px;
margin-bottom: 200px;
}
section:first-of-type{
margin-top:40px;
margin-bottom: 200px;
}
section:last-of-type{
2023-10-31 00:04:27 +00:00
margin-top: 150px;
margin-bottom: 50px;
2023-07-25 14:32:35 +00:00
}
.btn-primary{
background-color: {{$_primary_ci_color}};
border-color: {{$_primary_ci_color}};
}
.btn-primary:hover, .btn-primary:active{
background-color: {{$_primary_ci_color}};
border-color: {{$_primary_ci_color}};
}
.nav-item{
margin-right: 40px;
}
.nav-item{last-of-type: margin-right:0px;}
2023-08-09 13:49:13 +00:00
.breadcrumb-item + .breadcrumb-item::before {
color: inherit;
}
2023-07-25 14:32:35 +00:00
</style>