💻
koding
Pinned Loading
-
This code will add a darkmode class ...
This code will add a darkmode class on darkmode turned on with the local storage, and will change the darkmode image using the the data attribute. 1<!-- Button HTML -->
2<div class="darkmode d-flex">
3<p class="my-auto">Darkmode: </p>
4<div class="form-check form-switch ms-2 transform-icon">
5<input data-text="Turn on or off dark mode" class="darkModeButton form-check-input shadow-none" type="checkbox" role="switch">
-
Laravel 404 Route for Custom View
Laravel 404 Route for Custom View 1Route::fallback(function () {
2$view = 'errors.404';
3return view($view);
4});
5 -
Basic structure of default status ac...
Basic structure of default status active or in active. 1{
2"default": "1",
3"options": {
4"0": "In Active",
5"1": "Active"
-
This will ellipse the text means if ...
This will ellipse the text means if there are {n} no. lines and you want after that my text should not be overflow instead of that it should be three dots. (For Example: This is the paragraph and the length of it more than my expectat...) 1// This is for single line
2.text-ellipsis {
3white-space: nowrap;
4overflow: hidden;
5text-overflow: ellipsis;
-
To change the iPhone Status bar color.
To change the iPhone Status bar color. 1<meta name="theme-color" content="#92C142">
-
A Modern good looking and trending b...
A Modern good looking and trending button or link design on hover that make a background color on the text with the smooth cubic animation. 1<!DOCTYPE html>
2<html lang="en">
3<head>
4<meta charset="UTF-8">
5<meta name="viewport" content="width=device-width, initial-scale=1.0">
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.