Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions assets/css/styles.min.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
body{
overflow-x: hidden;
}
.mre5 {
margin-right: 35px !important
}
Expand Down
156 changes: 156 additions & 0 deletions assets/css/styles_contact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
body{
overflow-y: hidden;
}
.mre5 {
margin-right: 35px !important
}

#logo {
height: 70px;
padding-left: 0
}

nav li {
display: inline-block;
position: relative;
}

nav li:after {
content: '';
position: absolute;
width: 90%;
transform: scaleX(0);
height: 2px;
bottom: 0;
left: 0;
background-color: var(--bs-green);
transform-origin: bottom right;
transition: transform 0.25s ease-out;
}

nav li:hover:after {
transform: scaleX(1);
transform-origin: bottom left;
}

#demo,
.bs-icon-circle.bs-icon-primary.bs-icon,
.bs-icon-md.bs-icon-circle.bs-icon-primary.bs-icon.bs-icon-md {
background-color: var(--bs-green)
}

.bg-white-300 {
background: rgba(255, 255, 255, .3) !important
}

.rounded-bottom-left {
border-radius: 0;
border-bottom-left-radius: .25rem !important
}

.rounded-bottom-right {
border-radius: 0;
border-bottom-right-radius: .25rem !important
}

.fit-cover {
object-fit: cover
}

.btn {
border-color: var(--bs-green);
background-color: var(--bs-green)
}

.divider {
padding-bottom: 50px
}

.btn:hover {
background-color: var(--bs-success);
border-color: var(--bs-green);
}

svg {
color: var(--bs-white)
}

.iconsz {
font-size: 50px
}

#mookup {
margin-top: -200px;
margin-bottom: -170px
}

.bs-icon {
--bs-icon-size: .75rem;
display: flex;
flex-shrink: 0;
justify-content: center;
align-items: center;
font-size: var(--bs-icon-size);
width: calc(var(--bs-icon-size) * 2);
height: calc(var(--bs-icon-size) * 2);
color: var(--bs-primary)
}

.bs-icon-xs {
--bs-icon-size: 1rem;
width: calc(var(--bs-icon-size) * 1.5);
height: calc(var(--bs-icon-size) * 1.5)
}

.bs-icon-sm {
--bs-icon-size: 1rem
}

.bs-icon-md {
--bs-icon-size: 1.5rem
}

.bs-icon-lg {
--bs-icon-size: 2rem
}

.bs-icon-xl {
--bs-icon-size: 2.5rem
}

.bs-icon.bs-icon-primary {
color: var(--bs-white);
background: var(--bs-primary)
}

.bs-icon.bs-icon-primary-light {
color: var(--bs-primary);
background: rgba(var(--bs-primary-rgb), .2)
}

.bs-icon.bs-icon-semi-white {
color: var(--bs-primary);
background: rgba(255, 255, 255, .5)
}

.bs-icon.bs-icon-rounded {
border-radius: .5rem
}

.bs-icon.bs-icon-circle {
border-radius: 50%
}

.link-secondary {
color: #000
}

.link-secondary:hover {
color: var(--bs-green)
}

#cb-cookie-banner {
width:100%;
z-index:999;
border-radius:0
}
2 changes: 1 addition & 1 deletion contacts.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<meta property="og:locale:alternate" content="fr_FR" />
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&amp;display=swap">
<link rel="stylesheet" href="assets/css/styles.min.css">
<link rel="stylesheet" href="assets/css/styles_contact.css">
</head>

<body style="/*background: url(&quot;design.jpg&quot;);*/background-position: 0 -60px;">
Expand Down