Skip to content

Instantly share code, notes, and snippets.

View thenanosoft's full-sized avatar
💭
just play with coding

Nanosoft thenanosoft

💭
just play with coding
View GitHub Profile
@thenanosoft
thenanosoft / index.css
Created October 9, 2022 19:20
style sheet for Sterpi+GraphQL & ReactJS Project
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&display=swap');
/* root color theme */
:root {
--primary-color: #251B37;
--secondary-color: #372948;
--tertiary-color: #FFCACA;
--quaternary-color: #FFECEF;
--primary-font: 'Poppins', sans-serif;
@thenanosoft
thenanosoft / index.js
Created March 2, 2022 21:57
Create calculator calling different operators with functions in javascript
// Create calculator calling different operators with functions in javascript
function pow(value0, value1) {
return Math.pow(value0, value1);
}
function mod(value0, value1) {
return value0 % value1;
}
@thenanosoft
thenanosoft / index.html
Created September 8, 2021 07:52
Update all ahref links old to new using jquery with regex
<!--
Title: Update all ahref links old to new using jquery with regex
Developer: Farhan Ellahi
Website: www.thenanosoft.com
Instagram: @thenanosoft
-->
<!DOCTYPE html>
<html lang="en">