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

69 lines
1.6 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}} ;
}
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;}
a, a:hover, a:active {color:{{$_primary_link_color}};}
2023-07-27 21:49:08 +00:00
.navbar a:hover{
color: {{$_title_color}};
}
.navbar a:active{
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{
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>