{"id":16231246,"url":"https://github.com/matt-landers/bootstrap-extensions","last_synced_at":"2025-03-19T14:30:32.260Z","repository":{"id":88717189,"uuid":"127338541","full_name":"matt-landers/bootstrap-extensions","owner":"matt-landers","description":"A set of CSS classes that can extend the functionality of the bootstrap utilities. I find myself creating these in every project.","archived":false,"fork":false,"pushed_at":"2018-08-04T20:04:34.000Z","size":23,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-17T07:51:25.884Z","etag":null,"topics":["bootstrap","saas"],"latest_commit_sha":null,"homepage":null,"language":"CSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/matt-landers.png","metadata":{"files":{"readme":"README.MD","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-29T19:32:19.000Z","updated_at":"2021-11-04T18:41:30.000Z","dependencies_parsed_at":"2023-07-16T05:15:17.083Z","dependency_job_id":null,"html_url":"https://github.com/matt-landers/bootstrap-extensions","commit_stats":{"total_commits":21,"total_committers":2,"mean_commits":10.5,"dds":"0.33333333333333337","last_synced_commit":"c73cb803ba77166061ab76ab0b2630e56f86d10d"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matt-landers%2Fbootstrap-extensions","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matt-landers%2Fbootstrap-extensions/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matt-landers%2Fbootstrap-extensions/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/matt-landers%2Fbootstrap-extensions/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/matt-landers","download_url":"https://codeload.github.com/matt-landers/bootstrap-extensions/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244444417,"owners_count":20453722,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bootstrap","saas"],"created_at":"2024-10-10T13:04:47.979Z","updated_at":"2025-03-19T14:30:32.255Z","avatar_url":"https://github.com/matt-landers.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bootstrap Extensions\n \nThis repository contains a set of extensions for Bootstrap 4's utility classes.\n\nI consistently find myself adding these to projects, so I'm making the available to anyone that wants to use them.\n\n## Usage\n\n`\u003clink src=\"/node_modules/bootstrap-extensions/dist/bootstrap-extensions.css\"\u003e`\n\nYou can also build with your project by importing build.scss as long as you are using sass:\n`@import \"/node_modules/bootstrap-extensions/build.scss\";`\n\n** You can also only important the files you want as they all work indepedently of each other.\n\n## Table of Contents\n\n- [Typograpy](#typography)\n  - [Font Size](#font-size)\n  - [Font Weight](#font-weight)\n- [Positioning](#positioning)\n  - [Position](#position)\n  - [Location](#location)\n- [Overflow](#overflow)\n- [Cursor](#cursor)\n- [Opacity](#opacity)\n\n## Typography\n\n### Font Weight\n\nAll font weights (100-900) are available.\n\n* `.fw-100`\n* `...`\n* `.fw-900`\n\nExample:\n```css\n.fw-100 {\n    font-weight: 100 !important;\n}\n```\n\n### Font Size\n\nFont sizes from .25em through 5em via .25em increments starting at fs-1.\n\n* `.fs-1` \n* `...`\n* `.fs-20`\n\nExample:\n```css\n.fs-1 {\n    font-size: .25em !important;\n}\n```\n\n## Positioning\n\n### Position\n\n* `.position-absolute`\n* `.position-fixed`\n* `.position-relative`\n* `.position-static`\n* `.position-sticky`\n\nExample:\n```css\n.position-absolute {\n    position: absolute !important\n}\n```\n\n### Location\n\nPosition for left, right, top bottom with the values of 0, 50%, and 100%;\n\n* `.left-0`, `.left-50`, `.left-100`\n* `.right-0`, `.right-50`, `.right-100`\n* `.top-0`, `.top-50`, `.top-100`\n* `.bottom-0`, `.bottom-50`, `.bottom-100`\n\nExmaples:\n```css\n.left-0 {\n    left: 0 !important;\n}\n.left-50 {\n    left: 50% !important;\n}\n.left-100 {\n    left: 100% !important;\n}\n```\n\n## Overflow\n\nOverflow for each property (overflow (o), overflow-y (oy), overflow-x (ox)) and value hidden and scroll.\n\n* `.o-hidden`, `.o-scroll`\n* `.ox-hidden`, `.ox-scroll`\n* `.oy-hidden`, `.oy-scroll`\n\nExample:\n\n```css\n.o-hidden {\n    overflow: hidden !important;\n}\n```\n\n## Cursor\n\nAll available cursors can be referenced via `c-stylename`:\n\n```css\n.c-pointer {\n    cursor: pointer;\n}\n```\n\n## Cursor\n\nOpacity at .5 increments from 0-.95:\n\n```css\n.opacity-25 {\n    opacity: .25;\n}\n```\n\n# Additions\nIf you'd like to see additions, feel free to submit a pull request.\n\n# License\n\n[MIT](LICENSE) © Matt Landers","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatt-landers%2Fbootstrap-extensions","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmatt-landers%2Fbootstrap-extensions","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmatt-landers%2Fbootstrap-extensions/lists"}