Skip to content

Instantly share code, notes, and snippets.

View risuvoo's full-sized avatar
🚀
উড়তে হবে

RI Suvo risuvoo

🚀
উড়তে হবে
View GitHub Profile
@risuvoo
risuvoo / features.md
Last active March 5, 2026 07:12
Interact With Agent

✅ Done

(Completed features will appear here.)


🔄 In Progress

(Keep the one you are building here now)

@risuvoo
risuvoo / usable-vanilla-tab-feature.html
Created December 8, 2025 07:10
Tab Feature Html, JS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Tabs Demo</title>
</head>
<body>
<section data-tab-section="demo-tabs">
<div>
<ul>
@risuvoo
risuvoo / navigation-show-hide-swiper-slider.html
Created December 8, 2025 07:05
Show navigation button based on element possition
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Swiper demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1" />
<!-- Link Swiper's CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css" />
<script src="https://cdn.tailwindcss.com"></script>
@risuvoo
risuvoo / tailwind-4.1-config.css
Created December 4, 2025 05:54
tailwind-4.1 style guild
@import "tailwindcss";
@theme {
/* fonts */
--font-graphik: "Graphik", sans-serif;
--font-acaslon-pro: "ACaslonPro", serif;
/* font sizes */
--text-36: clamp(28px, 8px + 2vw, 36px);
@risuvoo
risuvoo / selecbox-html-css-js.md
Last active December 13, 2025 10:12
Custom Select Component

Custom Select Component

This repository includes a fully custom select implementation that replaces the native <select> control with an accessible, keyboard-friendly, and themeable component written in vanilla JavaScript and Tailwind CSS.


Features

  • 💡 Drop-in Replacement – Works with any <select> and keeps the original element in sync for form submissions.
@risuvoo
risuvoo / scroll_design.css
Created November 16, 2025 05:00
Scroll Design
/* width */
.primary-scrollbar::-webkit-scrollbar {
width: 2px;
}
/* Track */
.primary-scrollbar::-webkit-scrollbar-track {
background: #e7e5ff;
}
@risuvoo
risuvoo / starPercentage.txt
Created April 19, 2025 05:17
Review Star Percentage tailwindcss
<div class="w-full">
<svg class="hidden">
<symbol
id="star"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 23 23"
stroke-width="1.5"
class="size-5"
stroke="currentColor"
fill="none"
@risuvoo
risuvoo / circularProgress.txt
Last active April 17, 2025 04:20
Circular Progress Pure Css and SVG
html========
<div class="mini-chart">
<svg>
<circle
stroke="#e8e8e8"
cx="38"
cy="38"
r="33"
></circle>
@risuvoo
risuvoo / gist:e895f7f4f8e76bf56a3de552cecaaf7e
Last active February 22, 2025 08:41
Prettier Setup Lavavel
// Install this Package Link: https://www.npmjs.com/package/prettier-plugin-blade
npm install prettier-plugin-blade@^2
// create prettierrc file and add this code
{
"plugins": ["prettier-plugin-blade"],
"printWidth": 200,
@risuvoo
risuvoo / CountryCodes.json
Created September 29, 2024 11:10 — forked from anubhavshrimal/CountryCodes.json
Country and Dial or Phone codes in JSON format
[
{
"name": "Afghanistan",
"dial_code": "+93",
"code": "AF"
},
{
"name": "Aland Islands",
"dial_code": "+358",
"code": "AX"