Skip to content

Commit

Permalink
petite modification puis regeneration du css
Browse files Browse the repository at this point in the history
  • Loading branch information
bethuel2805 committed Jan 27, 2024
1 parent 9cb19db commit b3df514
Show file tree
Hide file tree
Showing 2 changed files with 133 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8"/>
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<script src="./cdn.tailwindcss.js"></script>
<!-- <script src="./cdn.tailwindcss.js"></script> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bozwa</title>
<style>
Expand Down
132 changes: 132 additions & 0 deletions src/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -548,14 +548,34 @@ video {
position: relative;
}

.sticky {
position: sticky;
}

.left-40 {
left: 10rem;
}

.top-0 {
top: 0px;
}

.top-20 {
top: 5rem;
}

.z-\[10\] {
z-index: 10;
}

.float-right {
float: right;
}

.m-5 {
margin: 1.25rem;
}

.mx-auto {
margin-left: auto;
margin-right: auto;
Expand All @@ -575,6 +595,10 @@ video {
margin-bottom: 2.5rem;
}

.mb-5 {
margin-bottom: 1.25rem;
}

.ml-32 {
margin-left: 8rem;
}
Expand Down Expand Up @@ -631,6 +655,10 @@ video {
height: 40px;
}

.h-\[80\%\] {
height: 80%;
}

.h-\[85px\] {
height: 85px;
}
Expand Down Expand Up @@ -699,6 +727,14 @@ video {
width: 550px;
}

.w-\[65\%\] {
width: 65%;
}

.w-\[80\%\] {
width: 80%;
}

.w-\[92\%\] {
width: 92%;
}
Expand All @@ -715,6 +751,10 @@ video {
flex-grow: 1;
}

.basis-2\/4 {
flex-basis: 50%;
}

.basis-4\/12 {
flex-basis: 33.333333%;
}
Expand Down Expand Up @@ -787,6 +827,10 @@ video {
gap: 1.5rem;
}

.gap-7 {
gap: 1.75rem;
}

.gap-8 {
gap: 2rem;
}
Expand Down Expand Up @@ -845,11 +889,21 @@ video {
background-color: rgb(243 112 33 / var(--tw-bg-opacity));
}

.bg-green-500 {
--tw-bg-opacity: 1;
background-color: rgb(34 197 94 / var(--tw-bg-opacity));
}

.bg-slate-300 {
--tw-bg-opacity: 1;
background-color: rgb(203 213 225 / var(--tw-bg-opacity));
}

.bg-slate-600 {
--tw-bg-opacity: 1;
background-color: rgb(71 85 105 / var(--tw-bg-opacity));
}

.bg-white {
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
Expand Down Expand Up @@ -910,6 +964,11 @@ video {
padding-right: 0.75rem;
}

.px-4 {
padding-left: 1rem;
padding-right: 1rem;
}

.px-5 {
padding-left: 1.25rem;
padding-right: 1.25rem;
Expand All @@ -925,11 +984,25 @@ video {
padding-bottom: 0.5rem;
}

.py-3 {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
}

.py-4 {
padding-top: 1rem;
padding-bottom: 1rem;
}

.py-5 {
padding-top: 1.25rem;
padding-bottom: 1.25rem;
}

.pb-1 {
padding-bottom: 0.25rem;
}

.pb-5 {
padding-bottom: 1.25rem;
}
Expand Down Expand Up @@ -966,6 +1039,11 @@ video {
line-height: 1.25rem;
}

.text-xl {
font-size: 1.25rem;
line-height: 1.75rem;
}

.font-bold {
font-weight: 700;
}
Expand All @@ -984,7 +1062,61 @@ video {
color: rgb(120 116 116 / var(--tw-text-opacity));
}

.text-\[\#F37021\] {
--tw-text-opacity: 1;
color: rgb(243 112 33 / var(--tw-text-opacity));
}

.text-\[\#f37021\] {
--tw-text-opacity: 1;
color: rgb(243 112 33 / var(--tw-text-opacity));
}

.text-white {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity));
}

.underline {
text-decoration-line: underline;
}

.decoration-\[\#F37021\] {
text-decoration-color: #F37021;
}

.underline-offset-8 {
text-underline-offset: 8px;
}

@keyframes bounce {
0%, 100% {
transform: translateY(-25%);
animation-timing-function: cubic-bezier(0.8,0,1,1);
}

50% {
transform: none;
animation-timing-function: cubic-bezier(0,0,0.2,1);
}
}

.hover\:animate-bounce:hover {
animation: bounce 1s infinite;
}

.hover\:tracking-widest:hover {
letter-spacing: 0.1em;
}

.hover\:underline:hover {
text-decoration-line: underline;
}

.hover\:decoration-\[\#F37021\]:hover {
text-decoration-color: #F37021;
}

.hover\:underline-offset-8:hover {
text-underline-offset: 8px;
}

0 comments on commit b3df514

Please sign in to comment.