mirror of
https://github.com/istiyakaminsanto/tailShape.git
synced 2025-12-26 10:27:01 +00:00
81 lines
3.1 KiB
HTML
81 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="./../../../dist/tailshape.css">
|
|
<link rel="stylesheet" href="https://demos.creative-tim.com/notus-js/assets/vendor/@fortawesome/fontawesome-free/css/all.min.css">
|
|
<script src="https://cdn.jsdelivr.net/gh/alpinejs/alpine@v2.8.2/dist/alpine.min.js" defer></script>
|
|
<title>Card 4</title>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
|
|
<button class="dark_mode_button_custom_style" id="dark_mood_toogler">
|
|
d
|
|
</button>
|
|
|
|
|
|
<!-- card 4 start -->
|
|
<section class="section_divider" id="card_4">
|
|
<div>Card 4</div>
|
|
</section>
|
|
<div class=" my-10 mx-auto max-w-lg p-4 shadow-md dark:bg-gray-900 dark:text-gray-100">
|
|
<div class="flex justify-between pb-4 border-bottom">
|
|
<div class="flex items-center">
|
|
<a rel="noopener noreferrer" href="#" class="mb-0 capitalize dark:text-gray-100">Photography</a>
|
|
</div>
|
|
<a rel="noopener noreferrer" href="#">See All</a>
|
|
</div>
|
|
<div class="space-y-4">
|
|
<div class="space-y-2">
|
|
<img src="https://source.unsplash.com/random/480x360/?4" alt="" class="block object-cover object-center w-full rounded-md h-72 dark:bg-gray-500">
|
|
<div class="flex items-center text-xs">
|
|
<span>6 min ago</span>
|
|
</div>
|
|
</div>
|
|
<div class="space-y-2">
|
|
<a rel="noopener noreferrer" href="#" class="block">
|
|
<h3 class="text-xl font-semibold dark:text-green-400">Facere ipsa nulla corrupti praesentium pariatur architecto</h3>
|
|
</a>
|
|
<p class="leading-snug dark:text-gray-400">Lorem ipsum dolor sit amet consectetur, adipisicing elit. Repellat, excepturi. Lorem ipsum dolor sit amet consectetur, adipisicing elit. Repellat, excepturi.</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- card 4 end -->
|
|
|
|
|
|
|
|
|
|
|
|
<!-- start of script section -->
|
|
<script type="text/javascript">
|
|
let toogler = document.getElementById("dark_mood_toogler");
|
|
let doc_html_el = document.getElementsByTagName('html')[0];
|
|
|
|
doc_html_el.addEventListener('keyup',(e)=>{
|
|
// key 220 is the backward slash , need to press ctrl+ \ to activate or deactivate darkmode
|
|
if(e.ctrlKey && e.keyCode =='220'){
|
|
doc_html_el.className =='' ? doc_html_el.classList.add('dark'):doc_html_el.classList.remove('dark');
|
|
|
|
}
|
|
})
|
|
doc_html_el.addEventListener('keyup',(e)=>{
|
|
// key 191 is the forward slash , need to press ctrl+ / to show or hide the darkmode button
|
|
if(e.ctrlKey && e.keyCode =='191'){
|
|
toogler.style.display =='block'? toogler.style.display = 'none':toogler.style.display ='block';
|
|
|
|
}
|
|
})
|
|
toogler.addEventListener('click',()=>{
|
|
doc_html_el.className =='' ? doc_html_el.classList.add('dark'):doc_html_el.classList.remove('dark');
|
|
console.log(doc_html_el.className);
|
|
})
|
|
</script>
|
|
<!-- end of script section -->
|
|
|
|
</body>
|
|
</html> |