{% extends 'base.html.twig' %}
{% block stylesheets %}
{{ parent() }}
<style>
html {
scroll-behavior: smooth;
}
html, body{
font-family: 'Poppins', sans-serif;
}
.title:nth-child(2n) {
color: var(--bs-primary);
}
#section-hero {
height: 80dvh;
}
#section-services img.icons {
width: 60px;
padding: 10px;
border-radius: 20px;
background-color: #CCFBF1;
}
img.icons:nth-child(2n+1) {
background-color: red;
}
.fs-tiny {
font-size: 0.8em;
}
.card-body li::marker {
content: "✅";
}
.card-body ul {
margin-bottom: 0;
}
@media (min-width: 768px) {
.carousel-inner {
display: flex;
}
.carousel-item {
margin-right: 0;
flex: 0 0 33.333333%;
display: block;
}
}
.carousel-inner{
padding: 1em;
}
.card{
margin: 0 .5em;
}
.carousel-control-prev, .carousel-control-next{
background-color: #e1e1e1;
width: 6vh;
height: 6vh;
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
}
</style>
{% endblock %}
{% block title %}
Jeram.dev
{% endblock %}
{% block body %}
{% set difference = date('now').diff(date('2017-07-26')) %}
{{ include('layouts/navbar.html.twig') }}
{{ include('layouts/flash_messages.html.twig') }}
{{ include('layouts/section/hero.html.twig') }}
{{ include('layouts/section/services.html.twig') }}
{{ include('layouts/section/demarrer.html.twig') }}
{{ include('layouts/section/portfolio.html.twig') }}
{{ include('layouts/section/testimonials.html.twig') }}
{{ include('layouts/section/about.html.twig') }}
{{ include('layouts/section/contact.html.twig') }}
{{ include('layouts/section/footer.html.twig') }}
{% endblock %}