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

60 lines
1.3 KiB
PHP
Raw Normal View History

2023-07-25 14:32:35 +00:00
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM" crossorigin="anonymous">
<style>
body{
background-color: {{$_primary_background_color}};
font-family: {{$_schriftart}};
}
.bg-ci { background-color: {{$_primary_ci_color}};
}
footer { color: {{$_footer_color}} ;
}
footer a { color: {{$_footer_link_color}};}
h1,h2,h3,h4{color: {{$_title_color}}!important;}
.card{background-color: {{$_secondary_background_color}};}
.bg-primary{ background-color: {{$_primary_ci_color}} !important;}
a, a:hover, a:active {color:{{$_primary_link_color}};}
section{
margin-top: 200px;
margin-bottom: 200px;
}
section:first-of-type{
margin-top:40px;
margin-bottom: 200px;
}
section:last-of-type{
margin-top: 200px;
margin-bottom:40px;
}
.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;}
</style>