├── js ├── intro └── main.js ├── icons ├── icons ├── basic-mad.png ├── basic-shock.png ├── basic-smile.png ├── basic-sussy.png ├── index.html ├── basic-shock.svg └── basic-smile.svg ├── icon.png ├── logo.png ├── cursor.png ├── docs ├── icon.png ├── logo.png ├── formcode.png ├── modes.html ├── use.html ├── formstyling.html └── index.html ├── savircssfont.woff ├── .github └── FUNDING.yml ├── pressedbutton.css ├── team └── index.html ├── contact └── index.html ├── mission └── index.html ├── README.md ├── index.html ├── everything.html ├── main3.css ├── mainbackup.css ├── main2.css ├── backup2.css ├── themainbackup.css └── main.css /js/intro: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /icons/icons: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savirsingh/SavirCSS/HEAD/icon.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savirsingh/SavirCSS/HEAD/logo.png -------------------------------------------------------------------------------- /cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savirsingh/SavirCSS/HEAD/cursor.png -------------------------------------------------------------------------------- /docs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savirsingh/SavirCSS/HEAD/docs/icon.png -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savirsingh/SavirCSS/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/formcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savirsingh/SavirCSS/HEAD/docs/formcode.png -------------------------------------------------------------------------------- /icons/basic-mad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savirsingh/SavirCSS/HEAD/icons/basic-mad.png -------------------------------------------------------------------------------- /savircssfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savirsingh/SavirCSS/HEAD/savircssfont.woff -------------------------------------------------------------------------------- /icons/basic-shock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savirsingh/SavirCSS/HEAD/icons/basic-shock.png -------------------------------------------------------------------------------- /icons/basic-smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savirsingh/SavirCSS/HEAD/icons/basic-smile.png -------------------------------------------------------------------------------- /icons/basic-sussy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/savirsingh/SavirCSS/HEAD/icons/basic-sussy.png -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry 13 | custom: https://buymeacoffee.com/savircss 14 | -------------------------------------------------------------------------------- /pressedbutton.css: -------------------------------------------------------------------------------- 1 | .pressed-button { 2 | border: none; 3 | padding: 20px; 4 | font-size: 20px; 5 | background-color: #f2ecdc; 6 | color: black; 7 | border-radius: 5px; 8 | box-shadow: 7px 6px 28px 1px rgba(0, 0, 0, 0.24); 9 | cursor:url(cursor.png), auto; 10 | outline: none; 11 | transition: 0.2s all; 12 | } 13 | /* Adding transformation when the button is active */ 14 | 15 | .pressed-button:active { 16 | transform: scale(0.98); 17 | /* Scaling button to 0.98 to its original size */ 18 | box-shadow: 3px 2px 22px 1px rgba(0, 0, 0, 0.24); 19 | /* Lowering the shadow */ 20 | } 21 | -------------------------------------------------------------------------------- /team/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |Our team consists of: Savir Singh.
31 | 32 |