Found 38 repositories(showing 30)
icons8
Free Flat Color Icons
dheereshag
The coloured icons library is a collection of brand logos and tech stack logos. It's a handy resource to easily add brand icons to your projects without the hassle of manual attribution.
Renovamen
A Vue component for importing inline SVG icons from different popular icon packs easily.
Sfedfcv
Skip to content github / docs Code Issues 80 Pull requests 35 Discussions Actions Projects 2 Security Insights Merge branch 'main' into 1862-Add-Travis-CI-migration-table 1862-Add-Travis-CI-migration-table (#1869, Iixixi/ZachryTylerWood#102, THEBOLCK79/docs#1, sbnbhk/docs#1) @martin389 martin389 committed on Dec 9, 2020 2 parents 2f9ec0c + 1588f50 commit 1a56ed136914e522f3a23ecc2be1c49f479a1a6a Showing 501 changed files with 5,397 additions and 1,362 deletions. 2 .github/allowed-actions.js @@ -30,7 +30,7 @@ module.exports = [ 'rachmari/labeler@832d42ec5523f3c6d46e8168de71cd54363e3e2e', 'repo-sync/github-sync@3832fe8e2be32372e1b3970bbae8e7079edeec88', 'repo-sync/pull-request@33777245b1aace1a58c87a29c90321aa7a74bd7d', 'rtCamp/action-slack-notify@e17352feaf9aee300bf0ebc1dfbf467d80438815', 'someimportantcompany/github-actions-slack-message@0b470c14b39da4260ed9e3f9a4f1298a74ccdefd', 'tjenkinson/gh-action-auto-merge-dependency-updates@cee2ac0', 'EndBug/add-and-commit@9358097a71ad9fb9e2f9624c6098c89193d83575' ] 72 .github/workflows/confirm-internal-staff-work-in-docs.yml @@ -0,0 +1,72 @@ name: Confirm internal staff meant to post in public on: issues: types: - opened - reopened - transferred pull_request_target: types: - opened - reopened jobs: check-team-membership: runs-on: ubuntu-latest continue-on-error: true if: github.repository == 'github/docs' steps: - uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9 with: github-token: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }} script: | // Only perform this action with GitHub employees try { await github.teams.getMembershipForUserInOrg({ org: 'github', team_slug: 'employees', username: context.payload.sender.login, }); } catch(err) { // An error will be thrown if the user is not a GitHub employee // If a user is not a GitHub employee, we should stop here and // Not send a notification return } // Don't perform this action with Docs team members try { await github.teams.getMembershipForUserInOrg({ org: 'github', team_slug: 'docs', username: context.payload.sender.login, }); // If the user is a Docs team member, we should stop here and not send // a notification return } catch(err) { // An error will be thrown if the user is not a Docs team member // If a user is not a Docs team member we should continue and send // the notification } const issueNo = context.number || context.issue.number // Create an issue in our private repo await github.issues.create({ owner: 'github', repo: 'docs-internal', title: `@${context.payload.sender.login} confirm that \#${issueNo} should be in the public github/docs repo`, body: `@${context.payload.sender.login} opened https://github.com/github/docs/issues/${issueNo} publicly in the github/docs repo, instead of the private github/docs-internal repo.\n\n@${context.payload.sender.login}, please confirm that this belongs in the public repo and that no sensitive information was disclosed by commenting below and closing the issue.\n\nIf this was not intentional and sensitive information was shared, please delete https://github.com/github/docs/issues/${issueNo} and notify us in the \#docs-open-source channel.\n\nThanks! \n\n/cc @github/docs @github/docs-engineering` }); throw new Error('A Hubber opened an issue on the public github/docs repo'); - name: Send Slack notification if a GitHub employee who isn't on the docs team opens an issue in public if: ${{ failure() && github.repository == 'github/docs' }} uses: someimportantcompany/github-actions-slack-message@0b470c14b39da4260ed9e3f9a4f1298a74ccdefd with: channel: ${{ secrets.DOCS_OPEN_SOURCE_SLACK_CHANNEL_ID }} bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }} text: <@${{github.actor}}> opened https://github.com/github/docs/issues/${{ github.event.number || github.event.issue.number }} publicly on the github/docs repo instead of the private github/docs-internal repo. They have been notified via a new issue in the github/docs-internal repo to confirm this was intentional. 15 .github/workflows/js-lint.yml @@ -10,23 +10,8 @@ on: - translations jobs: see_if_should_skip: runs-on: ubuntu-latest outputs: should_skip: ${{ steps.skip_check.outputs.should_skip }} steps: - id: skip_check uses: fkirc/skip-duplicate-actions@36feb0d8d062137530c2e00bd278d138fe191289 with: cancel_others: 'false' github_token: ${{ github.token }} paths: '["**/*.js", "package*.json", ".github/workflows/js-lint.yml", ".eslint*"]' lint: runs-on: ubuntu-latest needs: see_if_should_skip if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' }} steps: - name: Check out repo uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f 13 .github/workflows/repo-freeze-reminders.yml @@ -14,11 +14,10 @@ jobs: if: github.repository == 'github/docs-internal' steps: - name: Send Slack notification if repo is frozen uses: someimportantcompany/github-actions-slack-message@0b470c14b39da4260ed9e3f9a4f1298a74ccdefd if: ${{ env.FREEZE == 'true' }} uses: rtCamp/action-slack-notify@e17352feaf9aee300bf0ebc1dfbf467d80438815 env: SLACK_WEBHOOK: ${{ secrets.DOCS_ALERTS_SLACK_WEBHOOK }} SLACK_USERNAME: docs-repo-sync SLACK_ICON_EMOJI: ':freezing_face:' SLACK_COLOR: '#51A0D5' # Carolina Blue SLACK_MESSAGE: All repo-sync runs will fail for ${{ github.repository }} because the repo is currently frozen! with: channel: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }} bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }} color: info text: All repo-sync runs will fail for ${{ github.repository }} because the repo is currently frozen! 54 .github/workflows/repo-sync-stalls.yml @@ -0,0 +1,54 @@ name: Repo Sync Stalls on: workflow_dispatch: schedule: - cron: '*/30 * * * *' jobs: check-freezer: name: Check for deployment freezes runs-on: ubuntu-latest steps: - name: Exit if repo is frozen if: ${{ env.FREEZE == 'true' }} run: | echo 'The repo is currently frozen! Exiting this workflow.' exit 1 # prevents further steps from running repo-sync-stalls: runs-on: ubuntu-latest steps: - name: Check if repo sync is stalled uses: actions/github-script@626af12fe9a53dc2972b48385e7fe7dec79145c9 with: github-token: ${{ secrets.DOCUBOT_FR_PROJECT_BOARD_WORKFLOWS_REPO_ORG_READ_SCOPES }} script: | let pulls; const owner = context.repo.owner const repo = context.repo.repo try { pulls = await github.pulls.list({ owner: owner, repo: repo, head: `${owner}:repo-sync`, state: 'open' }); } catch(err) { throw err return } pulls.data.forEach(pr => { const timeDelta = Date.now() - Date.parse(pr.created_at); const minutesOpen = timeDelta / 1000 / 60; if (minutesOpen > 30) { core.setFailed('Repo sync appears to be stalled') } }) - name: Send Slack notification if workflow fails uses: someimportantcompany/github-actions-slack-message@0b470c14b39da4260ed9e3f9a4f1298a74ccdefd if: failure() with: channel: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }} bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }} color: failure text: Repo sync appears to be stalled for ${{github.repository}}. See https://github.com/${{github.repository}}/pulls?q=is%3Apr+is%3Aopen+repo+sync 16 .github/workflows/repo-sync.yml @@ -7,6 +7,7 @@ name: Repo Sync on: workflow_dispatch: schedule: - cron: '*/15 * * * *' # every 15 minutes @@ -70,11 +71,10 @@ jobs: number: ${{ steps.find-pull-request.outputs.number }} - name: Send Slack notification if workflow fails uses: rtCamp/action-slack-notify@e17352feaf9aee300bf0ebc1dfbf467d80438815 if: ${{ failure() }} env: SLACK_WEBHOOK: ${{ secrets.DOCS_ALERTS_SLACK_WEBHOOK }} SLACK_USERNAME: docs-repo-sync SLACK_ICON_EMOJI: ':ohno:' SLACK_COLOR: '#B90E0A' # Crimson SLACK_MESSAGE: The last repo-sync run for ${{github.repository}} failed. See https://github.com/${{github.repository}}/actions?query=workflow%3A%22Repo+Sync%22 uses: someimportantcompany/github-actions-slack-message@0b470c14b39da4260ed9e3f9a4f1298a74ccdefd if: failure() with: channel: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }} bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }} color: failure text: The last repo-sync run for ${{github.repository}} failed. See https://github.com/${{github.repository}}/actions?query=workflow%3A%22Repo+Sync%22 10 .github/workflows/sync-algolia-search-indices.yml @@ -33,8 +33,10 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: npm run sync-search - name: Send slack notification if workflow run fails uses: rtCamp/action-slack-notify@e17352feaf9aee300bf0ebc1dfbf467d80438815 uses: someimportantcompany/github-actions-slack-message@0b470c14b39da4260ed9e3f9a4f1298a74ccdefd if: failure() env: SLACK_WEBHOOK: ${{ secrets.DOCS_ALERTS_SLACK_WEBHOOK }} SLACK_MESSAGE: The last Algolia workflow run for ${{github.repository}} failed. Search actions for `workflow:Algolia` with: channel: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }} bot-token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }} color: failure text: The last Algolia workflow run for ${{github.repository}} failed. Search actions for `workflow:Algolia` 15 .github/workflows/yml-lint.yml @@ -10,23 +10,8 @@ on: - translations jobs: see_if_should_skip: runs-on: ubuntu-latest outputs: should_skip: ${{ steps.skip_check.outputs.should_skip }} steps: - id: skip_check uses: fkirc/skip-duplicate-actions@36feb0d8d062137530c2e00bd278d138fe191289 with: cancel_others: 'false' github_token: ${{ github.token }} paths: '["**/*.yml", "**/*.yaml", "package*.json", ".github/workflows/yml-lint.yml"]' lint: runs-on: ubuntu-latest needs: see_if_should_skip if: ${{ needs.see_if_should_skip.outputs.should_skip != 'true' }} steps: - name: Check out repo uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f 4 README.md @@ -28,7 +28,7 @@ If you've found a problem, you can open an issue using a [template](https://gith #### Solve an issue If you have a solution to one of the open issues, you will need to fork the repository and submit a PR using the [template](https://github.com/github/docs/blob/main/CONTRIBUTING.md#pull-request-template) that is visible automatically in the pull request body. For more details about this process, please check out [Getting Started with Contributing](/CONTRIBUTING.md). If you have a solution to one of the open issues, you will need to fork the repository and submit a pull request using the [template](https://github.com/github/docs/blob/main/CONTRIBUTING.md#pull-request-template) that is visible automatically in the pull request body. For more details about this process, please check out [Getting Started with Contributing](/CONTRIBUTING.md). #### Join us in discussions @@ -50,6 +50,8 @@ There are a few more things to know when you're getting started with this repo: In addition to the README you're reading right now, this repo includes other READMEs that describe the purpose of each subdirectory in more detail: - [content/README.md](content/README.md) - [content/graphql/README.md](content/graphql/README.md) - [content/rest/README.md](content/rest/README.md) - [contributing/README.md](contributing/README.md) - [data/README.md](data/README.md) - [data/reusables/README.md](data/reusables/README.md) BIN +164 KB assets/images/help/classroom/assignment-group-hero.png Binary file not shown. BIN +75.5 KB assets/images/help/classroom/assignment-ide-go-grant-access-button.png Binary file not shown. BIN +175 KB assets/images/help/classroom/assignment-individual-hero.png Binary file not shown. BIN +27.6 KB assets/images/help/classroom/assignment-repository-ide-button-in-readme.png Binary file not shown. BIN +83.4 KB assets/images/help/classroom/assignments-assign-deadline.png Binary file not shown. BIN +32.4 KB assets/images/help/classroom/assignments-assignment-title.png Binary file not shown. BIN +27.7 KB assets/images/help/classroom/assignments-autograding-click-pencil-or-trash.png Binary file not shown. BIN +72 KB assets/images/help/classroom/assignments-choose-repository-visibility.png Binary file not shown. BIN +20.1 KB assets/images/help/classroom/assignments-click-continue-button.png Binary file not shown. BIN +23.7 KB assets/images/help/classroom/assignments-click-create-assignment-button.png Binary file not shown. BIN +76.4 KB assets/images/help/classroom/assignments-click-grading-and-feedback.png Binary file not shown. BIN +53.1 KB assets/images/help/classroom/assignments-click-new-assignment-button.png Binary file not shown. BIN +134 KB assets/images/help/classroom/assignments-click-online-ide.png Binary file not shown. BIN +77.8 KB assets/images/help/classroom/assignments-click-pencil.png Binary file not shown. BIN +18.8 KB assets/images/help/classroom/assignments-click-review-button.png Binary file not shown. BIN +20.6 KB assets/images/help/classroom/assignments-click-save-test-case-button.png Binary file not shown. BIN +121 KB assets/images/help/classroom/assignments-click-template-repository-in-list.png Binary file not shown. BIN +21.1 KB assets/images/help/classroom/assignments-click-update-assignment.png Binary file not shown. BIN +76.9 KB assets/images/help/classroom/assignments-click-view-ide.png Binary file not shown. BIN +96.5 KB assets/images/help/classroom/assignments-click-view-test.png Binary file not shown. BIN +71.3 KB assets/images/help/classroom/assignments-define-teams.png Binary file not shown. BIN +39.4 KB assets/images/help/classroom/assignments-enable-feedback-pull-requests.png Binary file not shown. BIN +40.4 KB assets/images/help/classroom/assignments-type-protected-file-paths.png Binary file not shown. BIN +330 KB assets/images/help/classroom/autograding-actions-logs.png Binary file not shown. BIN +187 KB assets/images/help/classroom/autograding-actions-tab.png Binary file not shown. BIN +94.9 KB assets/images/help/classroom/autograding-click-grading-method.png Diff not rendered. BIN +57.5 KB assets/images/help/classroom/autograding-click-pencil.png Diff not rendered. BIN +57.7 KB assets/images/help/classroom/autograding-click-trash.png Diff not rendered. BIN +168 KB assets/images/help/classroom/autograding-hero.png Diff not rendered. BIN +154 KB assets/images/help/classroom/classroom-add-students-to-your-roster.png Diff not rendered. BIN +166 KB assets/images/help/classroom/classroom-copy-credentials.png Diff not rendered. BIN +181 KB assets/images/help/classroom/classroom-hero.png Diff not rendered. BIN +48.3 KB assets/images/help/classroom/classroom-settings-click-connection-settings.png Diff not rendered. BIN +94 KB ...ges/help/classroom/classroom-settings-click-disconnect-from-your-lms-button.png Diff not rendered. BIN +148 KB assets/images/help/classroom/classroom-settings-click-lms.png Diff not rendered. BIN +149 KB assets/images/help/classroom/click-assignment-in-list.png Diff not rendered. BIN +52.3 KB assets/images/help/classroom/click-classroom-in-list.png Diff not rendered. BIN +49.5 KB assets/images/help/classroom/click-create-classroom-button.png Diff not rendered. BIN +30 KB assets/images/help/classroom/click-create-roster-button.png Diff not rendered. BIN +78.2 KB assets/images/help/classroom/click-delete-classroom-button.png Diff not rendered. BIN +60.8 KB ...images/help/classroom/click-import-from-a-learning-management-system-button.png Diff not rendered. BIN +51.9 KB assets/images/help/classroom/click-new-classroom-button.png Diff not rendered. BIN +83.4 KB assets/images/help/classroom/click-organization.png Diff not rendered. BIN +28.4 KB assets/images/help/classroom/click-settings.png Diff not rendered. BIN +29.7 KB assets/images/help/classroom/click-students.png Diff not rendered. BIN +60 KB assets/images/help/classroom/click-update-students-button.png Diff not rendered. BIN +127 KB assets/images/help/classroom/delete-classroom-click-delete-classroom-button.png Diff not rendered. BIN +104 KB assets/images/help/classroom/delete-classroom-modal-with-warning.png Diff not rendered. BIN +264 KB assets/images/help/classroom/ide-makecode-arcade-version-control-button.png Diff not rendered. BIN +69.4 KB assets/images/help/classroom/ide-replit-version-control-button.png Diff not rendered. BIN +234 KB assets/images/help/classroom/lms-github-classroom-credentials.png Diff not rendered. BIN +955 KB assets/images/help/classroom/probot-settings.gif Diff not rendered. BIN +113 KB assets/images/help/classroom/roster-hero.png Diff not rendered. BIN +40.4 KB assets/images/help/classroom/settings-click-rename-classroom-button.png Diff not rendered. BIN +41 KB assets/images/help/classroom/settings-type-classroom-name.png Diff not rendered. BIN +140 KB assets/images/help/classroom/setup-click-authorize-github-classroom.png Diff not rendered. BIN +102 KB assets/images/help/classroom/setup-click-authorize-github.png Diff not rendered. BIN +163 KB assets/images/help/classroom/setup-click-grant.png Diff not rendered. BIN +324 KB assets/images/help/classroom/students-click-delete-roster-button-in-modal.png Diff not rendered. BIN +91.1 KB assets/images/help/classroom/students-click-delete-roster-button.png Diff not rendered. BIN +48.2 KB assets/images/help/classroom/type-classroom-name.png Diff not rendered. BIN +174 KB assets/images/help/classroom/type-or-upload-student-identifiers.png Diff not rendered. BIN +83.3 KB assets/images/help/classroom/use-drop-down-then-click-archive.png Diff not rendered. BIN +45.2 KB assets/images/help/classroom/use-drop-down-then-click-unarchive.png Diff not rendered. BIN +55.4 KB assets/images/help/discussions/choose-new-category.png Diff not rendered. BIN +56.8 KB assets/images/help/discussions/click-delete-and-move-button.png Diff not rendered. BIN +59.7 KB assets/images/help/discussions/click-delete-discussion.png Diff not rendered. BIN +65.3 KB assets/images/help/discussions/click-delete-for-category.png Diff not rendered. BIN +68.9 KB assets/images/help/discussions/click-delete-this-discussion-button.png Diff not rendered. BIN +353 KB assets/images/help/discussions/click-discussion-in-list.png Diff not rendered. BIN +41 KB assets/images/help/discussions/click-edit-categories.png Diff not rendered. BIN +64.3 KB assets/images/help/discussions/click-edit-for-category.png Diff not rendered. BIN +60.2 KB assets/images/help/discussions/click-edit-pinned-discussion.png Diff not rendered. BIN +104 KB assets/images/help/discussions/click-new-category-button.png Diff not rendered. BIN +98.2 KB assets/images/help/discussions/click-pin-discussion-button.png Diff not rendered. BIN +55.7 KB assets/images/help/discussions/click-pin-discussion.png Diff not rendered. BIN +104 KB assets/images/help/discussions/click-save.png Diff not rendered. BIN +59.9 KB assets/images/help/discussions/click-transfer-discussion-button.png Diff not rendered. BIN +60.2 KB assets/images/help/discussions/click-transfer-discussion.png Diff not rendered. BIN +63.3 KB assets/images/help/discussions/click-unpin-discussion-button.png Diff not rendered. BIN +59.8 KB assets/images/help/discussions/click-unpin-discussion.png Diff not rendered. BIN +140 KB assets/images/help/discussions/comment-mark-as-answer-button.png Diff not rendered. BIN +136 KB assets/images/help/discussions/comment-marked-as-answer.png Diff not rendered. BIN +234 KB assets/images/help/discussions/customize-pinned-discussion.png Diff not rendered. BIN +1.21 MB assets/images/help/discussions/discussons-hero.png Diff not rendered. BIN +139 KB assets/images/help/discussions/edit-category-details.png Diff not rendered. BIN +136 KB assets/images/help/discussions/edit-existing-category-details.png Diff not rendered. BIN +55.5 KB assets/images/help/discussions/existing-category-click-save-changes-button.png Diff not rendered. BIN +680 KB assets/images/help/discussions/hero.png Diff not rendered. BIN +307 KB assets/images/help/discussions/most-helpful.png Diff not rendered. BIN +52.9 KB assets/images/help/discussions/new-category-click-create-button.png Diff not rendered. BIN +132 KB assets/images/help/discussions/new-discussion-button.png Diff not rendered. BIN +140 KB assets/images/help/discussions/new-discussion-select-category-dropdown-menu.png Diff not rendered. BIN +46.7 KB assets/images/help/discussions/new-discussion-start-discussion-button.png Diff not rendered. BIN +108 KB assets/images/help/discussions/new-discussion-title-and-body-fields.png Diff not rendered. BIN +23.1 KB assets/images/help/discussions/public-repo-settings.png Diff not rendered. BIN +49.5 KB assets/images/help/discussions/repository-discussions-tab.png Diff not rendered. BIN +51.8 KB assets/images/help/discussions/search-and-filter-controls.png Diff not rendered. BIN +44.4 KB assets/images/help/discussions/search-result.png Diff not rendered. BIN +35.4 KB assets/images/help/discussions/select-discussions-checkbox.png Diff not rendered. BIN +44.8 KB assets/images/help/discussions/setup-discussions-button.png Diff not rendered. BIN +95.9 KB assets/images/help/discussions/toggle-allow-users-with-read-access-checkbox.png Diff not rendered. BIN +73 KB assets/images/help/discussions/unanswered-discussion.png Diff not rendered. BIN +81.3 KB assets/images/help/discussions/use-choose-a-repository-drop-down.png Diff not rendered. BIN +30.3 KB assets/images/help/discussions/your-discussions.png Diff not rendered. BIN +563 KB assets/images/help/education/click-get-teacher-benefits.png Diff not rendered. BIN +116 KB assets/images/help/images/overview-actions-result-navigate.png Diff not rendered. BIN +150 KB assets/images/help/images/overview-actions-result-updated-2.png Diff not rendered. BIN +128 KB assets/images/help/images/workflow-graph-job.png Diff not rendered. BIN +135 KB assets/images/help/images/workflow-graph.png Diff not rendered. BIN +5.46 KB assets/images/help/organizations/update-profile-button.png Diff not rendered. BIN +44.6 KB assets/images/help/pull_requests/dependency-review-rich-diff.png Diff not rendered. BIN +24.6 KB assets/images/help/pull_requests/dependency-review-source-diff.png Diff not rendered. BIN +214 KB assets/images/help/pull_requests/dependency-review-vulnerability.png Diff not rendered. BIN +105 KB assets/images/help/pull_requests/file-filter-menu-json.png Diff not rendered. BIN +22.5 KB (510%) assets/images/help/pull_requests/pull-request-tabs-changed-files.png Diff not rendered. BIN +45.2 KB assets/images/help/repository/actions-delete-artifact-updated.png Diff not rendered. BIN +122 KB assets/images/help/repository/actions-failed-pester-test-updated.png Diff not rendered. BIN +45.4 KB assets/images/help/repository/artifact-drop-down-updated.png Diff not rendered. BIN +54.5 KB assets/images/help/repository/cancel-check-suite-updated.png Diff not rendered. BIN +120 KB assets/images/help/repository/copy-link-button-updated-2.png Diff not rendered. BIN +77.6 KB assets/images/help/repository/delete-all-logs-updated-2.png Diff not rendered. BIN +326 KB assets/images/help/repository/docker-action-workflow-run-updated.png Diff not rendered. BIN +84.6 KB assets/images/help/repository/download-logs-drop-down-updated-2.png Diff not rendered. BIN +170 KB assets/images/help/repository/in-progress-run.png Diff not rendered. BIN +124 KB assets/images/help/repository/javascript-action-workflow-run-updated-2.png Diff not rendered. BIN +116 KB assets/images/help/repository/passing-data-between-jobs-in-a-workflow-updated.png Diff not rendered. BIN +80.8 KB assets/images/help/repository/rerun-checks-drop-down-updated.png Diff not rendered. BIN +41.2 KB assets/images/help/repository/search-log-box-updated-2.png Diff not rendered. BIN +133 KB assets/images/help/repository/super-linter-workflow-results-updated-2.png Diff not rendered. BIN +97.5 KB assets/images/help/repository/superlinter-lint-code-base-job-updated.png Diff not rendered. BIN -128 KB assets/images/help/repository/upload-build-test-artifact.png Diff not rendered. BIN +27.5 KB (170%) assets/images/help/repository/view-run-billable-time.png Diff not rendered. BIN +54.8 KB assets/images/help/repository/workflow-run-kebab-horizontal-icon-updated-2.png Diff not rendered. BIN +7.54 KB assets/images/help/settings/appearance-tab.png Diff not rendered. BIN +39.7 KB assets/images/help/settings/theme-settings-radio-buttons.png Diff not rendered. BIN +11.1 KB assets/images/help/settings/update-theme-preference-button.png Diff not rendered. BIN +22.5 KB assets/images/help/sponsors/billing-account-switcher.png Diff not rendered. BIN +6.37 KB (150%) assets/images/help/sponsors/edit-sponsorship-payment-button.png Diff not rendered. BIN +34.8 KB assets/images/help/sponsors/link-account-button.png Diff not rendered. BIN +12.8 KB (170%) assets/images/help/sponsors/manage-your-sponsorship-button.png Diff not rendered. BIN +20.6 KB assets/images/help/sponsors/organization-update-email-textbox.png Diff not rendered. BIN +13.5 KB assets/images/help/sponsors/pay-prorated-amount-link.png Diff not rendered. BIN +34.7 KB assets/images/help/sponsors/select-an-account-drop-down.png Diff not rendered. BIN +17 KB assets/images/help/sponsors/sponsor-as-drop-down-menu.png Diff not rendered. BIN +15.8 KB assets/images/help/sponsors/sponsoring-as-drop-down-menu.png Diff not rendered. BIN +16.1 KB assets/images/help/sponsors/sponsoring-settings-button.png Diff not rendered. BIN +29.5 KB assets/images/help/sponsors/sponsoring-tab.png Diff not rendered. BIN +7.91 KB assets/images/help/sponsors/update-checkbox-manage.png Diff not rendered. BIN +43 KB (160%) assets/images/marketplace/marketplace-request-button.png Diff not rendered. BIN +53.6 KB assets/images/marketplace/marketplace_verified_creator_badges_apps.png Diff not rendered. 6 content/actions/creating-actions/creating-a-docker-container-action.md @@ -226,6 +226,10 @@ jobs: ``` {% endraw %} From your repository, click the **Actions** tab, and select the latest workflow run. You should see "Hello Mona the Octocat" or the name you used for the `who-to-greet` input and the timestamp printed in the log. From your repository, click the **Actions** tab, and select the latest workflow run. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}Under **Jobs** or in the visualization graph, click **A job to say hello**. {% endif %}You should see "Hello Mona the Octocat" or the name you used for the `who-to-greet` input and the timestamp printed in the log. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} 6 content/actions/creating-actions/creating-a-javascript-action.md @@ -261,9 +261,11 @@ jobs: ``` {% endraw %} From your repository, click the **Actions** tab, and select the latest workflow run. You should see "Hello Mona the Octocat" or the name you used for the `who-to-greet` input and the timestamp printed in the log. From your repository, click the **Actions** tab, and select the latest workflow run. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}Under **Jobs** or in the visualization graph, click **A job to say hello**. {% endif %}You should see "Hello Mona the Octocat" or the name you used for the `who-to-greet` input and the timestamp printed in the log. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% elsif currentVersion ver_gt "enterprise-server@2.22" %}  {% else %}  4 content/actions/guides/about-packaging-with-github-actions.md @@ -25,7 +25,11 @@ Creating a package at the end of a continuous integration workflow can help duri Now, when reviewing a pull request, you'll be able to look at the workflow run and download the artifact that was produced. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} This will let you run the code in the pull request on your machine, which can help with debugging or testing the pull request. 4 content/actions/guides/building-and-testing-powershell.md @@ -60,7 +60,11 @@ jobs: * `run: Test-Path resultsfile.log` - Check whether a file called `resultsfile.log` is present in the repository's root directory. * `Should -Be $true` - Uses Pester to define an expected result. If the result is unexpected, then {% data variables.product.prodname_actions %} flags this as a failed test. For example: {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} * `Invoke-Pester Unit.Tests.ps1 -Passthru` - Uses Pester to execute tests defined in a file called `Unit.Tests.ps1`. For example, to perform the same test described above, the `Unit.Tests.ps1` will contain the following: ``` 7 content/actions/guides/storing-workflow-data-as-artifacts.md @@ -108,8 +108,6 @@ jobs: path: output/test/code-coverage.html ```  {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" %} ### Configuring a custom artifact retention period @@ -238,7 +236,12 @@ jobs: echo The result is $value ``` The workflow run will archive any artifacts that it generated. For more information on downloading archived artifacts, see "[Downloading workflow artifacts](/actions/managing-workflow-runs/downloading-workflow-artifacts)." {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} {% if currentVersion == "free-pro-team@latest" %} 8 content/actions/index.md @@ -68,18 +68,18 @@ versions: <h2 class="mb-2 font-mktg h1">Code examples</h2> <div class="pr-lg-3 mb-5 mt-3"> <input class="js-code-example-filter input-lg py-2 px-3 col-12 col-lg-8 form-control" placeholder="Search code examples" type="search" autocomplete="off" aria-label="Search code examples"/> <input class="js-filter-card-filter input-lg py-2 px-3 col-12 col-lg-8 form-control" placeholder="Search code examples" type="search" autocomplete="off" aria-label="Search code examples"/> </div> <div class="d-flex flex-wrap gutter"> {% render 'code-example-card' for actionsCodeExamples as example %} </div> <button class="js-code-example-show-more btn btn-outline float-right">Show more {% octicon "arrow-right" %}</button> <button class="js-filter-card-show-more btn btn-outline float-right">Show more {% octicon "arrow-right" %}</button> <div class="js-code-example-no-results d-none py-4 text-center text-gray font-mktg"> <div class="js-filter-card-no-results d-none py-4 text-center text-gray font-mktg"> <div class="mb-3">{% octicon "search" width="24" %}</div> <h3 class="text-normal">Sorry, there is no result for <strong class="js-code-example-filter-value"></strong></h3> <h3 class="text-normal">Sorry, there is no result for <strong class="js-filter-card-value"></strong></h3> <p class="my-3 f4">It looks like we don't have an example that fits your filter.<br>Try another filter or add your code example</p> <a href="https://github.com/github/docs/blob/main/data/variables/action_code_examples.yml">Learn how to add a code example {% octicon "arrow-right" %}</a> </div> 11 content/actions/learn-github-actions/introduction-to-github-actions.md @@ -204,7 +204,7 @@ In this diagram, you can see the workflow file you just created and how the {% d ### Viewing the job's activity Once your job has started running, you can view each step's activity on {% data variables.product.prodname_dotcom %}. Once your job has started running, you can {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}see a visualization graph of the run's progress and {% endif %}view each step's activity on {% data variables.product.prodname_dotcom %}. {% data reusables.repositories.navigate-to-repo %} 1. Under your repository name, click **Actions**. @@ -213,7 +213,14 @@ Once your job has started running, you can view each step's activity on {% data  1. Under "Workflow runs", click the name of the run you want to see.  {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %} 1. Under **Jobs** or in the visualization graph, click the job you want to see.  {% endif %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %} 1. View the results of each step.  {% elsif currentVersion ver_gt "enterprise-server@2.22" %} 1. Click on the job name to see the results of each step.  {% else %} 7 content/actions/managing-workflow-runs/canceling-a-workflow.md @@ -17,9 +17,14 @@ versions: {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.actions-tab %} {% data reusables.repositories.navigate-to-workflow %} {% data reusables.repositories.view-run %} 1. From the list of workflow runs, click the name of the `queued` or `in progress` run that you want to cancel.  1. In the upper-right corner of the workflow, click **Cancel workflow**. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} ### Steps {% data variables.product.prodname_dotcom %} takes to cancel a workflow run 4 content/actions/managing-workflow-runs/downloading-workflow-artifacts.md @@ -20,4 +20,8 @@ versions: {% data reusables.repositories.navigate-to-workflow %} {% data reusables.repositories.view-run %} 1. Under **Artifacts**, click the artifact you want to download. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} 1 content/actions/managing-workflow-runs/index.md @@ -18,6 +18,7 @@ versions: {% data reusables.actions.enterprise-beta %} {% data reusables.actions.enterprise-github-hosted-runners %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}{% link_in_list /using-the-visualization-graph %}{% endif %} {% link_in_list /viewing-workflow-run-history %} {% link_in_list /using-workflow-run-logs %} {% link_in_list /manually-running-a-workflow %} 3 content/actions/managing-workflow-runs/re-running-a-workflow.md @@ -16,5 +16,4 @@ versions: {% data reusables.repositories.actions-tab %} {% data reusables.repositories.navigate-to-workflow %} {% data reusables.repositories.view-run %} 1. In the upper-right corner of the workflow, use the **Re-run jobs** drop-down menu, and select **Re-run all jobs**.  1. In the upper-right corner of the workflow, use the **Re-run jobs** drop-down menu, and select **Re-run all jobs**.{% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}{% else %}{% endif %} 4 content/actions/managing-workflow-runs/removing-workflow-artifacts.md @@ -27,7 +27,11 @@ versions: {% data reusables.repositories.navigate-to-workflow %} {% data reusables.repositories.view-run %} 1. Under **Artifacts**, click {% octicon "trashcan" aria-label="The trashcan icon" %} next to the artifact you want to remove. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" %} ### Setting the retention period for an artifact 23 content/actions/managing-workflow-runs/using-the-visualization-graph.md @@ -0,0 +1,23 @@ --- title: Using the visualization graph intro: Every workflow run generates a real-time graph that illustrates the run progress. You can use this graph to monitor and debug workflows. product: '{% data reusables.gated-features.actions %}' versions: free-pro-team: '*' enterprise-server: '>=3.1' --- {% data reusables.actions.enterprise-beta %} {% data reusables.actions.visualization-beta %} {% data reusables.actions.enterprise-github-hosted-runners %} {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.actions-tab %} {% data reusables.repositories.navigate-to-workflow %} {% data reusables.repositories.view-run %} 1. The graph displays each job in the workflow. An icon to the left of the job name indicates the status of the job. Lines between jobs indicate dependencies.  2. Click on a job to view the job log.  18 content/actions/managing-workflow-runs/using-workflow-run-logs.md @@ -45,7 +45,11 @@ You can search the build logs for a particular step. When you search logs, only {% data reusables.repositories.navigate-to-job-superlinter %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" %} 1. In the upper-right corner of the log output, in the **Search logs** search box, type a search query. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} {% else %} 1. To expand each step you want to include in your search, click the step.  @@ -63,8 +67,12 @@ You can download the log files from your workflow run. You can also download a w {% data reusables.repositories.view-run-superlinter %} {% data reusables.repositories.navigate-to-job-superlinter %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" %} 1. In the upper right corner, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} and select **Download log archive**. 1. In the upper right corner, click {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}{% octicon "gear" aria-label="The gear icon" %}{% else %}{% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}{% endif %} and select **Download log archive**. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} {% else %} 1. In the upper right corner, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} and select **Download log archive**.  @@ -80,9 +88,17 @@ You can delete the log files from your workflow run. {% data reusables.repositor {% data reusables.repositories.view-run-superlinter %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@2.22" %} 1. In the upper right corner, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} 2. To delete the log files, click the **Delete all logs** button and review the confirmation prompt. {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %}  {% else %}  {% endif %} After deleting logs, the **Delete all logs** button is removed to indicate that no log files remain in the workflow run. {% else %} 1. In the upper right corner, click {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %}. 2 content/actions/managing-workflow-runs/viewing-job-execution-time.md @@ -15,7 +15,7 @@ Billable job execution minutes are only shown for jobs run on private repositori {% data reusables.repositories.actions-tab %} {% data reusables.repositories.navigate-to-workflow %} {% data reusables.repositories.view-run %} 1. Under the job summary, you can view the job's execution time. To view the billable job execution time, click **Run and billable time details**. 1. Under the job summary, you can view the job's execution time. To view details about the billable job execution time, click the time under **Billable time**.  {% note %} 5 content/actions/quickstart.md @@ -60,8 +60,13 @@ Committing the workflow file in your repository triggers the `push` event and ru {% data reusables.repositories.actions-tab %} {% data reusables.repositories.navigate-to-workflow-superlinter %} {% data reusables.repositories.view-run-superlinter %} {% if currentVersion == "free-pro-team@latest" or currentVersion ver_gt "enterprise-server@3.0" %} 1. Under **Jobs** or in the visualization graph, click the **Lint code base** job.  {% else %} 1. In the left sidebar, click the **Lint code base** job.  {% endif %} {% data reusables.repositories.view-failed-job-results-superlinter %} ### More starter workflows 49 content/developers/github-marketplace/about-github-marketplace.md @@ -1,6 +1,6 @@ --- title: About GitHub Marketplace intro: 'Learn the basics to prepare your app for review before joining {% data variables.product.prodname_marketplace %}.' intro: 'Learn about {% data variables.product.prodname_marketplace %} where you can share your apps and actions publicly with all {% data variables.product.product_name %} users.' redirect_from: - /apps/marketplace/getting-started/ - /marketplace/getting-started @@ -14,52 +14,41 @@ versions: {% data reusables.actions.actions-not-verified %} To learn about publishing {% data variables.product.prodname_actions %} in the {% data variables.product.prodname_marketplace %}, see "[Publishing actions in GitHub Marketplace](/actions/creating-actions/publishing-actions-in-github-marketplace)." To learn about publishing {% data variables.product.prodname_actions %} in {% data variables.product.prodname_marketplace %}, see "[Publishing actions in GitHub Marketplace](/actions/creating-actions/publishing-actions-in-github-marketplace)." ### Apps You can list verified and unverified apps in {% data variables.product.prodname_marketplace %}. Unverified apps do not go through the security, testing, and verification cycle {% data variables.product.prodname_dotcom %} requires for verified apps. Anyone can share their apps with other users on {% data variables.product.prodname_marketplace %} but only listings that are verified by {% data variables.product.company_short %} can include paid plans. For more information, see "[About verified creators](/developers/github-marketplace/about-verified-creators)." Verified apps have a green badge in {% data variables.product.prodname_marketplace %}. Unverified apps have a grey badge next to their listing and are only available as free apps. If you're interested in creating an app for {% data variables.product.prodname_marketplace %}, but you're new to {% data variables.product.prodname_github_apps %} or {% data variables.product.prodname_oauth_app %}s, see "[Building {% data variables.product.prodname_github_apps %}](/developers/apps/building-github-apps)" or "[Building {% data variables.product.prodname_oauth_app %}s](/developers/apps/building-oauth-apps)."  If you're interested in creating an app for {% data variables.product.prodname_marketplace %}, but you're new to {% data variables.product.prodname_github_apps %} and {% data variables.product.prodname_oauth_app %}s, see "[Building apps](/apps/)." {% data reusables.marketplace.github_apps_preferred %}, although you can list both OAuth and {% data variables.product.prodname_github_app %}s in {% data variables.product.prodname_marketplace %}. See "[Differences between GitHub and OAuth apps](/apps/differences-between-apps/)" for more details. To learn more about switching from OAuth to {% data variables.product.prodname_github_apps %}, see [Migrating OAuth Apps to {% data variables.product.prodname_github_app %}s](/apps/migrating-oauth-apps-to-github-apps/). {% data reusables.marketplace.github_apps_preferred %}, although you can list both OAuth and {% data variables.product.prodname_github_app %}s in {% data variables.product.prodname_marketplace %}. For more information, see "[Differences between {% data variables.product.prodname_github_apps %} and {% data variables.product.prodname_oauth_app %}s](/apps/differences-between-apps/)" and "[Migrating {% data variables.product.prodname_oauth_app %}s to {% data variables.product.prodname_github_apps %}](/apps/migrating-oauth-apps-to-github-apps/)." If you have questions about {% data variables.product.prodname_marketplace %}, please contact {% data variables.contact.contact_support %} directly. #### Unverified Apps Unverified apps do not need to meet the "[Requirements for listing an app on {% data variables.product.prodname_marketplace %}](/marketplace/getting-started/requirements-for-listing-an-app-on-github-marketplace/)" or go through the "[Security review process](/marketplace/getting-started/security-review-process/)". {% data reusables.marketplace.unverified-apps %} Having a published paid plan will prevent you from being able to submit an unverified app. You must remove paid plans or keep them in draft mode before publishing an unverified app. To list your unverified app in {% data variables.product.prodname_marketplace %}, you only need to create a "[Listing on {% data variables.product.prodname_marketplace %}](/marketplace/listing-on-github-marketplace/)" and submit it as an unverified listing. {% data reusables.marketplace.launch-with-free %} ### Publishing an app to {% data variables.product.prodname_marketplace %} #### Verified Apps When you have finished creating your app, you can share it with other users by publishing it to {% data variables.product.prodname_marketplace %}. In summary, the process is: If you've already built an app and you're interested in submitting a verified listing in {% data variables.product.prodname_marketplace %}, start here: 1. Review your app carefully to ensure that it will behave as expected in other repositories and that it follows best practice guidelines. For more information, see "[Security best practices for apps](/developers/github-marketplace/security-best-practices-for-apps)" and "[Requirements for listing an app](/developers/github-marketplace/requirements-for-listing-an-app#best-practice-for-customer-experience)." 1. [Getting started with {% data variables.product.prodname_marketplace %}](/marketplace/getting-started/)<br/>Learn about requirements, guidelines, and the app submission process. 1. Add webhook events to the app to track user billing requests. For more information about the {% data variables.product.prodname_marketplace %} API, webhook events, and billing requests, see "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." 1. [Integrating with the {% data variables.product.prodname_marketplace %} API](/marketplace/integrating-with-the-github-marketplace-api/)<br/>Before you can list your app on {% data variables.product.prodname_marketplace %}, you'll need to integrate billing flows using the {% data variables.product.prodname_marketplace %} API and webhook events. 1. Create a draft {% data variables.product.prodname_marketplace %} listing. For more information, see "[Drafting a listing for your app](/developers/github-marketplace/drafting-a-listing-for-your-app)." 1. [Listing on {% data variables.product.prodname_marketplace %}](/marketplace/listing-on-github-marketplace/) <br/>Create a draft {% data variables.product.prodname_marketplace %} listing, configure webhook settings, and set up pricing plans. 1. Add a pricing plan. For more information, see "[Setting pricing plans for your listing](/developers/github-marketplace/setting-pricing-plans-for-your-listing)." 1. [Selling your app](/marketplace/selling-your-app/)<br/>Learn about pricing plans, billing cycles, and how to receive payment from {% data variables.product.prodname_dotcom %} for your app. 1. Check whether your app meets the requirements for listing on {% data variables.product.prodname_marketplace %} as a free or a paid app. For more information, see "[Requirements for listing an app](/developers/github-marketplace/requirements-for-listing-an-app)." 1. [{% data variables.product.prodname_marketplace %} Insights](/marketplace/github-marketplace-insights/)<br/>See how your app is performing in {% data variables.product.prodname_marketplace %}. You can use metrics collected by {% data variables.product.prodname_dotcom %} to guide your marketing campaign and be successful in {% data variables.product.prodname_marketplace %}. 1. Read and accept the terms of the "[{% data variables.product.prodname_marketplace %} Developer Agreement](/articles/github-marketplace-developer-agreement/)." 1. [{% data variables.product.prodname_marketplace %} transactions](/marketplace/github-marketplace-transactions/)<br/>Download and view transaction data for your {% data variables.product.prodname_marketplace %} listing. 1. Submit your listing for publication in {% data variables.product.prodname_marketplace %}, requesting verification if you want to sell the app. For more information, see "[Submitting your listing for publication](/developers/github-marketplace/submitting-your-listing-for-publication)." ### Reviewing your app An onboarding expert will contact you with any questions or further steps. For example, if you have added a paid plan, you will need to complete the verification process and complete financial onboarding. As soon as your listing is approved the app is published to {% data variables.product.prodname_marketplace %}. We want to make sure that the apps offered on {% data variables.product.prodname_marketplace %} are safe, secure, and well tested. The {% data variables.product.prodname_marketplace %} onboarding specialists will review your app to ensure that it meets all requirements. Follow the guidelines in these articles before submitting your app: ### Seeing how your app is performing You can access metrics and transactions for your listing. For more information, see: * [Requirements for listing an app on {% data variables.product.prodname_marketplace %}](/marketplace/getting-started/requirements-for-listing-an-app-on-github-marketplace/) * [Security review process](/marketplace/getting-started/security-review-process/) - "[Viewing metrics for your listing](/developers/github-marketplace/viewing-metrics-for-your-listing)" - "[Viewing transactions for your listing](/developers/github-marketplace/viewing-transactions-for-your-listing)" 43 content/developers/github-marketplace/about-verified-creators.md @@ -0,0 +1,43 @@ --- title: About verified creators intro: 'Each organization that wants to sell apps on {% data variables.product.prodname_marketplace %} must follow a verification process. Their identity is checked and their billing process reviewed.' versions: free-pro-team: '*' --- ### About verified creators A verified creator is an organization that {% data variables.product.company_short %} has checked. Anyone can share their apps with other users on {% data variables.product.prodname_marketplace %} but only organizations that are verified by {% data variables.product.company_short %} can sell apps. For more information about organizations, see "[About organizations](/github/setting-up-and-managing-organizations-and-teams/about-organizations)." The verification process aims to protect users. For example, it verifies the seller's identity, checks that their {% data variables.product.product_name %} organization is set up securely, and that they can be contacted for support. After passing the verification checks, any apps that the organization lists on {% data variables.product.prodname_marketplace %} are shown with a verified creator badge {% octicon "verified" aria-label="Verified creator badge" %}. The organization can now add paid plans to any of their apps. Each app with a paid plan also goes through a financial onboarding process to check that it's set up to handle billing correctly.  In addition to the verified creator badge, you'll also see badges for unverified and verified apps. These apps were published using the old method for verifying individual apps.  For information on finding apps to use, see "[Searching {% data variables.product.prodname_marketplace %}](/github/searching-for-information-on-github/searching-github-marketplace)." ### About the verification process The first time you request verification for a listing of one of your apps, you will enter the verification process. An onboarding expert will guide you through the process. This includes checking: - Profile information - The basic profile information is populated accurately and appropriately. - Security - The organization has enabled two-factor authentication. - Verified domain - The organization has verified the domain of the site URL. - Purchase webhook event - The event is handled correctly by the app. When your organization is verified, all your apps are shown with a verified creator badge. You are now able to offer paid plans for any of your apps. For more information about the requirements for listing an app on {% data variables.product.prodname_marketplace %}, see "[Requirements for listing an app on {% data variables.product.prodname_marketplace %}](/marketplace/getting-started/requirements-for-listing-an-app-on-github-marketplace/)." {% data reusables.marketplace.app-transfer-to-org-for-verification %} For information on how to do this, see: "[Submitting your listing for publication](/developers/github-marketplace/submitting-your-listing-for-publication#transferring-an-app-to-an-organization-before-you-submit)." {% note %} **Note:** This verification process for apps replaces the previous process where individual apps were verified. The current process is similar to the verification process for actions. If you have apps that were verified under the old process, these will not be affected by the changes. The {% data variables.product.prodname_marketplace %} team will contact you with details of how to migrate to organization-based verification. {% endnote %} 12 content/developers/github-marketplace/billing-customers.md @@ -13,17 +13,17 @@ versions: ### Understanding the billing cycle Customers can choose a monthly or yearly billing cycle when they purchase your app. All changes customers make to the billing cycle and plan selection will trigger a `marketplace_purchase` event. You can refer to the `marketplace_purchase` webhook payload to see which billing cycle a customer selects and when the next billing date begins (`effective_date`). For more information about webhook payloads, see "[{% data variables.product.prodname_marketplace %} webhook events](/marketplace/integrating-with-the-github-marketplace-api/github-marketplace-webhook-events/)." Customers can choose a monthly or yearly billing cycle when they purchase your app. All changes customers make to the billing cycle and plan selection will trigger a `marketplace_purchase` event. You can refer to the `marketplace_purchase` webhook payload to see which billing cycle a customer selects and when the next billing date begins (`effective_date`). For more information about webhook payloads, see "[Webhook events for the {% data variables.product.prodname_marketplace %} API](/developers/github-marketplace/webhook-events-for-the-github-marketplace-api)." ### Providing billing services in your app's UI Customers must be able to perform the following actions from your app's website: - Customers must be able to modify or cancel their {% data variables.product.prodname_marketplace %} plans for personal and organizational accounts separately. Customers should be able to perform the following actions from your app's website: - Customers should be able to modify or cancel their {% data variables.product.prodname_marketplace %} plans for personal and organizational accounts separately. {% data reusables.marketplace.marketplace-billing-ui-requirements %} ### Billing services for upgrades, downgrades, and cancellations Follow these guidelines for upgrades, downgrades, and cancellations to maintain a clear and consistent billing process. For more detailed instructions about the {% data variables.product.prodname_marketplace %} purchase events, see "[Billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows)." Follow these guidelines for upgrades, downgrades, and cancellations to maintain a clear and consistent billing process. For more detailed instructions about the {% data variables.product.prodname_marketplace %} purchase events, see "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." You can use the `marketplace_purchase` webhook's `effective_date` key to determine when a plan change will occur and periodically synchronize the [List accounts for a plan](/rest/reference/apps#list-accounts-for-a-plan). @@ -33,7 +33,7 @@ When a customer upgrades their pricing plan or changes their billing cycle from {% data reusables.marketplace.marketplace-failed-purchase-event %} For information about building upgrade and downgrade workflows into your app, see "[Upgrading and downgrading plans](/marketplace/integrating-with-the-github-marketplace-api/upgrading-and-downgrading-plans/)." For information about building upgrade and downgrade workflows into your app, see "[Handling plan changes](/developers/github-marketplace/handling-plan-changes)." #### Downgrades and cancellations @@ -45,4 +45,4 @@ When a customer cancels a plan, you must: {% data reusables.marketplace.cancellation-clarification %} - Enable them to upgrade the plan through GitHub if they would like to continue the plan at a later time. For information about building cancellation workflows into your app, see "[Cancelling plans](/marketplace/integrating-with-the-github-marketplace-api/cancelling-plans/)." For information about building cancellation workflows into your app, see "[Handling plan cancellations](/developers/github-marketplace/handling-plan-cancellations)." 20 ...nt/developers/github-marketplace/customer-experience-best-practices-for-apps.md @@ -0,0 +1,20 @@ --- title: Customer experience best practices for apps intro: 'Guidelines for creating an app that will be easy to use and understand.' shortTitle: Customer experience best practice versions: free-pro-team: '*' --- If you follow these best practices it will help you to provide a good customer experience. ### Customer communication - Marketing materials for the app should accurately represent the app's behavior. - Apps should include links to user-facing documentation that describe how to set up and use the app. - Customers should be able to see what type of plan they have in the billing, profile, or account settings section of the app. - Customers should be able to install and use your app on both a personal account and an organization account. They should be able to view and manage the app on those accounts separately. ### Plan management {% data reusables.marketplace.marketplace-billing-ui-requirements %} 4 content/developers/github-marketplace/drafting-a-listing-for-your-app.md @@ -59,8 +59,8 @@ Once you've created a {% data variables.product.prodname_marketplace %} draft li ### Submitting your app Once you've completed your {% data variables.product.prodname_marketplace %} listing, you can submit your listing for review from the **Overview** page. You'll need to read and accept the "[{% data variables.product.prodname_marketplace %} Developer Agreement](/articles/github-marketplace-developer-agreement/)," and then you can click **Submit for review**. After you submit your app for review, the {% data variables.product.prodname_marketplace %} onboarding team will contact you with additional information about the onboarding process. You can learn more about the onboarding and security review process in "[Getting started with {% data variables.product.prodname_marketplace %}](/marketplace/getting-started/)." Once you've completed your {% data variables.product.prodname_marketplace %} listing, you can submit your listing for review from the **Overview** page. You'll need to read and accept the "[{% data variables.product.prodname_marketplace %} Developer Agreement](/articles/github-marketplace-developer-agreement/)," and then you can click **Submit for review**. After you submit your app for review, an onboarding expert will contact you with additional information about the onboarding process. You can learn more about the onboarding and security review process in "[Getting started with {% data variables.product.prodname_marketplace %}](/marketplace/getting-started/)." ### Removing a {% data variables.product.prodname_marketplace %} listing If you no longer want to list your app in {% data variables.product.prodname_marketplace %}, contact [marketplace@github.com](mailto:marketplace@github.com) to remove your listing. If you no longer want to list your app in {% data variables.product.prodname_marketplace %}, contact {% data variables.contact.contact_support %} to remove your listing. 2 content/developers/github-marketplace/handling-new-purchases-and-free-trials.md @@ -28,7 +28,7 @@ GitHub then sends the [`marketplace_purchase`](/webhooks/event-payloads/#marketp Read the `effective_date` and `marketplace_purchase` object from the `marketplace_purchase` webhook to determine which plan the customer purchased, when the billing cycle starts, and when the next billing cycle begins. If your app offers a free trial, read the `marketplace_purchase[on_free_trial]` attribute from the webhook. If the value is `true`, your app will need to track the free trial start date (`effective_date`) and the date the free trial ends (`free_trial_ends_on`). Use the `free_trial_ends_on` date to display the remaining days left in a free trial in your app's UI. You can do this in either a banner or in your [billing UI](/marketplace/selling-your-app/billing-customers-in-github-marketplace/#providing-billing-services-in-your-apps-ui). To learn how to handle cancellations before a free trial ends, see "[Cancelling plans](/marketplace/integrating-with-the-github-marketplace-api/cancelling-plans/)." See "[Upgrading and downgrading plans](/marketplace/integrating-with-the-github-marketplace-api/upgrading-and-downgrading-plans/)" to find out how to transition a free trial to a paid plan when a free trial expires. If your app offers a free trial, read the `marketplace_purchase[on_free_trial]` attribute from the webhook. If the value is `true`, your app will need to track the free trial start date (`effective_date`) and the date the free trial ends (`free_trial_ends_on`). Use the `free_trial_ends_on` date to display the remaining days left in a free trial in your app's UI. You can do this in either a banner or in your [billing UI](/marketplace/selling-your-app/billing-customers-in-github-marketplace/#providing-billing-services-in-your-apps-ui). To learn how to handle cancellations before a free trial ends, see "[Handling plan cancellations](/developers/github-marketplace/handling-plan-cancellations)." See "[Handling plan changes](/developers/github-marketplace/handling-plan-changes)" to find out how to transition a free trial to a paid plan when a free trial expires. See "[{% data variables.product.prodname_marketplace %} webhook events](/marketplace/integrating-with-the-github-marketplace-api/github-marketplace-webhook-events/)" for an example of the `marketplace_purchase` event payload. 6 content/developers/github-marketplace/index.md @@ -11,8 +11,10 @@ versions: {% topic_link_in_list /creating-apps-for-github-marketplace %} {% link_in_list /about-github-marketplace %} {% link_in_list /about-verified-creators %} {% link_in_list /requirements-for-listing-an-app %} {% link_in_list /security-review-process-for-submitted-apps %} {% link_in_list /security-best-practices-for-apps %} {% link_in_list /customer-experience-best-practices-for-apps %} {% link_in_list /viewing-metrics-for-your-listing %} {% link_in_list /viewing-transactions-for-your-listing %} {% topic_link_in_list /using-the-github-marketplace-api-in-your-app %} @@ -27,7 +29,7 @@ versions: {% link_in_list /writing-a-listing-description-for-your-app %} {% link_in_list /setting-pricing-plans-for-your-listing %} {% link_in_list /configuring-a-webhook-to-notify-you-of-plan-changes %} {% link_in_list /submitting-your-listing-for-review %} {% link_in_list /submitting-your-listing-for-publication %} {% topic_link_in_list /selling-your-app-on-github-marketplace %} {% link_in_list /pricing-plans-for-github-marketplace-apps %} {% link_in_list /billing-customers %} 32 content/developers/github-marketplace/pricing-plans-for-github-marketplace-apps.md @@ -10,35 +10,45 @@ versions: {% data variables.product.prodname_marketplace %} pricing plans can be free, flat rate, or per-unit, and GitHub lists the price in US dollars. Customers purchase your app using a payment method attached to their {% data variables.product.product_name %} account, without having to leave GitHub.com. You don't have to write code to perform billing transactions, but you will have to handle [billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows) for purchase events. {% data variables.product.prodname_marketplace %} pricing plans can be free, flat rate, or per-unit. Prices are set, displayed, and processed in US dollars. Paid plans are restricted to verified listings. Customers purchase your app using a payment method attached to their {% data variables.product.product_name %} account, without having to leave {% data variables.product.prodname_dotcom_the_website %}. You don't have to write code to perform billing transactions, but you will have to handle events from the {% data variables.product.prodname_marketplace %} API. For more information, see "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." If the app you're listing on {% data variables.product.prodname_marketplace %} has multiple plan options, you can set up corresponding pricing plans. For example, if your app has two plan options, an open source plan and a pro plan, you can set up a free pricing plan for your open source plan and a flat pricing plan for your pro plan. Each {% data variables.product.prodname_marketplace %} listing must have an annual and a monthly price for every plan that's listed. For more information on how to create a pricing plan, see "[Setting a {% data variables.product.prodname_marketplace %} listing's pricing plan](/marketplace/listing-on-github-marketplace/setting-a-github-marketplace-listing-s-pricing-plan/)." {% note %} {% data reusables.marketplace.free-plan-note %} **Note:** If you're listing an app on {% data variables.product.prodname_marketplace %}, you can't list your app with a free pricing plan if you offer a paid service outside of {% data variables.product.prodname_marketplace %}. ### Types of pricing plans {% endnote %} #### Free pricing plans ### Types of pricing plans {% data reusables.marketplace.free-apps-encouraged %} Free plans are completely free for users. If you set up a free pricing plan, you cannot charge users that choose the free pricing plan for the use of your app. You can create both free and paid plans for your listing. All apps need to handle events for new purchases and cancellations. Apps that only have free plans do not need to handle events for free trials, upgrades, and downgrades. For more information, see: "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." If you add a paid plan to an app that you've already listed in {% data variables.product.prodname_marketplace %} as a free service, you'll need to request verification for the app and go through financial onboarding. #### Paid pricing plans **Free pricing plans** are completely free for users. If you set up a free pricing plan, you cannot charge users that choose the free pricing plan for the use of your app. You can create both free and paid plans for your listing. Unverified free apps do not need to implement any billing flows. Free apps that are verified by Github need to implement billing flows for new purchases and cancellations, but do not need to implement billing flows for free trials, upgrades, and downgrades. If you add a paid plan to an app that you've already listed in {% data variables.product.prodname_marketplace %} as a free service, you'll need to resubmit the app for review. There are two types of paid pricing plan: **Flat rate pricing plans** charge a set fee on a monthly and yearly basis. - Flat rate pricing plans charge a set fee on a monthly and yearly basis. **Per-unit pricing plans** charge a set fee on either a monthly or yearly basis for a unit that you specify. A "unit" can be anything you'd like (for example, a user, seat, or person). - Per-unit pricing plans charge a set fee on either a monthly or yearly basis for a unit that you specify. A "unit" can be anything you'd like (for example, a user, seat, or person). **Marketplace free trials** provide 14-day free trials of OAuth or GitHub Apps to customers. When you [set up a Marketplace pricing plan](/marketplace/listing-on-github-marketplace/setting-a-github-marketplace-listing-s-pricing-plan/), you can select the option to provide a free trial for flat-rate or per-unit pricing plans. You may also want to offer free trials. These provide free, 14-day trials of OAuth or GitHub Apps to customers. When you set up a Marketplace pricing plan, you can select the option to provide a free trial for flat-rate or per-unit pricing plans. ### Free trials Customers can start a free trial for any available paid plan on a Marketplace listing, but will not be able to create more than one free trial for a Marketplace product. Customers can start a free trial for any paid plan on a Marketplace listing that includes free trials. However, customers cannot create more than one free trial per marketplace product. Free trials have a fixed length of 14 days. Customers are notified 4 days before the end of their trial period (on day 11 of the free trial) that their plan will be upgraded. At the end of a free trial, customers will be auto-enrolled into the plan they are trialing if they do not cancel. See "[New purchases and free trials](/marketplace/integrating-with-the-github-marketplace-api/handling-new-purchases-and-free-trials/)" for details on how to handle free trials in your app. For more information, see: "[Handling new purchases and free trials](/developers/github-marketplace/integrating-with-the-github-marketplace-api/handling-new-purchases-and-free-trials/)." {% note %} 61 content/developers/github-marketplace/requirements-for-listing-an-app.md @@ -1,6 +1,6 @@ --- title: Requirements for listing an app intro: 'Apps on {% data variables.product.prodname_marketplace %} must meet the requirements outlined on this page before our {% data variables.product.prodname_marketplace %} onboarding specialists will approve the listing.' intro: 'Apps on {% data variables.product.prodname_marketplace %} must meet the requirements outlined on this page before the listing can be published.' redirect_from: - /apps/adding-integrations/listing-apps-on-github-marketplace/requirements-for-listing-an-app-on-github-marketplace/ - /apps/marketplace/listing-apps-on-github-marketplace/requirements-for-listing-an-app-on-github-marketplace/ @@ -12,49 +12,62 @@ versions: free-pro-team: '*' --- <!--UI-LINK: Displayed as a link on the https://github.com/marketplace/new page.--> The requirements for listing an app on {% data variables.product.prodname_marketplace %} vary according to whether you want to offer a free or a paid app. Before you submit your app for review, you must read and accept the terms of the "[{% data variables.product.prodname_marketplace %} Developer Agreement](/articles/github-marketplace-developer-agreement/)." You'll accept the terms within your [draft listing](/marketplace/listing-on-github-marketplace/creating-a-draft-github-marketplace-listing/) on {% data variables.product.product_name %}. Once you've submitted your app, one of the {% data variables.product.prodname_marketplace %} onboarding specialists will reach out to you with more information about the onboarding process, and review your app to ensure it meets these requirements: ### Requirements for all {% data variables.product.prodname_marketplace %} listings ### User experience All listings on {% data variables.product.prodname_marketplace %} should be for tools that provide value to the {% data variables.product.product_name %} community. When you submit your listing for publication, you must read and accept the terms of the "[{% data variables.product.prodname_marketplace %} Developer Agreement](/articles/github-marketplace-developer-agreement/)." - {% data variables.product.prodname_github_app %}s should have a minimum of 100 installations. - {% data variables.product.prodname_oauth_app %}s should have a minimum of 200 users. #### User experience requirements for all apps All listings should meet the following requirements, regardless of whether they are for a free or paid app. - Listings must not actively persuade users away from {% data variables.product.product_name %}. - Listings must include valid contact information for the publisher. - Listings must have a relevant description of the application. - Listings must specify a pricing plan. - Apps must provide value to customers and integrate with the platform in some way beyond authentication. - Apps must be publicly available in {% data variables.product.prodname_marketplace %} and cannot be in beta or available by invite only. - Apps cannot actively persuade users away from {% data variables.product.product_name %}. - Marketing materials for the app must accurately represent the app's behavior. - Apps must include links to user-facing documentation that describe how to set up and use the app. - When a customer purchases an app and GitHub redirects them to the app's installation URL, the app must begin the OAuth flow immediately. For details, see "[Handling new purchases and free trials](/marketplace/integrating-with-the-github-marketplace-api/handling-new-purchases-and-free-trials/#step-3-authorization)." - Apps must have webhook events set up to notify the publisher of any plan changes or cancellations using the {% data variables.product.prodname_marketplace %} API. For more information, see "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." - Customers must be able to install your app and select repositories on both a personal and organization account. They should be able to view and manage those accounts separately. For more information on providing a good customer experience, see "[Customer experience best practices for apps](/developers/github-marketplace/customer-experience-best-practices-for-apps)." ### Brand and listing #### Brand and listing requirements for all apps - Apps that use GitHub logos must follow the "[{% data variables.product.product_name %} Logos and Usage](https://github.com/logos)" guidelines. - Apps that use GitHub logos must follow the {% data variables.product.company_short %} guidelines. For more information, see "[{% data variables.product.company_short %} Logos and Usage](https://github.com/logos)." - Apps must have a logo, feature card, and screenshots images that meet the recommendations provided in "[Writing {% data variables.product.prodname_marketplace %} listing descriptions](/marketplace/listing-on-github-marketplace/writing-github-marketplace-listing-descriptions/)." - Listings must include descriptions that are well written and free of grammatical errors. For guidance in writing your listing, see "[Writing {% data variables.product.prodname_marketplace %} listing descriptions](/marketplace/listing-on-github-marketplace/writing-github-marketplace-listing-descriptions/)." ### Security To protect your customers, we recommend that you also follow security best practices. For more information, see "[Security best practices for apps](/developers/github-marketplace/security-best-practices-for-apps)." ### Considerations for free apps Apps will go through a security review before being listed on {% data variables.product.prodname_marketplace %}. A successful review will meet the requirements and follow the security best practices listed in "[Security review process](/marketplace/getting-started/security-review-process/)." For information on the review process, contact [marketplace@github.com](mailto:marketplace@github.com). {% data reusables.marketplace.free-apps-encouraged %} ### Requirements for paid apps In addition to the requirements for all apps above, each app that you offer as a paid service on {% data variables.product.prodname_marketplace %} must also meet the following requirements: - {% data variables.product.prodname_github_app %}s should have a minimum of 100 installations. - {% data variables.product.prodname_oauth_app %}s should have a minimum of 200 users. - All paid apps must handle {% data variables.product.prodname_marketplace %} purchase events for new purchases, upgrades, downgrades, cancellations, and free trials. For more information, see "[Billing requirements for paid apps](#billing-requirements-for-paid-apps)" below. - Publishing organizations must have a verified domain and must enable two-factor authentication. For more information, see "[Requiring two-factor authentication in your organization](/github/setting-up-and-managing-organizations-and-teams/requiring-two-factor-authentication-in-your-organization.") ### Billing flows When you are ready to publish the app on {% data variables.product.prodname_marketplace %} you must request verification for the listing. Your app must integrate [billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows) using the [{% data variables.product.prodname_marketplace %} webhook event](/marketplace/integrating-with-the-github-marketplace-api/github-marketplace-webhook-events/). {% note %} #### Free apps The verification process is open to organizations. {% data reusables.marketplace.app-transfer-to-org-for-verification %} For information on how to do this, see: "[Submitting your listing for publication](/developers/github-marketplace/submitting-your-listing-for-publication#transferring-an-app-to-an-organization-before-you-submit)." {% data reusables.marketplace.free-apps-encouraged %} If you are listing a free app, you'll need to meet these requirements: {% endnote %} - Customers must be able to see that they have a free plan in the billing, profile, or account settings section of the app. - When a customer cancels your app, you must follow the flow for [cancelling plans](/marketplace/integrating-with-the-github-marketplace-api/cancelling-plans/). ### Billing requirements for paid apps #### Paid apps Your app does not need to handle payments but does need to use {% data variables.product.prodname_marketplace %} purchase events to manage new purchases, upgrades, downgrades, cancellations, and free trials. For information about how integrate these events into your app, see "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." To offer your app as a paid service, you'll need to meet these requirements to list your app on {% data variables.product.prodname_marketplace %}: Using GitHub's billing API allows customers to purchase an app without leaving GitHub and to pay for the service with the payment method already attached to their {% data variables.product.product_name %} account. - To sell your app in {% data variables.product.prodname_marketplace %}, it must use GitHub's billing system. Your app does not need to handle payments but does need to use "[{% data variables.product.prodname_marketplace %} purchase events](/marketplace/integrating-with-the-github-marketplace-api/github-marketplace-webhook-events/)" to manage new purchases, upgrades, downgrades, cancellations, and free trials. See "[Billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows)" to learn about how to integrate these events into your app. Using GitHub's billing system allows customers to purchase an app without leaving GitHub and pay for the service with the payment method already attached to their {% data variables.product.product_name %} account. - Apps must support both monthly and annual billing for paid subscriptions purchases. - Listings may offer any combination of free and paid plans. Free plans are optional but encouraged. For more information, see "[Setting a {% data variables.product.prodname_marketplace %} listing's pricing plan](/marketplace/listing-on-github-marketplace/setting-a-github-marketplace-listing-s-pricing-plan/)." {% data reusables.marketplace.marketplace-billing-ui-requirements %} 60 content/developers/github-marketplace/security-best-practices-for-apps.md @@ -0,0 +1,60 @@ --- title: Security best practices for apps intro: 'Guidelines for preparing a secure app to share on {% data variables.product.prodname_marketplace %}.' redirect_from: - /apps/marketplace/getting-started/security-review-process/ - /marketplace/getting-started/security-review-process - /developers/github-marketplace/security-review-process-for-submitted-apps shortTitle: Security best practice versions: free-pro-team: '*' --- If you follow these best practices it will help you to provide a secure user experience. ### Authorization, authentication, and access control We recommend creating a GitHub App rather than an OAuth App. {% data reusables.marketplace.github_apps_preferred %}. See "[Differences between GitHub Apps and OAuth Apps](/apps/differences-between-apps/)" for more details. - Apps should use the principle of least privilege and should only request the OAuth scopes and GitHub App permissions that the app needs to perform its intended functionality. For more information, see [Principle of least privilege](https://en.wikipedia.org/wiki/Principle_of_least_privilege) in Wikipedia. - Apps should provide customers with a way to delete their account, without having to email or call a support person. - Apps should not share tokens between different implementations of the app. For example, a desktop app should have a separate token from a web-based app. Individual tokens allow each app to request the access needed for GitHub resources separately. - Design your app with different user roles, depending on the functionality needed by each type of user. For example, a standard user should not have access to admin functionality, and billing managers might not need push access to repository code. - Apps should not share service accounts such as email or database services to manage your SaaS service. - All services used in your app should have unique login and password credentials. - Admin privilege access to the production hosting infrastructure should only be given to engineers and employees with administrative duties. - Apps should not use personal access tokens to authenticate and should authenticate as an [OAuth App](/apps/about-apps/#about-oauth-apps) or a [GitHub App](/apps/about-apps/#about-github-apps): - OAuth Apps should authenticate using an [OAuth token](/apps/building-oauth-apps/authorizing-oauth-apps/). - GitHub Apps should authenticate using either a [JSON Web Token (JWT)](/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app), [OAuth token](/apps/building-github-apps/identifying-and-authorizing-users-for-github-apps/), or [installation access token](/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-an-installation). ### Data protection - Apps should encrypt data transferred over the public internet using HTTPS, with a valid TLS certificate, or SSH for Git. - Apps should store client ID and client secret keys securely. We recommend storing them as [environmental variables](http://en.wikipedia.org/wiki/Environment_variable#Getting_and_setting_environment_variables). - Apps should delete all GitHub user data within 30 days of receiving a request from the user, or within 30 days of the end of the user's legal relationship with GitHub. - Apps should not require the user to provide their GitHub password. - Apps should encrypt tokens, client IDs, and client secrets. ### Logging and monitoring Apps should have logging and monitoring capabilities. App logs should be retained for at least 30 days and archived for at least one year. A security log should include: - Authentication and authorization events - Service configuration changes - Object reads and writes - All user and group permission changes - Elevation of role to admin - Consistent timestamping for each event - Source users, IP addresses, and/or hostnames for all logged actions ### Incident response workflow To provide a secure experience for users, you should have a clear incident response plan in place before listing your app. We recommend having a security and operations incident response team in your company rather than using a third-party vendor. You should have the capability to notify {% data variables.product.product_name %} within 24 hours of a confirmed incident. For an example of an incident response workflow, see the "Data Breach Response Policy" on the [SANS Institute website](https://www.sans.org/information-security-policy/). A short document with clear steps to take in the event of an incident is more valuable than a lengthy policy template. ### Vulnerability management and patching workflow You should conduct regular vulnerability scans of production infrastructure. You should triage the results of vulnerability scans and define a period of time in which you agree to remediate the vulnerability. If you are not ready to set up a full vulnerability management program, it's useful to start by creating a patching process. For guidance in creating a patch management policy, see this TechRepublic article "[Establish a patch management policy](https://www.techrepublic.com/blog/it-security/establish-a-patch-management-policy-87756/)." 94 ...ent/developers/github-marketplace/security-review-process-for-submitted-apps.md This file was deleted. 53 content/developers/github-marketplace/setting-pricing-plans-for-your-listing.md @@ -1,6 +1,6 @@ --- title: Setting pricing plans for your listing intro: 'When [listing your app on {% data variables.product.prodname_marketplace %}](/marketplace/listing-on-github-marketplace/), you can choose to provide your app as a free service or sell your app. If you plan to sell your app, you can create different pricing plans for different feature tiers.' intro: 'When you list your app on {% data variables.product.prodname_marketplace %}, you can choose to provide your app as a free service or sell your app. If you plan to sell your app, you can create different pricing plans for different feature tiers.' redirect_from: - /apps/adding-integrations/managing-pricing-and-payments-for-a-github-marketplace-listing/setting-a-github-marketplace-listing-s-pricing-plan/ - /apps/marketplace/managing-pricing-and-payments-for-a-github-marketplace-listing/setting-a-github-marketplace-listing-s-pricing-plan/ @@ -17,57 +17,52 @@ versions: free-pro-team: '*' --- ### About setting pricing plans If you want to sell an app on {% data variables.product.prodname_marketplace %}, you need to request verification when you publish the listing for your app. During the verification process, an onboarding expert checks the organization's identity and security settings. The onboarding expert will also take the organization through financial onboarding. For more information, see: "[Requirements for listing an app on {% data variables.product.prodname_marketplace %}](/marketplace/getting-started/requirements-for-listing-an-app-on-github-marketplace/)." ### Creating pricing plans To learn about the types of pricing plans that {% data variables.product.prodname_marketplace %} offers, see "[{% data variables.product.prodname_marketplace %} Pricing Plans](/marketplace/selling-your-app/github-marketplace-pricing-plans/)." You'll also find helpful billing guidelines in "[Selling your app](/marketplace/selling-your-app/)." Pricing plans can be in the draft or published state. If you haven't submitted your {% data variables.product.prodname_marketplace %} listing for approval, a published listing will function the same way as draft listings until your app is approved and listed on {% data variables.product.prodname_marketplace %}. Draft listings allow you to create and save new pricing plans without making them available on your {% data variables.product.prodname_marketplace %} listing page. Once you publish the pricing plan, it's available for customers to purchase immediately. You can publish up to 10 pricing plans. {% data reusables.marketplace.app-transfer-to-org-for-verification %} For information on how to do this, see: "[Submitting your listing for publication](/developers/github-marketplace/submitting-your-listing-for-publication#transferring-an-app-to-an-organization-before-you-submit)." To create a pricing plan for your {% data variables.product.prodname_marketplace %} listing, click **Plans and pricing** in the left sidebar of your [{% data variables.product.prodname_marketplace %} listing page](https://github.com/marketplace/manage). If you haven't created a {% data variables.product.prodname_marketplace %} listing yet, read "[Creating a draft {% data variables.product.prodname_marketplace %} listing](/marketplace/listing-on-github-marketplace/creating-a-draft-github-marketplace-listing/)" to learn how. When you click **New draft plan**, you'll see a form that allows you to customize your pricing plan. You'll need to configure the following fields to create a pricing plan: {% data variables.product.prodname_marketplace %} offers several different types of pricing plan. For detailed information, see "[Pricing plans for {% data variables.product.prodname_marketplace %}](/developers/github-marketplace/pricing-plans-for-github-marketplace-apps)." #### Plan name ### About saving pricing plans Your pricing plan's name will appear on your {% data variables.product.prodname_marketplace %} app's landing page. You can customize the name of your pricing plan to align to the plan's resources, the size of the company that will use the plan, or anything you'd like. You can save pricing plans in a draft or published state. If you haven't submitted your {% data variables.product.prodname_marketplace %} listing for approval, a published plan will function in the same way as a draft plan until your listing is approved and shown on {% data variables.product.prodname_marketplace %}. Draft plans allow you to create and save new pricing plans without making them available on your {% data variables.product.prodname_marketplace %} listing page. Once you publish a pricing plan on a published listing, it's available for customers to purchase immediately. You can publish up to 10 pricing plans. #### Pricing models For guidelines on billing customers, see "[Billing customers](/developers/github-marketplace/billing-customers)." ##### Free plans {% data reusables.marketplace.free-apps-encouraged %} A free plan still requires you to handle [new purchase](/marketplace/integrating-with-the-github-marketplace-api/handling-new-purchases-and-free-trials/) and [cancellation](/marketplace/integrating-with-the-github-marketplace-api/cancelling-plans/) billing flows. See "[Billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows)" for more details. ##### Flat-rate plans ### Creating pricing plans Flat-rate pricing plans allow you to offer your service to customers for a flat-rate fee. {% data reusables.marketplace.marketplace-pricing-free-trials %} To create a pricing plan for your {% data variables.product.prodname_marketplace %} listing, click **Plans and pricing** in the left sidebar of your [{% data variables.product.prodname_marketplace %} listing page](https://github.com/marketplace/manage). For more information, see "[Creating a draft {% data variables.product.prodname_marketplace %} listing](/marketplace/listing-on-github-marketplace/creating-a-draft-github-marketplace-listing/)." You must set a price for both monthly and yearly subscriptions in U.S. Dollars for flat-rate plans. When you click **New draft plan**, you'll see a form that allows you to customize your pricing plan. You'll need to configure the following fields to create a pricing plan: ##### Per-unit plans - **Plan name** - Your pricing plan's name will appear on your {% data variables.product.prodname_marketplace %} app's landing page. You can customize the name of your pricing plan to align with the plan's resources, the size of the company that will use the plan, or anything you'd like. Per-unit pricing allows you to offer your app in units. For example, a unit can be a person, seat, or user. You'll need to provide a name for the unit and set a price for both monthly and yearly subscriptions, in U.S. Dollars. - **Pricing models** - There are three types of pricing plan: free, flat-rate, and per-unit. All plans require you to process new purchase and cancellation events from the marketplace API. In addition, for paid plans: #### Available for - You must set a price for both monthly and yearly subscriptions in US dollars. - Your app must process plan change events. - You must request verification to publish a listing with a paid plan. - {% data reusables.marketplace.marketplace-pricing-free-trials %} {% data variables.product.prodname_marketplace %} pricing plans can apply to **Personal and organization accounts**, **Personal accounts only**, or **Organization accounts only**. For example, if your pricing plan is per-unit and provides multiple seats, you would select **Organization accounts only** because there is no way to assign seats to people in an organization from a personal account. For detailed information, see "[Pricing plans for {% data variables.product.prodname_marketplace %} apps](/developers/github-marketplace/pricing-plans-for-github-marketplace-apps)" and "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." #### Short description - **Available for** - {% data variables.product.prodname_marketplace %} pricing plans can apply to **Personal and organization accounts**, **Personal accounts only**, or **Organization accounts only**. For example, if your pricing plan is per-unit and provides multiple seats, you would select **Organization accounts only** because there is no way to assign seats to people in an organization from a personal account. Write a brief summary of the details of the pricing plan. The description might include the type of customer the plan is intended for or the resources the plan includes. - **Short description** - Write a brief summary of the details of the pricing plan. The description might include the type of customer the plan is intended for or the resources the plan includes. #### Bullets - **Bullets** - You can write up to four bullets that include more details about your pricing plan. The bullets might include the use cases of your app or list more detailed information about the resources or features included in the plan. You can write up to four bullets that include more details about your pricing plan. The bullets might include the use cases of your app or list more detailed information about the resources or features included in the plan. {% data reusables.marketplace.free-plan-note %} ### Changing a {% data variables.product.prodname_marketplace %} listing's pricing plan If a pricing plan for your {% data variables.product.prodname_marketplace %} plan is no longer needed or if you need to adjust pricing details, you can remove it. If a pricing plan for your {% data variables.product.prodname_marketplace %} listing is no longer needed, or if you need to adjust pricing details, you can remove it.  Once you publish a pricing plan for an app already listed in the {% data variables.product.prodname_marketplace %}, you can't make changes to the plan. Instead, you'll need to remove the pricing plan. Customers who already purchased the removed pricing plan will continue to use it until they opt out and move onto a new pricing plan. For more on pricing plans, see "[{% data variables.product.prodname_marketplace %} pricing plans](/marketplace/selling-your-app/github-marketplace-pricing-plans/)." Once you publish a pricing plan for an app that is already listed in {% data variables.product.prodname_marketplace %}, you can't make changes to the plan. Instead, you'll need to remove the pricing plan and create a new plan. Customers who already purchased the removed pricing plan will continue to use it until they opt out and move onto a new pricing plan. For more on pricing plans, see "[{% data variables.product.prodname_marketplace %} pricing plans](/marketplace/selling-your-app/github-marketplace-pricing-plans/)." Once you remove a pricing plan, users won't be able to purchase your app using that plan. Existing users on the removed pricing plan will continue to stay on the plan until they cancel their plan subscription. 37 content/developers/github-marketplace/submitting-your-listing-for-publication.md @@ -0,0 +1,37 @@ --- title: Submitting your listing for publication intro: 'You can submit your listing for the {% data variables.product.prodname_dotcom %} community to use.' redirect_from: - /marketplace/listing-on-github-marketplace/submitting-your-listing-for-review - /developers/github-marketplace/submitting-your-listing-for-review versions: free-pro-team: '*' --- Once you've completed the listing for your app, you'll see two buttons that allow you to request publication of the listing with or without verification. The **Request** button for "Publish without verification" is disabled if you have published any paid pricing plans in the listing.  {% data reusables.marketplace.launch-with-free %} After you submit your listing for review, an onboarding expert will reach out to you with additional information. For an overview of the process for creating and submitting a listing, see "[About {% data variables.product.prodname_marketplace %}](/developers/github-marketplace/about-github-marketplace#publishing-an-app-to-github-marketplace)." ### Prerequisites for publishing with verification Before you request verification of your listing, you'll need to integrate the {% data variables.product.prodname_marketplace %} billing flows and webhook into your app. For more information, see "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." If you've met the requirements for listing and you've integrated with the {% data variables.product.prodname_marketplace %} API, go ahead and submit your listing. For more information, see "[Requirements for listing an app](/developers/github-marketplace/requirements-for-listing-an-app)." {% data reusables.marketplace.app-transfer-to-org-for-verification %} For information on how to do this, see: "[Transferring an app to an organization before you submit](#transferring-an-app-to-an-organization-before-you-submit)" below. ### Transferring an app to an organization before you submit You cannot sell an app that's owned by a user account. You need to transfer the app to an organization that is already a verified creator, or that can request verification for a listing for the app. For details, see: 1. "[Creating an organization from scratch](/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch)" 1. "[Transferring ownership of a GitHub App](/developers/apps/transferring-ownership-of-a-github-app)" or "[Transferring ownership of an OAuth App](/developers/apps/transferring-ownership-of-an-oauth-app)" 22 content/developers/github-marketplace/submitting-your-listing-for-review.md This file was deleted. 4 content/developers/github-marketplace/testing-your-app.md @@ -1,6 +1,6 @@ --- title: Testing your app intro: 'GitHub recommends testing your app with APIs and webhooks before submitting your listing to {% data variables.product.prodname_marketplace %} so you can provide an ideal experience for customers. Before the {% data variables.product.prodname_marketplace %} onboarding team approves your app, it must adequately handle the [billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows).' intro: 'GitHub recommends testing your app with APIs and webhooks before submitting your listing to {% data variables.product.prodname_marketplace %} so you can provide an ideal experience for customers. Before an onboarding expert approves your app, it must adequately handle the billing flows.' redirect_from: - /apps/marketplace/testing-apps-apis-and-webhooks/ - /apps/marketplace/integrating-with-the-github-marketplace-api/testing-github-marketplace-apps/ @@ -13,7 +13,7 @@ versions: ### Testing apps You can use a [draft {% data variables.product.prodname_marketplace %} listing](/marketplace/listing-on-github-marketplace/creating-a-draft-github-marketplace-listing/) to simulate each of the [billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows). A listing in the draft state means that it has not been submitted for approval. Any purchases you make using a draft {% data variables.product.prodname_marketplace %} listing will _not_ create real transactions, and GitHub will not charge your credit card. You can use a draft {% data variables.product.prodname_marketplace %} listing to simulate each of the billing flows. A listing in the draft state means that it has not been submitted for approval. Any purchases you make using a draft {% data variables.product.prodname_marketplace %} listing will _not_ create real transactions, and GitHub will not charge your credit card. For more information, see "[Drafting a listing for your app](/developers/github-marketplace/drafting-a-listing-for-your-app)" and "[Using the {% data variables.product.prodname_marketplace %} API in your app](/developers/github-marketplace/using-the-github-marketplace-api-in-your-app)." #### Using a development app with a draft listing to test changes 2 .../developers/github-marketplace/webhook-events-for-the-github-marketplace-api.md @@ -1,6 +1,6 @@ --- title: Webhook events for the GitHub Marketplace API intro: 'A {% data variables.product.prodname_marketplace %} app receives information about changes to a user''s plan from the Marketplace purchase event webhook. A Marketplace purchase event is triggered when a user purchases, cancels, or changes their payment plan. For details on how to respond to each of these types of events, see "[Billing flows](/marketplace/integrating-with-the-github-marketplace-api/#billing-flows)."' intro: 'A {% data variables.product.prodname_marketplace %} app receives information about changes to a user''s plan from the Marketplace purchase event webhook. A Marketplace purchase event is triggered when a user purchases, cancels, or changes their payment plan.' redirect_from: - /apps/marketplace/setting-up-github-marketplace-webhooks/about-webhook-payloads-for-a-github-marketplace-listing/ - /apps/marketplace/integrating-with-the-github-marketplace-api/github-marketplace-webhook-events/ 4 content/developers/webhooks-and-events/webhook-events-and-payloads.md @@ -445,7 +445,7 @@ Key | Type | Description #### Webhook payload object {% data reusables.webhooks.installation_properties %} {% data reusables.webhooks.app_desc %} {% data reusables.webhooks.app_always_desc %} {% data reusables.webhooks.sender_desc %} #### Webhook payload example @@ -469,7 +469,7 @@ Key | Type | Description #### Webhook payload object {% data reusables.webhooks.installation_repositories_properties %} {% data reusables.webhooks.app_desc %} {% data reusables.webhooks.app_always_desc %} {% data reusables.webhooks.sender_desc %} #### Webhook payload example 54 ...ssions/collaborating-with-your-community-using-discussions/about-discussions.md @@ -0,0 +1,54 @@ --- title: About discussions intro: Use discussions to ask and answer questions, share information, make announcements, and conduct or participate in a conversation about a project on {% data variables.product.product_name %}. versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### About discussions With {% data variables.product.prodname_discussions %}, the community for your project can create and participate in conversations within the project's repository. Discussions empower a project's maintainers, contributors, and visitors to gather and accomplish the following goals in a central location, without third-party tools. - Share announcements and information, gather feedback, plan, and make decisions - Ask questions, discuss and answer the questions, and mark the discussions as answered - Foster an inviting atmosphere for visitors and contributors to discuss goals, development, administration, and workflows  You don't need to close a discussion like you close an issue or a pull request. If a repository administrator or project maintainer enables discussions for a repository, anyone who visits the repository can create and participate in discussions for the repository. Repository administrators and project maintainers can manage discussions and discussion categories in a repository, and pin discussions to increase the visibility of the discussion. Moderators and collaborators can mark comments as answers, lock discussions, and convert issues to discussions. For more information, see "[Repository permission levels for an organization](/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization)." For more information about management of discussions for your repository, see "[Managing discussions in your repository](/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository)." ### About categories and formats for discussions {% data reusables.discussions.you-can-categorize-discussions %} {% data reusables.discussions.about-categories-and-formats %} {% data reusables.discussions.repository-category-limit %} For discussions with a question/answer format, an individual comment within the discussion can be marked as the discussion's answer. {% data reusables.discussions.github-recognizes-members %} For more information, see "[Managing categories for discussions in your repository](/discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository)." ### Best practices for discussions As a community member or maintainer, start a discussion to ask a question or discuss information that affects the community. For more information, see "[Collaborating with maintainers using discussions](/discussions/collaborating-with-your-community-using-discussions/collaborating-with-maintainers-using-discussions)." Participate in a discussion to ask and answer questions, provide feedback, and engage with the project's community. For more information, see "[Participating in a discussion](/discussions/collaborating-with-your-community-using-discussions/participating-in-a-discussion)." You can spotlight discussions that contain important, useful, or exemplary conversations among members in the community. For more information, see "[Managing discussions in your repository](/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository#pinning-a-discussion)." {% data reusables.discussions.you-can-convert-an-issue %} For more information, see "[Moderating discussions in your repository](/discussions/managing-discussions-for-your-community/moderating-discussions#converting-an-issue-to-a-discussion)." ### Sharing feedback You can share your feedback about {% data variables.product.prodname_discussions %} with {% data variables.product.company_short %}. To join the conversation, see [`github/feedback`](https://github.com/github/feedback/discussions?discussions_q=category%3A%22Discussions+Feedback%22). ### Further reading - "[About writing and formatting on {% data variables.product.prodname_dotcom %}](/github/writing-on-github/about-writing-and-formatting-on-github)" - "[Searching discussions](/github/searching-for-information-on-github/searching-discussions)" - "[About notifications](/github/managing-subscriptions-and-notifications-on-github/about-notifications)" - "[Moderating comments and conversations](/github/building-a-strong-community/moderating-comments-and-conversations)" - "[Maintaining your safety on {% data variables.product.prodname_dotcom %}](/github/building-a-strong-community/maintaining-your-safety-on-github)" 50 ...community-using-discussions/collaborating-with-maintainers-using-discussions.md @@ -0,0 +1,50 @@ --- title: Collaborating with maintainers using discussions shortTitle: Collaborating with maintainers intro: You can contribute to the goals, plans, health, and community for a project on {% data variables.product.product_name %} by communicating with the maintainers of the project in a discussion. permissions: People with read permissions to a repository can start and participate in discussions in the repository. versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### About collaboration with maintainers using discussions {% data reusables.discussions.about-discussions %} If you use or contribute to a project, you can start a discussion to make suggestions and engage with maintainers and community members about your plans, questions, ideas, and feedback. For more information, see "[About discussions](/discussions/collaborating-with-your-community-using-discussions/about-discussions)." {% data reusables.discussions.about-categories-and-formats %} Repository administrators and project maintainers can delete a discussion. For more information, see "[Managing discussions in your repository](/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository#deleting-a-discussion)." {% data reusables.discussions.github-recognizes-members %} These members appear in a list of the most helpful contributors to the project's discussions. As your project grows, you can grant higher access permissions to active members of your community. For more information, see "[Granting higher permissions to top contributors](/discussions/guides/granting-higher-permissions-to-top-contributors)"  For more information about participation in discussions, see "[Participating in a discussion](/discussions/collaborating-with-your-community-using-discussions/participating-in-a-discussion)." ### Prerequisites To collaborate with maintainers using discussions, a repository administrator or project maintainer must enable discussions for the repository. For more information, see "[Enabling or disabling discussions for a repository](/github/administering-a-repository/enabling-or-disabling-github-discussions-for-a-repository)." ### Starting a discussion {% data reusables.discussions.starting-a-discussion %} ### Filtering the list of discussions You can search for discussions and filter the list of discussions in a repository. For more information, see "[Searching discussions](/github/searching-for-information-on-github/searching-discussions)." {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} 1. In the **Search all discussions** field, type a search query. Optionally, to the right of the search field, click a button to further filter the results.  1. In the list of discussions, click the discussion you want to view.  ### Converting an issue to a discussion {% data reusables.discussions.you-can-convert-an-issue %} For more information, see "[Moderating discussions in your repository](/discussions/managing-discussions-for-your-community/moderating-discussions#converting-an-issue-to-a-discussion#converting-an-issue-to-a-discussion)." ### Further reading - "[About writing and formatting on {% data variables.product.prodname_dotcom %}](/github/writing-on-github/about-writing-and-formatting-on-github)" - "[Maintaining your safety on {% data variables.product.prodname_dotcom %}](/github/building-a-strong-community/maintaining-your-safety-on-github)" 14 content/discussions/collaborating-with-your-community-using-discussions/index.md @@ -0,0 +1,14 @@ --- title: Collaborating with your community using discussions shortTitle: Collaborating using discussions intro: Gather and discuss your project with community members and other maintainers. versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} {% link_in_list /about-discussions %} {% link_in_list /participating-in-a-discussion %} {% link_in_list /collaborating-with-maintainers-using-discussions %} 31 ...borating-with-your-community-using-discussions/participating-in-a-discussion.md @@ -0,0 +1,31 @@ --- title: Participating in a discussion intro: You can converse with the community and maintainers in a forum within the repository for a project on {% data variables.product.product_name %}. permissions: People with read permissions to a repository can participate in discussions in the repository. versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### About participation in a discussion {% data reusables.discussions.about-discussions %} For more information, see "[About discussions](/discussions/collaborating-with-your-community-using-discussions/about-discussions)." In addition to starting or viewing a discussion, you can comment in response to the original comment from the author of the discussion. You can also create a comment thread by replying to an individual comment that another community member made within the discussion, and react to comments with emoji. For more information about reactions, see "[About conversations on {% data variables.product.prodname_dotcom %}](/github/collaborating-with-issues-and-pull-requests/about-conversations-on-github#reacting-to-ideas-in-comments)." You can block users and report disruptive content to maintain a safe and pleasant environment for yourself on {% data variables.product.product_name %}. For more information, see "[Maintaining your safety on {% data variables.product.prodname_dotcom %}](/github/building-a-strong-community/maintaining-your-safety-on-github)." ### Prerequisites Discussions must be enabled for the repository for you to participate in a discussion in the repository. For more information, see "[Enabling or disabling discussions for a repository](/github/administering-a-repository/enabling-or-disabling-github-discussions-for-a-repository)." ### Creating a discussion {% data reusables.discussions.starting-a-discussion %} ### Marking a comment as an answer Discussion authors and users with the triage role or greater for a repository can mark a comment as the answer to a discussion in the repository. {% data reusables.discussions.marking-a-comment-as-an-answer %} 49 content/discussions/guides/best-practices-for-community-conversations-on-github.md @@ -0,0 +1,49 @@ --- title: Best practices for community conversations on GitHub shortTitle: Best practices for community conversations intro: 'You can use discussions to brainstorm with your team, and eventually move the conversation to a discussion when you are ready to scope out the work.' versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### Community conversations in {% data variables.product.prodname_discussions %} Since {% data variables.product.prodname_discussions %} is an open forum, there is an opportunity to bring non-code collaboration into a project's repository and gather diverse feedback and ideas more quickly. You can help drive a productive conversation by: - Asking pointed questions and follow-up questions to garner specific feedback - Capture a diverse experience and distill it down to main points - Open an issue to take action based on the conversation, where applicable For more information about opening an issue and cross-referencing a discussion, see "[Opening an issue from a comment](/github/managing-your-work-on-github/opening-an-issue-from-a-comment)." ### Learning about conversations on GitHub You can create and participate in discussions, issues, and pull requests, depending on the type of conversation you'd like to have. You can use {% data variables.product.prodname_discussions %} to discuss big picture ideas, brainstorm, and spike out a project's specific details before committing it to an issue, which can then be scoped. Discussions are useful for teams if: - You are in the discovery phase of a project and are still learning which director your team wants to go in - You want to collect feedback from a wider community about a project - You want to keep bug fixes, feature requests, and general conversations separate Issues are useful for discussing specific details of a project such as bug reports and planned improvements. For more information, see "[About issues](/articles/about-issues)." Pull requests allow you to comment directly on proposed changes. For more information, see "[About pull requests](/articles/about-pull-requests)" and "[Commenting on a pull request](/articles/commenting-on-a-pull-request)." {% data reusables.organizations.team-discussions-purpose %} For more information, see "[About team discussions](/articles/about-team-discussions)." ### Following contributing guidelines Before you open a discussion, check to see if the repository has contributing guidelines. The CONTRIBUTING file includes information about how the repository maintainer would like you to contribute ideas to the project. For more information, see "[Setting up your project for healthy contributions](/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions)." ### Next steps To continue learning about {% data variables.product.prodname_discussions %} and quickly create a discussion for your community, see "[Quickstart for {% data variables.product.prodname_discussions %}](/discussions/quickstart)." ### Further reading - "[Setting up your project for healthy contributions](/articles/setting-up-your-project-for-healthy-contributions)" - "[Using templates to encourage useful issues and pull requests](/github/building-a-strong-community/using-templates-to-encourage-useful-issues-and-pull-requests)" - "[Moderating comments and conversations](/articles/moderating-comments-and-conversations)" - "[Writing on {% data variables.product.prodname_dotcom %}](/articles/writing-on-github)" 21 content/discussions/guides/finding-discussions-across-multiple-repositories.md @@ -0,0 +1,21 @@ --- title: Finding discussions across multiple repositories intro: 'You can easily access every discussion you''ve created or participated in across multiple repositories.' versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### Finding discussions 1. Navigate to {% data variables.product.prodname_dotcom_the_website %}. 1. In the top-right corner of {% data variables.product.prodname_dotcom_the_website %}, click your profile photo, then click **Your enterprises**.  1. Toggle between **Created** and **Commented** to see the discussions you've created or participated in. ### Further reading - "[Searching discussions](/github/searching-for-information-on-github/searching-discussions)" - "[About discussions](/discussions/collaborating-with-your-community-using-discussions/about-discussions)" - "[Managing discussions for your community](/discussions/managing-discussions-for-your-community)" 32 content/discussions/guides/granting-higher-permissions-to-top-contributors.md @@ -0,0 +1,32 @@ --- title: Granting higher permissions to top contributors intro: 'Repository administrators can promote any community member to a moderator and maintainer.' versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### Introduction The most helpful contributors for the past 30 days are highlighted on the {% data variables.product.prodname_discussions %} dashboard, based on how many comments were marked as answers by other community members. Helpful contributors can help drive a healthy community and moderate and guide the community space in addition to maintainers. ### Step 1: Audit your discussions top contributors {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} 1. Compare the list of contributors with their access permissions to see who qualifies to moderate the discussion. ### Step 2: Review permission levels for discussions People with triage permissions for a repository can help moderate a project's discussions by marking comments as answers, locking discussions that are not longer useful or are damaging to the community, and converting issues to discussions when an idea is still in the early stages of development. For more information, see "[Moderating discussions](/discussions/managing-discussions-for-your-community/moderating-discussions)." For more information about repository permission levels and {% data variables.product.prodname_discussions %}, see "[Repository permissions levels for an organization](/github/setting-up-and-managing-organizations-and-teams/repository-permission-levels-for-an-organization)." ### Step 3: Change permissions levels for top contributors You can change a contributor's permission levels to give them more access to the tooling they need to moderate GitHub Discussions. To change a person's or team's permission levels, see "[Managing teams and people with access to your repository](/github/administering-a-repository/managing-teams-and-people-with-access-to-your-repository)." ### Step 4: Notify community members of elevated access When you change a collaborators permission level, they will receive a notification for the change. 29 content/discussions/guides/index.md @@ -0,0 +1,29 @@ --- title: Discussions guides shortTitle: Guides intro: 'Discover pathways to get started or learn best practices for participating or monitoring your community''s discussions.' versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### Getting started with discussions {% link_in_list /about-discussions %} {% link_in_list /best-practices-for-community-conversations-on-github %} {% link_in_list /finding-discussions-across-multiple-repositories %} <!-- {% link_in_list /managing-notifications-for-discussions %} --> ### Administering discussions {% link_in_list /granting-higher-permissions-to-top-contributors %} <!--<!-- Commenting out what is only nice to have for discussions release {% link_in_list /updating-your-contributing-guidelines-with-discussions %} --> <!-- ### Discussions and open source projects {% link_in_list /collaborating-on-open-source-projects-in-discussions %} {% link_in_list /welcoming-contributions-to-your-communitys-discussions %} --> 55 content/discussions/index.md @@ -0,0 +1,55 @@ --- title: GitHub Discussions Documentation beta_product: true shortTitle: GitHub Discussions intro: '{% data variables.product.prodname_discussions %} is a collaborative communication forum for the community around an open source project. Community members can ask and answer questions, share updates, have open-ended conversations, and follow along on decisions affecting the community''s way of working.' introLinks: quickstart: /discussions/quickstart featuredLinks: guides: - /discussions/collaborating-with-your-community-using-discussions/about-discussions - /discussions/collaborating-with-your-community-using-discussions/participating-in-a-discussion - /discussions/managing-discussions-for-your-community/moderating-discussions gettingStarted: - /discussions/quickstart guideCards: - /discussions/collaborating-with-your-community-using-discussions/about-discussions - /discussions/collaborating-with-your-community-using-discussions/participating-in-a-discussion - /discussions/managing-discussions-for-your-community/moderating-discussions popular: - /discussions/guides/granting-higher-permissions-to-top-contributors - /discussions/guides/best-practices-for-community-conversations-on-github - /discussions/guides/finding-discussions-across-multiple-repositories - /discussions/collaborating-with-your-community-using-discussions/collaborating-with-maintainers-using-discussions - /discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository product_video: https://www.youtube-nocookie.com/embed/DbTWBP3_RbM layout: product-landing versions: free-pro-team: '*' --- <!-- {% link_with_intro /quickstart %} --> <!-- {% link_with_intro /discussions-guides %} --> <!-- {% link_with_intro /collaborating-with-your-community-using-discussions %} --> <!-- {% link_with_intro /managing-discussions-for-your-community %} --> <!-- Community examples --> {% assign discussionsCommunityExamples = site.data.variables.discussions_community_examples %} {% if discussionsCommunityExamples %} <div class="my-6 pt-6"> <h2 class="mb-2 font-mktg h1">Communities using discussions</h2> <div class="d-flex flex-wrap gutter"> {% render 'discussions-community-card' for discussionsCommunityExamples as example %} </div> {% if discussionsCommunityExamples.length > 6 %} <button class="js-filter-card-show-more btn btn-outline float-right">Show more {% octicon "arrow-right" %}</button> {% endif %} <div class="js-filter-card-no-results d-none py-4 text-center text-gray font-mktg"> <div class="mb-3">{% octicon "search" width="24" %}</div> <h3 class="text-normal">Sorry, there is no result for <strong class="js-filter-card-value"></strong></h3> <p class="my-3 f4">It looks like we don't have an example that fits your filter.<br>Try another filter or add your code example</p> <a href="https://github.com/github/docs/blob/main/data/variables/discussions_community_examples.yml">Add your community {% octicon "arrow-right" %}</a> </div> </div> {% endif %} 13 content/discussions/managing-discussions-for-your-community/index.md @@ -0,0 +1,13 @@ --- title: Managing discussions for your community shortTitle: Managing discussions intro: 'You can enable and configure discussions for your repository, and you can use tools on {% data variables.product.product_name %} to moderate conversations among community members.' versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} {% link_in_list /managing-discussions-in-your-repository %} {% link_in_list /managing-categories-for-discussions-in-your-repository %} {% link_in_list /moderating-discussions %} 64 ...ns-for-your-community/managing-categories-for-discussions-in-your-repository.md @@ -0,0 +1,64 @@ --- title: Managing categories for discussions in your repository intro: You can categorize the discussions in your repository to organize conversations for your community members, and you can choose a format for each category. permissions: Repository administrators and people with write or greater access to a repository can enable discussions in the repository. versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### About categories for discussions {% data reusables.discussions.about-discussions %} {% data reusables.discussions.about-categories-and-formats %} Each category must have a unique name and emoji pairing, and can be accompanied by a detailed description stating its purpose. Categories help maintainers organize how conversations are filed and are customizable to help distinguish categories that are Q&A or more open-ended conversations.{% data reusables.discussions.repository-category-limit %} For more information, see "[About discussions](/discussions/collaborating-with-your-community-using-discussions/about-discussions#about-categories-and-formats-for-discussions)." ### Default categories | Category | Purpose | Type | | :- | :- | :- | | #️⃣ General | Anything and everything relevant to the project | Open-ended discussion | |💡Ideas | Ideas to change or improve the project | Open-ended discussion | | 🙏 Q&A | Questions for the community to answer, with a question/answer format | Question and Answer | | 🙌 Show and tell | Creations, experiments, or tests relevant to the project | Open-ended discussion | ### Creating a category {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.edit-categories %} 1. Click **New category**.  1. Edit the emoji, title, description, and discussion format for the category. For more information about discussion formats, see "[About discussions](/discussions/collaborating-with-your-community-using-discussions/about-discussions#about-categories-and-formats-for-discussions)."  1. Click **Create**.  ### Editing a category You can edit a category to change the category's emoji, title, description, and discussion format. {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} 1. To the right of a category in the list, click {% octicon "pencil" aria-label="The pencil icon" %}.  1. {% data reusables.discussions.edit-category-details %}  1. Click **Save changes**.  ### Deleting a category When you delete a category, {% data variables.product.product_name %} will move all discussions in the deleted category to an existing category that you choose. {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} 1. To the right of a category in the list, click {% octicon "trash" aria-label="The trash icon" %}.  1. Use the drop-down menu, and choose a new category for any discussions in the category you're deleting.  1. Click **Delete & Move**.  108 ...aging-discussions-for-your-community/managing-discussions-in-your-repository.md @@ -0,0 +1,108 @@ --- title: Managing discussions in your repository intro: You can categorize, spotlight, transfer, or delete the discussions in a repository. permissions: Repository administrators and people with write or greater access to a repository can manage discussions in the repository. versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### About management of discussions {% data reusables.discussions.about-discussions %} For more information about discussions, see "[About discussions](/discussions/collaborating-with-your-community-using-discussions/about-discussions)." Organization owners can choose the permissions required to create a discussion for repositories owned by the organization. For more information, see "[Managing discussion creation for repositories in your organization](/github/setting-up-and-managing-organizations-and-teams/managing-discussion-creation-for-repositories-in-your-organization)." As a discussions maintainer, you can create community resources to encourage discussions that are aligned with the overall project goal and maintain a friendly open forum for collaborators. Creating a code of conduct or contribution guidelines for collaborators to follow will help facilitate a collaborative and productive forum. For more information on creating community resources, see "[Adding a code of conduct to your project](/github/building-a-strong-community/adding-a-code-of-conduct-to-your-project)," and "[Setting guidelines for repository contributors](/github/building-a-strong-community/setting-guidelines-for-repository-contributors)." For more information on facilitating a healthy discussion, see "[Moderating comments and conversations](/github/building-a-strong-community/moderating-comments-and-conversations)." ### Prerequisites To manage discussions in a repository, discussions must be enabled for the repository. For more information, see "[Enabling or disabling discussions for a repository](/github/administering-a-repository/enabling-or-disabling-github-discussions-for-a-repository)." ### Changing the category for a discussion You can categorize discussions to help community members find related discussions. For more information, see "[Managing categories for discussions in your repository](/discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository)" article. You can also move a discussion to a different category. {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.click-discussion-in-list %} 1. In the right sidebar, click {% octicon "pencil" aria-label="The pencil icon" %} **Edit pinned discussion**.  ### Pinning a discussion You can pin up to four important discussions above the list of discussions for the repository. {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.click-discussion-in-list %} 1. In the right sidebar, click {% octicon "pin" aria-label="The pin icon" %} **Pin discussion**.  1. Optionally, customize the look of the pinned discussion.  1. Click **Pin discussion**.  ### Editing a pinned discussion Editing a pinned discussion will not change the discussion's category. For more information, see "[Managing categories for discussions in your repository](/discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository)." {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.click-discussion-in-list %} 1. In the right sidebar, click {% octicon "pencil" aria-label="The pencil icon" %} **Edit pinned discussion**.  1. Customize the look of the pinned discussion.  1. Click **Pin discussion**.  ### Unpinning a discussion {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.click-discussion-in-list %} 1. In the right sidebar, click {% octicon "pin" aria-label="The pin icon" %} **Unpin discussion**.  1. Read the warning, then click **Unpin discussion**.  ### Transferring a discussion To transfer a discussion, you must have permissions to create discussions in the repository where you want to transfer the discussion. {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.click-discussion-in-list %} 1. In the right sidebar, click {% octicon "arrow-right" aria-label="The right arrow icon" %} **Transfer discussion**.  1. Select the **Choose a repository** drop-down, and click the repository you want to transfer the discussion to.  1. Click **Transfer discussion**.  ### Deleting a discussion {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} {% data reusables.discussions.click-discussion-in-list %} 1. In the right sidebar, click {% octicon "trash" aria-label="The trash arrow icon" %} **Delete discussion**.  1. Read the warning, then click **Delete this discussion**.  ### Converting issues based on labels You can convert all issues with the same label to discussions in bulk. Future issues with this label will also automatically convert to the discussion and category you configure. {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-issues %} {% data reusables.project-management.labels %} 1. Next to the label you want to convert to issues, click **Convert issues**. 1. Select the **Choose a category** drop-down menu, and click a category for your discussion. 1. Click **I understand, convert this issue to a discussion**. 40 ...t/discussions/managing-discussions-for-your-community/moderating-discussions.md @@ -0,0 +1,40 @@ --- title: Moderating discussions intro: 'You can promote healthy collaboration by marking comments as answers, locking or unlocking discussions, and converting issues to discussions. and editing or deleting comments, discussions, and categories that don''t align with your community''s code of conduct to discussions.' permissions: People with triage access to a repository can moderate discussions in the repository. versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### About moderating discussions {% data reusables.discussions.about-discussions %} If you have triage permissions for a repository, you can help moderate a project's discussions by marking comments as answers, locking discussions that are not longer useful or are damaging to the community, and converting issues to discussions when an idea is still in the early stages of development. ### Marking a comment as an answer {% data reusables.discussions.marking-a-comment-as-an-answer %} ### Locking discussions It's appropriate to lock a conversation when the entire conversation is not constructive or violates your community's code of conduct or {% data variables.product.prodname_dotcom %}'s [Community Guidelines](/github/site-policy/github-community-guidelines). You can also lock a conversation to prevent comments on a discussion you want to use as an announcement to the community. When you lock a conversation, people with write access to the repository will still be able to comment on the discussion. {% data reusables.repositories.navigate-to-repo %} {% data reusables.discussions.discussions-tab %} 1. In the list of discussions, click the discussion you want to lock.  1. In the right margin of a discussion, click **Lock conversation**. 1. Read the information about locking conversations and click **Lock conversation on this discussion**. 1. When you're ready to unlock the conversation, click **Unlock conversation**, then click **Unlock conversation on this discussion**. ### Converting an issue to a discussion When you convert an issue to a discussion, the discussion is automatically created using the content from the issue. People with write access to a repository can bulk convert issues based on labels. For more information, see "[Managing discussions in your repository](/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository)." {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-issues %} 1. In the list of issues, click the issue you'd like to convert. 1. In the right margin of an issue, click **Convert to discussion**. 1. Select the **Choose a category** drop-down menu, and click a category for your discussion. 1. Click **I understand, convert this issue to a discussion**. 62 content/discussions/quickstart.md @@ -0,0 +1,62 @@ --- title: Quickstart for GitHub Discussions intro: 'Enable {% data variables.product.prodname_discussions %} on an existing repository and start conversations with your community.' allowTitleToDifferFromFilename: true versions: free-pro-team: '*' --- {% data reusables.discussions.beta %} ### Introduction {% data variables.product.prodname_discussions %} is a collaborative communication forum for the community around an open source project. Discussions are for conversations that need to be transparent and accessible but do not need to be tracked on a project board and are not related to code, unlike issues. Discussions enable fluid, open conversation in a public forum. Discussions give a space for more collaborative conversations by connecting and giving a more centralized area to connect and find information. ### Enabling {% data variables.product.prodname_discussions %} on your repository Repository owners and people with write access can enable {% data variables.product.prodname_discussions %} for a community on their public repositories. When you first enable a {% data variables.product.prodname_discussions %}, you will be invited to configure a welcome post. {% data reusables.repositories.navigate-to-repo %} 1. Under your repository name, click {% octicon "gear" aria-label="The gear icon" %} **Settings**.  1. Under "Features", click **Set up discussions**.  1. Under "Start a new discussion," edit the template to align with the resources and tone you want to set for your community. 1. Click **Start discussion**.  ### Welcoming contributions to your discussions You can welcome your community and introduce a new way to communicate in a repository by creating a welcome post and pin the post to your {% data variables.product.prodname_discussions %} page. Pinning and locking discussions helps people know that a post is meant as an announcement. You can use announcements as a way to link people to more resources and offer guidance for opening discussions in your community. For more information about pinning a discussion, see "[Managing discussions in your repository](/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository#pinning-a-discussion)." ### Setting up community guidelines for contributors You can set contributing guidelines to encourage collaborators to have meaningful, useful conversations that are relevant to the repository. You can also update the repository's README to communicate expectations on when collaborators should open an issue or discussion. For more information about providing guidelines for your project, see "[Adding a code of conduct to your project](/github/building-a-strong-community/adding-a-code-of-conduct-to-your-project)" and "[Setting up your project for healthy contributions](/github/building-a-strong-community/setting-up-your-project-for-healthy-contributions)." ### Creating a new discussion Anyone with access to a repository can create a discussion. {% data reusables.discussions.starting-a-discussion %} ### Organizing discussions into relevant categories Repository owners and people with write access can create new categories to keep discussions organized. Collaborators participating and creating new discussions can group discussions into the most relevant existing categories. Discussions can also be recategorized after they are created. For more information, see "[Managing categories for discussions in your repository](/discussions/managing-discussions-for-your-community/managing-categories-for-discussions-in-your-repository)" ### Promoting healthy conversations People with write permissions for a repository can help surface important conversations by pinning discussions, deleting discussions that are no longer useful or are damaging to the community, and transferring discussions to more relevant repositories owned by the organization. For more information, see "[Managing discussions in your repository](/discussions/managing-discussions-for-your-community/managing-discussions-in-your-repository)." People with triage permissions for a repository can help moderate a project's discussions by marking comments as answers, locking discussions that are not longer useful or are damaging to the community, and converting issues to discussions when an idea is still in the early stages of development. For more information, see "[Moderating discussions](/discussions/managing-discussions-for-your-community/moderating-discussions)." ### Next steps Once there is a clear path to scope work out and move an idea from concept to reality, you can create an issue and start tracking your progress. For more information on creating an issue from a discussion, see "[Moderating discussions](/discussions/managing-discussions-for-your-community/moderating-discussions)." 45 content/education/guides.md @@ -0,0 +1,45 @@ --- title: Guides for GitHub Education intro: 'These guides for {% data variables.product.prodname_education %} help you teach and learn both {% data variables.product.product_name %} and software development.' allowTitleToDifferFromFilename: true versions: free-pro-team: '*' --- ### Get started with {% data variables.product.product_name %} Teachers, students, and researchers can use tools from {% data variables.product.product_name %} to enrich a software development curriculum and develop real-world collaboration skills. - [Sign up for a new {% data variables.product.prodname_dotcom %} account](/github/getting-started-with-github/signing-up-for-a-new-github-account) - [Git and {% data variables.product.prodname_dotcom %} quickstart ](/github/getting-started-with-github/quickstart) - [Apply for an educator or researcher discount](/education/teach-and-learn-with-github-education/apply-for-an-educator-or-researcher-discount) - [Apply for a student developer pack](/education/teach-and-learn-with-github-education/apply-for-a-student-developer-pack) ### Run a software development course with {% data variables.product.company_short %} Administer a classroom, assign and review work from your students, and teach the new generation of software developers with {% data variables.product.prodname_classroom %}. - [Basics of setting up {% data variables.product.prodname_classroom %} ](/education/manage-coursework-with-github-classroom/basics-of-setting-up-github-classroom) - [Manage classrooms](/education/manage-coursework-with-github-classroom/manage-classrooms) - [Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment) - [Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment) - [Create an assignment from a template repository](/education/manage-coursework-with-github-classroom/create-an-assignment-from-a-template-repository) - [Leave feedback with pull requests](/education/manage-coursework-with-github-classroom/leave-feedback-with-pull-requests) - [Use autograding](/education/manage-coursework-with-github-classroom/use-autograding) ### Learn to develop software Incorporate {% data variables.product.prodname_dotcom %} into your education, and use the same tools as the professionals. - [Git and {% data variables.product.prodname_dotcom %} learning resources](/github/getting-started-with-github/git-and-github-learning-resources) - [Use {% data variables.product.prodname_dotcom %} for your schoolwork](/education/teach-and-learn-with-github-education/use-github-for-your-schoolwork) - [Try {% data variables.product.prodname_desktop %}](/desktop) - [Try {% data variables.product.prodname_cli %}](/github/getting-started-with-github/github-cli) ### Contribute to the community Participate in the community, get training from {% data variables.product.company_short %}, and learn or teach new skills. - [{% data variables.product.prodname_education_community %}](https://education.github.community) - [About Campus Experts](/education/teach-and-learn-with-github-education/about-campus-experts) - [About Campus Advisors](/education/teach-and-learn-with-github-education/about-campus-advisors) 43 content/education/index.md @@ -0,0 +1,43 @@ --- title: GitHub Education Documentation shortTitle: Education intro: "{% data variables.product.prodname_education %} helps you teach or learn software development with the tools and support of {% data variables.product.company_short %}'s platform and community." introLinks: quickstart: /education/quickstart featuredLinks: guides: - /education/teach-and-learn-with-github-education/apply-for-a-student-developer-pack - /education/teach-and-learn-with-github-education/apply-for-an-educator-or-researcher-discount - /education/teach-and-learn-with-github-education/use-github-at-your-educational-institution guideCards: - /github/getting-started-with-github/signing-up-for-a-new-github-account - /github/getting-started-with-github/git-and-github-learning-resources - /education/manage-coursework-with-github-classroom/basics-of-setting-up-github-classroom popular: - /education/teach-and-learn-with-github-education/use-github-for-your-schoolwork - /education/teach-and-learn-with-github-education/use-github-in-your-classroom-and-research - /desktop - /github/getting-started-with-github/github-cli - /education/manage-coursework-with-github-classroom/teach-with-github-classroom changelog: - title: 'Try something new at Local Hack Day: Learn' date: '2020-10-15' href: https://github.blog/2020-10-15-try-something-new-at-local-hack-day-learn/ - title: 'Remote Education: Creating community through shared experiences' date: '2020-09-24' href: https://github.blog/2020-09-24-remote-education-creating-community-through-shared-experiences/ - title: 'Remote Education: A series of best practices for online campus communities' date: '2020-09-10' href: https://github.blog/2020-09-10-remote-education-a-series-of-best-practices-for-online-campus-communities/ - title: Welcome to the inaugural class of MLH Fellows date: '2020-06-24' href: https://github.blog/2020-06-24-welcome-to-the-inaugural-class-of-mlh-fellows/ layout: product-landing versions: free-pro-team: '*' --- <!-- {% link_with_intro /teach-and-learn-with-github-education %} --> <!-- {% link_with_intro /manage-coursework-with-github-classroom %} --> 31 ...work-with-github-classroom/about-using-makecode-arcade-with-github-classroom.md @@ -0,0 +1,31 @@ --- title: About using MakeCode Arcade with GitHub Classroom shortTitle: About using MakeCode Arcade intro: You can configure MakeCode Arcade as the online IDE for assignments in {% data variables.product.prodname_classroom %}. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/student-experience-makecode --- ### About MakeCode Arcade MakeCode Arcade is an online integrated development environment (IDE) for developing retro arcade games using drag-and-drop block programming and JavaScript. Students can write, edit, run, test, and debug code in a browser with MakeCode Arcade. For more information about online IDEs and {% data variables.product.prodname_classroom %}, see "[Integrate {% data variables.product.prodname_classroom %} with an online IDE](/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-online-ide)." {% data reusables.classroom.readme-contains-button-for-online-ide %} The first time the student clicks the button to visit MakeCode Arcade, the student must sign into MakeCode Arcade with {% data variables.product.product_name %} credentials. After signing in, the student will have access to a development environment containing the code from the assignment repository, fully configured on MakeCode Arcade. For more information about working on MakeCode Arcade, see the [MakeCode Arcade Tour](https://arcade.makecode.com/ide-tour) and [documentation](https://arcade.makecode.com/docs) on the MakeCode Arcade website. MakeCode Arcade does not support multiplayer-editing for group assignments. Instead, students can collaborate with Git and {% data variables.product.product_name %} features like branches and pull requests. ### About submission of assignments with MakeCode Arcade By default, MakeCode Arcade is configured to push to the assignment repository on {% data variables.product.product_location %}. After making progress on an assignment with MakeCode Arcade, students should push changes to {% data variables.product.product_location %} using the {% octicon "mark-github" aria-label="The GitHub mark" %}{% octicon "arrow-up" aria-label="The up arrow icon" %} button at the bottom of the screen.  ### Further reading - "[About READMEs](/github/creating-cloning-and-archiving-repositories/about-readmes)" 33 ...ge-coursework-with-github-classroom/about-using-replit-with-github-classroom.md @@ -0,0 +1,33 @@ --- title: About using Repl.it with GitHub Classroom shortTitle: About using Repl.it intro: You can configure Repl.it as the online integrated development environment (IDE) for assignments in {% data variables.product.prodname_classroom %}. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/student-experience-replit --- ### About Repl.it Repl.it is an online integrated development environment (IDE) that supports multiple programming languages. Students can write, edit, run, test, and debug code in a browser with Repl.it. For more information about online IDEs and {% data variables.product.prodname_classroom %}, see "[Integrate {% data variables.product.prodname_classroom %} with an online IDE](/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-online-ide)." {% data reusables.classroom.readme-contains-button-for-online-ide %} The first time the student clicks the button to visit Repl.it, the student must sign into Repl.it with {% data variables.product.product_name %} credentials. After signing in, the student will have access to a development environment containing the code from the assignment repository, fully configured on Repl.it. For more information about working on Repl.it, see the [Repl.it Quickstart Guide](https://docs.repl.it/misc/quick-start#the-repl-environment). For group assignments, students can use Repl.it Multiplayer to work collaboratively. For more information, see the [Repl.it Multiplayer](https://repl.it/site/multiplayer) website. ### About submission of assignments with Repl.it By default, Repl.it is configured to push to the assignment repository on {% data variables.product.product_location %}. After making progress on an assignment with Repl.it, students should push changes to {% data variables.product.product_location %} using the version control functionality in the left sidebar.  For more information about using Git on Repl.it, see the [Repl.it + Git Tutorial](https://repl.it/talk/learn/Replit-Git-Tutorial/23331) on the Repl.it website. ### Further reading - "[About READMEs](/github/creating-cloning-and-archiving-repositories/about-readmes)" 33 ...anage-coursework-with-github-classroom/basics-of-setting-up-github-classroom.md @@ -0,0 +1,33 @@ --- title: Basics of setting up GitHub Classroom shortTitle: '{% data variables.product.prodname_classroom %} basics' intro: Learn how to set up your classroom, manage assignments, and configure time-saving automation. versions: free-pro-team: '*' --- ### Videos about {% data variables.product.prodname_classroom %} You can watch a series of short video tutorials about the configuration and use of {% data variables.product.prodname_classroom %}. To watch all videos as part of a continuous playlist, see the [{% data variables.product.prodname_classroom %} Getting Started Guide](https://www.youtube.com/playlist?list=PLIRjfNq867bewk3ZGV6Z7a16YDNRCpK3u) on YouTube. For more information about terminology for {% data variables.product.prodname_classroom %}, see "[Glossary](/education/manage-coursework-with-github-classroom/glossary)". 1. <a href="https://youtu.be/xVVeqIDgCvM" target="_blank">Getting started</a> {% octicon "link-external" aria-label="The external link icon" %} 2. <a href="https://youtu.be/DTzrKduaHj8" target="_blank">Adding your student roster</a> {% octicon "link-external" aria-label="The external link icon" %} 3. Creating assignments - <a href="https://youtu.be/6QzKZ63KLss" target="_blank">Creating an assignment using a {% data variables.product.prodname_dotcom %} repository</a> {% octicon "link-external" aria-label="The external link icon" %} - <a href="https://youtu.be/Qmwh6ijsQJU" target="_blank">Creating an assignment using Microsoft MakeCode as your online IDE</a> {% octicon "link-external" aria-label="The external link icon" %} - <a href="https://youtu.be/p_g5sQ7hUis" target="_blank">Creating an assignment using Repl.it as your online IDE</a> {% octicon "link-external" aria-label="The external link icon" %} 4. <a href="https://youtu.be/ObaFRGp_Eko" target="_blank">How students complete assignments</a> {% octicon "link-external" aria-label="The external link icon" %} 5. <a href="https://youtu.be/g45OJn3UyCU" target="_blank">How teachers review assignments</a> {% octicon "link-external" aria-label="The external link icon" %} 6. <a href="https://youtu.be/QxrA3taZdNM" target="_blank">Creating group assignments</a> {% octicon "link-external" aria-label="The external link icon" %} 7. <a href="https://youtu.be/tJK2cmoh1KM" target="_blank">Next steps to get started</a> {% octicon "link-external" aria-label="The external link icon" %} 8. <a href="https://youtu.be/X87v3SFQxLU" target="_blank">{% data variables.product.prodname_dotcom %} Teacher Toolbox</a> {% octicon "link-external" aria-label="The external link icon" %} ### Next steps For more information about teaching with {% data variables.product.prodname_classroom %}, see "[Teach with {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/teach-with-github-classroom)." ### Further reading - "[Teach and learn with {% data variables.product.prodname_education %}](/education/teach-and-learn-with-github-education)" 51 ...with-github-classroom/configure-default-settings-for-assignment-repositories.md @@ -0,0 +1,51 @@ --- title: Configure default settings for assignment repositories shortTitle: Configure defaults for assignment repositories intro: You can use the Probot Settings app to configure the default settings for repositories that {% data variables.product.prodname_classroom %} creates for an assignment. permissions: Organization owners can configure default settings for assignment repositories by installing a {% data variables.product.prodname_github_app %} for the organization. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/probot-settings --- ### About configuration of defaults for assignment repositories {% data variables.product.prodname_classroom %} creates a repository that belongs for each student or team that accepts an assignment. The repository belongs to the organization that you use for {% data variables.product.prodname_classroom %}. Assignment repositories can be empty, or you can use a template repository. For more information, see "[Create an assignment from a template repository](/education/manage-coursework-with-github-classroom/create-an-assignment-from-a-template-repository)." {% data reusables.classroom.you-may-want-to-predefine-repository-settings %} With the Probot Settings app, you can create a file named _.github/settings.yml_ in a repository that contains a list of settings for the repository, and then install a {% data variables.product.prodname_github_app %} for your organization that automatically applies the settings to the repository. You can include _.github/settings.yml_ in a template repository that you use for an assignment in {% data variables.product.prodname_classroom %}. When an individual or team accepts the assignment, {% data variables.product.prodname_classroom %} creates the assignment repository, and the Settings app automatically applies the settings from _.github/settings.yml_. Probot is a a project, framework, and collection of free apps to automate {% data variables.product.product_name %}. A Probot app can listen to repository events, like the creation of new commits, comments, and issues, and automatically respond to the event. For more information, see the [Probot website](https://probot.github.io) and the [Settings app website](https://probot.github.io/apps/settings/). For more information about {% data variables.product.prodname_github_apps %}, see "[About apps](/developers/apps/about-apps)." ### Adding the Settings app to your organization After you install the Probot Settings app for your organization, the app will apply the settings that you define in _.github/settings.yml_ for any repository in your organization, including new assignment repositories that {% data variables.product.prodname_classroom %} creates. 1. Navigate to the [Settings app page](https://github.com/apps/settings). 1. Click **Install**, then click the organization that you use for {% data variables.product.prodname_classroom %}. Provide the app full access to all repositories owned by the organization.  ### Configuring default settings for an assignment repository 1. Create a template repository that contains a _.github/settings.yml_ file. For a complete list of settings, see the [README](https://github.com/probot/settings#github-settings) for the `probot/settings` repository. For more information about using a template repository for starter code in {% data variables.product.prodname_classroom %}, see "[Create an assignment from a template repository](/education/manage-coursework-with-github-classroom/create-an-assignment-from-a-template-repository)." {% warning %} **Warning:** Do not define `collaborators` in the _.github/settings.yml_ file for your template repository. {% data variables.product.prodname_classroom %} automatically grants teachers and teaching assistants access to assignment repositories. {% endwarning %} 1. Create an assignment using the template repository containing _.github/settings.yml_ as the starter code. {% data reusables.classroom.for-more-information-about-assignment-creation %} The Probot Settings app for your organization will now apply the settings you define in _.github/settings.yml_ within the template repository to every assignment repository that {% data reusables.classroom.you-may-want-to-predefine-repository-settings %} creates for a student or team. ### Further reading - [Probot apps](https://probot.github.io/apps/) - [Probot documentation](https://probot.github.io/docs/) 142 ...th-github-classroom/connect-a-learning-management-system-to-github-classroom.md @@ -0,0 +1,142 @@ --- title: Connect a learning management system to GitHub Classroom intro: You can configure an LTI-compliant learning management system (LMS) to connect to {% data variables.product.prodname_classroom %} so that you can import a roster for your classroom. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/configuring-a-learning-management-system-for-github-classroom - /education/manage-coursework-with-github-classroom/connect-to-lms - /education/manage-coursework-with-github-classroom/generate-lms-credentials - /education/manage-coursework-with-github-classroom/setup-canvas - /education/manage-coursework-with-github-classroom/setup-generic-lms - /education/manage-coursework-with-github-classroom/setup-moodle --- ### About configuration of your LMS You can connect a learning management system (LMS) to {% data variables.product.prodname_classroom %}, and {% data variables.product.prodname_classroom %} can import a roster of student identifiers from the LMS. To connect your LMS to {% data variables.product.prodname_classroom %}, you must enter configuration credentials for {% data variables.product.prodname_classroom %} in your LMS. ### Prerequisites To configure an LMS to connect to {% data variables.product.prodname_classroom %}, you must first create a classroom. For more information, see "[Manage classrooms](/education/manage-coursework-with-github-classroom/manage-classrooms#creating-a-classroom)." ### Supported LMSes {% data variables.product.prodname_classroom %} supports import of roster data from LMSes that implement Learning Tools Interoperability (LTI) standards. - LTI version 1.0 and/or 1.1 - LTI Names and Roles Provisioning 1.X Using LTI helps keep your information safe and secure. LTI is an industry-standard protocol and GitHub Classroom's use of LTI is certified by the Instructional Management System (IMS) Global Learning Consortium. For more information, see [Learning Tools Interoperability](https://www.imsglobal.org/activity/learning-tools-interoperability) and [About IMS Global Learning Consortium](http://www.imsglobal.org/aboutims.html) on the IMS Global Learning Consortium website. {% data variables.product.company_short %} has tested import of roster data from the following LMSes into {% data variables.product.prodname_classroom %}. - Canvas - Google Classroom - Moodle - Sakai Currently, {% data variables.product.prodname_classroom %} doesn't support import of roster data from Blackboard or Brightspace ### Generating configuration credentials for your classroom {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-students %} 1. If your classroom already has a roster, you can either update the roster or delete the roster and create a new roster. - For more information about deleting and creating a roster, see "[Deleting a roster for a classroom](/education/manage-coursework-with-github-classroom/manage-classrooms#deleting-a-roster-for-a-classroom)" and "[Creating a roster for your classroom](/education/manage-coursework-with-github-classroom/manage-classrooms#creating-a-roster-for-your-classroom)." - For more information about updating a roster, see "[Adding students to the roster for your classroom](/education/manage-coursework-with-github-classroom/manage-classrooms#adding-students-to-the-roster-for-your-classroom)." 1. In the list of LMSes, click your LMS. If your LMS is not supported, click **Other LMS**.  1. Read about connecting your LMS, then click **Connect to _LMS_**. 1. Copy the "Consumer Key", "Shared Secret", and "Launch URL" for the connection to the classroom.  ### Configuring a generic LMS You must configure the privacy settings for your LMS to allow external tools to receive roster information. 1. Navigate to your LMS. 1. Configure an external tool. 1. Provide the configuration credentials you generated in {% data variables.product.prodname_classroom %}. - Consumer key - Shared secret - Launch URL (sometimes called "tool URL" or similar) ### Configuring Canvas You can configure {% data variables.product.prodname_classroom %} as an external app for Canvas to import roster data into your classroom. For more information about Canvas, see the [Canvas website](https://www.instructure.com/canvas/). 1. Sign into [Canvas](https://www.instructure.com/canvas/#login). 1. Select the Canvas course to integrate with {% data variables.product.prodname_classroom %}. 1. In the left sidebar, click **Settings**. 1. Click the **Apps** tab. 1. Click **View app configurations**. 1. Click **+App**. 1. Select the **Configuration Type** drop-down menu, and click **By URL**. 1. Paste the configuration credentials from {% data variables.product.prodname_classroom %}. For more information, see "[Generating configuration credentials for your classroom](#generating-configuration-credentials-for-your-classroom)." | Field in Canvas app configuration | Value or setting | | :- | :- | | **Consumer Key** | Consumer key from {% data variables.product.prodname_classroom %} | | **Shared Secret** | Shared secret from {% data variables.product.prodname_classroom %} | | **Allow this tool to access the IMS Names and Role Provisioning Service** | Enabled | | **Configuration URL** | Launch URL from {% data variables.product.prodname_classroom %} | {% note %} **Note**: If you don't see a checkbox in Canvas labeled "Allow this tool to access the IMS Names and Role Provisioning Service", then your Canvas administrator must contact Canvas support to enable membership service configuration for your Canvas account. Without enabling this feature, you won't be able to sync the roster from Canvas. For more information, see [How do I contact Canvas Support?](https://community.canvaslms.com/t5/Canvas-Basics-Guide/How-do-I-contact-Canvas-Support/ta-p/389767) on the Canvas website. {% endnote %} 1. Click **Submit**. 1. In the left sidebar, click **Home**. 1. To prompt Canvas to send a confirmation email, in the left sidebar, click **GitHub Classroom**. Follow the instructions in the email to finish linking {% data variables.product.prodname_classroom %}. ### Configuring Moodle You can configure {% data variables.product.prodname_classroom %} as an activity for Moodle to import roster data into your classroom. For more information about Moodle, see the [Moodle website](https://moodle.org). You must be using Moodle version 3.0 or greater. 1. Sign into [Moodle](https://moodle.org/login/index.php). 1. Select the Moodle course to integrate with {% data variables.product.prodname_classroom %}. 1. Click **Turn editing on**. 1. Wherever you'd like {% data variables.product.prodname_classroom %} to be available in Moodle, click **Add an activity or resource**. 1. Choose **External tool** and click **Add**. 1. In the "Activity name" field, type "GitHub Classroom". 1. In the **Preconfigured tool** field, to the right of the drop-down menu, click **+**. 1. Under "External tool configuration", paste the configuration credentials from {% data variables.product.prodname_classroom %}. For more information, see "[Generating configuration credentials for your classroom](#generating-configuration-credentials-for-your-classroom)." | Field in Moodle app configuration | Value or setting | | :- | :- | | **Tool name** | {% data variables.product.prodname_classroom %} - _YOUR CLASSROOM NAME_<br/><br/>**Note**: You can use any name, but we suggest this value for clarity. | | **Tool URL** | Launch URL from {% data variables.product.prodname_classroom %} | | **LTI version** | LTI 1.0/1.1 | | **Default launch container** | New window | | **Consumer key** | Consumer key from {% data variables.product.prodname_classroom %} | | **Shared secret** | Shared secret from {% data variables.product.prodname_classroom %} | 1. Scroll to and click **Services**. 1. To the right of "IMS LTI Names and Role Provisioning", select the drop-down menu and click **Use this service to retrieve members' information as per privacy settings**. 1. Scroll to and click **Privacy**. 1. To the right of **Share launcher's name with tool** and **Share launcher's email with tool**, select the drop-down menus to click **Always**. 1. At the bottom of the page, click **Save changes**. 1. In the **Preconfigure tool** menu, click **GitHub Classroom - _YOUR CLASSROOM NAME_**. 1. Under "Common module settings", to the right of "Availability", select the drop-down menu and click **Hide from students**. 1. At the bottom of the page, click **Save and return to course**. 1. Navigate to anywhere you chose to display {% data variables.product.prodname_classroom %}, and click the {% data variables.product.prodname_classroom %} activity. ### Importing a roster from your LMS For more information about importing the roster from your LMS into {% data variables.product.prodname_classroom %}, see "[Manage classrooms](/education/manage-coursework-with-github-classroom/manage-classrooms#creating-a-roster-for-your-classroom)." ### Disconnecting your LMS {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-settings %} 1. Under "Connect to a learning management system (LMS)", click **Connection Settings**.  1. Under "Delete Connection to your learning management system", click **Disconnect from your learning management system**.  145 .../education/manage-coursework-with-github-classroom/create-a-group-assignment.md @@ -0,0 +1,145 @@ --- title: Create a group assignment intro: 'You can create a collaborative assignment for teams of students who participate in your course.' versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/create-group-assignments --- ### About group assignments {% data reusables.classroom.assignments-group-definition %} Students can work together on a group assignment in a shared repository, like a team of professional developers. When a student accepts a group assignment, the student can create a new team or join an existing team. {% data variables.product.prodname_classroom %} saves the teams for an assignment as a set. You can name the set of teams for a specific assignment when you create the assignment, and you can reuse that set of teams for a later assignment. {% data reusables.classroom.classroom-creates-group-repositories %} {% data reusables.classroom.about-assignments %} You can decide how many teams one assignment can have, and how many members each team can have. Each team that a student creates for an assignment is a team within your organization on {% data variables.product.product_name %}. The visibility of the team is secret. Teams that you create on {% data variables.product.product_name %} will not appear in {% data variables.product.prodname_classroom %}. For more information, see "[About teams](/github/setting-up-and-managing-organizations-and-teams/about-teams)." For a video demonstration of the creation of a group assignment, see "[Basics of setting up {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/basics-of-setting-up-github-classroom)." ### Prerequisites {% data reusables.classroom.assignments-classroom-prerequisite %} ### Creating an assignment {% data reusables.classroom.assignments-guide-create-the-assignment %} ### Setting up the basics for an assignment Name your assignment, decide whether to assign a deadline, define teams, and choose the visibility of assignment repositories. - [Naming an assignment](#naming-an-assignment) - [Assigning a deadline for an assignment](#assigning-a-deadline-for-an-assignment) - [Choosing an assignment type](#choosing-an-assignment-type) - [Defining teams for an assignment](#defining-teams-for-an-assignment) - [Choosing a visibility for assignment repositories](#choosing-a-visibility-for-assignment-repositories) #### Naming an assignment For a group assignment, {% data variables.product.prodname_classroom %} names repositories by the repository prefix and the name of the team. By default, the repository prefix is the assignment title. For example, if you name an assignment "assignment-1" and the team's name on {% data variables.product.product_name %} is "student-team", the name of the assignment repository for members of the team will be `assignment-1-student-team`. {% data reusables.classroom.assignments-type-a-title %} #### Assigning a deadline for an assignment {% data reusables.classroom.assignments-guide-assign-a-deadline %} #### Choosing an assignment type Under "Individual or group assignment", select the drop-down menu, then click **Group assignment**. You can't change the assignment type after you create the assignment. If you'd rather create a individual assignment, see "[Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)." #### Defining teams for an assignment If you've already created a group assignment for the classroom, you can reuse a set of teams for the new assignment. To create a new set with the teams that your students create for the assignment, type the name for the set. Optionally, type the maximum number of team members and total teams. {% tip %} **Tips**: - We recommend including details about the set of teams in the name for the set. For example, if you want to use the set of teams for one assignment, name the set after the assignment. If you want to reuse the set throughout a semester or course, name the set after the semester or course. - If you'd like to assign students to a specific team, give your students a name for the team and provide a list of members. {% endtip %}  #### Choosing a visibility for assignment repositories {% data reusables.classroom.assignments-guide-choose-visibility %} {% data reusables.classroom.assignments-guide-click-continue-after-basics %} ### Adding starter code and configuring a development environment {% data reusables.classroom.assignments-guide-intro-for-environment %} - [Choosing a template repository](#choosing-a-template-repository) - [Choosing an online integrated development environment (IDE)](#choosing-an-online-integrated-development-environment-ide) #### Choosing a template repository By default, a new assignment will create an empty repository for each team that a student creates. {% data reusables.classroom.you-can-choose-a-template-repository %} For more information about template repositories, see "[Creating a template repository](/github/creating-cloning-and-archiving-repositories/creating-a-template-repository)." {% data reusables.classroom.assignments-guide-choose-template-repository %} #### Choosing an online integrated development environment (IDE) {% data reusables.classroom.about-online-ides %} For more information, see "[Integrate {% data variables.product.prodname_classroom %} with an IDE](/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-ide)." {% data reusables.classroom.assignments-guide-choose-an-online-ide %} {% data reusables.classroom.assignments-guide-click-continue-after-starter-code-and-feedback %} ### Providing feedback Optionally, you can automatically grade assignments and create a space for discussing each submission with the team. - [Testing assignments automatically](#testing-assignments-automatically) - [Preventing changes to important files](#preventing-changes-to-important-files) - [Creating a pull request for feedback](#creating-a-pull-request-for-feedback) #### Testing assignments automatically {% data reusables.classroom.assignments-guide-using-autograding %} #### Preventing changes to important files {% data reusables.classroom.assignments-guide-prevent-changes %} #### Creating a pull request for feedback {% data reusables.classroom.you-can-create-a-pull-request-for-feedback %} {% data reusables.classroom.assignments-guide-create-review-pull-request %} {% data reusables.classroom.assignments-guide-click-create-assignment-button %} ### Inviting students to an assignment {% data reusables.classroom.assignments-guide-invite-students-to-assignment %} You can see the teams that are working on or have submitted an assignment in the **Teams** tab for the assignment. {% data reusables.classroom.assignments-to-prevent-submission %} <div class="procedural-image-wrapper"> <img alt="Group assignment" class="procedural-image-wrapper" src="/assets/images/help/classroom/assignment-group-hero.png"> </div> ### Next steps - After you create the assignment and your students form teams, team members can start work on the assignment using Git and {% data variables.product.product_name %}'s features. Students can clone the repository, push commits, manage branches, create and review pull requests, address merge conflicts, and discuss changes with issues. Both you and the team can review the commit history for the repository. For more information, see "[Getting started with {% data variables.product.prodname_dotcom %}](/github/getting-started-with-github)," "[Creating, cloning, and archiving repositories](/github/creating-cloning-and-archiving-repositories)," "[Using Git](/github/using-git)," and "[Collaborating with issues and pull requests](/github/collaborating-with-issues-and-pull-requests)," and the free course on [managing merge conflicts](https://lab.github.com/githubtraining/managing-merge-conflicts) from {% data variables.product.prodname_learning %}. - When a team finishes an assignment, you can review the files in the repository, or you can review the history and visualizations for the repository to better understand how the team collaborated. For more information, see "[Visualizing repository data with graphs](/github/visualizing-repository-data-with-graphs)." - You can provide feedback for an assignment by commenting on individual commits or lines in a pull request. For more information, see "[Commenting on a pull request](/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request)" and "[Opening an issue from code](/github/managing-your-work-on-github/opening-an-issue-from-code)." For more information about creating saved replies to provide feedback for common errors, see "[About saved replies](/github/writing-on-github/about-saved-replies)." ### Further reading - "[Use {% data variables.product.prodname_dotcom %} in your classroom and research](/education/teach-and-learn-with-github-education/use-github-in-your-classroom-and-research)" - "[Connect a learning management system to {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/connect-a-learning-management-system-to-github-classroom)" - [Using Existing Teams in Group Assignments?](https://education.github.community/t/using-existing-teams-in-group-assignments/6999) in the {% data variables.product.prodname_education %} Community 19 ...sework-with-github-classroom/create-an-assignment-from-a-template-repository.md @@ -0,0 +1,19 @@ --- title: Create an assignment from a template repository intro: You can create an assignment from a template repository to provide starter code, documentation, and other resources to your students. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/using-template-repos-for-assignments --- You can use a template repository on {% data variables.product.product_name %} as starter code for an assignment on {% data variables.product.prodname_classroom %}. Your template repository can contain boilerplate code, documentation, and other resources for your students. For more information, see "[Creating a template repository](/github/creating-cloning-and-archiving-repositories/creating-a-template-repository)." To use the template repository for your assignment, the template repository must be owned by your organization, or the visibility of the template repository must be public. {% data reusables.classroom.you-may-want-to-predefine-repository-settings %} For more information, see "[Configure default settings for assignment repositories](/education/manage-coursework-with-github-classroom/configure-default-settings-for-assignment-repositories)." ### Further reading - "[Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)" - "[Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)" 124 ...tion/manage-coursework-with-github-classroom/create-an-individual-assignment.md @@ -0,0 +1,124 @@ --- title: Create an individual assignment intro: You can create an assignment for students in your course to complete individually. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/creating-an-individual-assignment - /education/manage-coursework-with-github-classroom/create-an-individual-assignment --- ### About individual assignments {% data reusables.classroom.assignments-individual-definition %} {% data reusables.classroom.classroom-creates-individual-repositories %} {% data reusables.classroom.about-assignments %} For a video demonstration of the creation of an individual assignment, see "[Basics of setting up {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/basics-of-setting-up-github-classroom)." ### Prerequisites {% data reusables.classroom.assignments-classroom-prerequisite %} ### Creating an assignment {% data reusables.classroom.assignments-guide-create-the-assignment %} ### Setting up the basics for an assignment Name your assignment, decide whether to assign a deadline, and choose the visibility of assignment repositories. - [Naming an assignment](#naming-an-assignment) - [Assigning a deadline for an assignment](#assigning-a-deadline-for-an-assignment) - [Choosing an assignment type](#choosing-an-assignment-type) - [Choosing a visibility for assignment repositories](#choosing-a-visibility-for-assignment-repositories) #### Naming an assignment For an individual assignment, {% data variables.product.prodname_classroom %} names repositories by the repository prefix and the student's {% data variables.product.product_name %} username. By default, the repository prefix is the assignment title. For example, if you name an assignment "assignment-1" and the student's username on {% data variables.product.product_name %} is @octocat, the name of the assignment repository for @octocat will be `assignment-1-octocat`. {% data reusables.classroom.assignments-type-a-title %} #### Assigning a deadline for an assignment {% data reusables.classroom.assignments-guide-assign-a-deadline %} #### Choosing an assignment type Under "Individual or group assignment", select the drop-down menu, and click **Individual assignment**. You can't change the assignment type after you create the assignment. If you'd rather create a group assignment, see "[Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)." #### Choosing a visibility for assignment repositories {% data reusables.classroom.assignments-guide-choose-visibility %} {% data reusables.classroom.assignments-guide-click-continue-after-basics %} ### Adding starter code and configuring a development environment {% data reusables.classroom.assignments-guide-intro-for-environment %} - [Choosing a template repository](#choosing-a-template-repository) - [Choosing an online integrated development environment (IDE)](#choosing-an-online-integrated-development-environment-ide) #### Choosing a template repository By default, a new assignment will create an empty repository for each student on the roster for the classroom. {% data reusables.classroom.you-can-choose-a-template-repository %} For more information about template repositories, see "[Creating a template repository](/github/creating-cloning-and-archiving-repositories/creating-a-template-repository)." {% data reusables.classroom.assignments-guide-choose-template-repository %} {% data reusables.classroom.assignments-guide-click-continue-after-starter-code-and-feedback %} #### Choosing an online integrated development environment (IDE) {% data reusables.classroom.about-online-ides %} For more information, see "[Integrate {% data variables.product.prodname_classroom %} with an IDE](/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-ide)." {% data reusables.classroom.assignments-guide-choose-an-online-ide %} ### Providing feedback for an assignment Optionally, you can automatically grade assignments and create a space for discussing each submission with the student. - [Testing assignments automatically](#testing-assignments-automatically) - [Preventing changes to important files](#preventing-changes-to-important-files) - [Creating a pull request for feedback](#creating-a-pull-request-for-feedback) #### Testing assignments automatically {% data reusables.classroom.assignments-guide-using-autograding %} #### Preventing changes to important files {% data reusables.classroom.assignments-guide-prevent-changes %} #### Creating a pull request for feedback {% data reusables.classroom.you-can-create-a-pull-request-for-feedback %} {% data reusables.classroom.assignments-guide-create-review-pull-request %} {% data reusables.classroom.assignments-guide-click-create-assignment-button %} ### Inviting students to an assignment {% data reusables.classroom.assignments-guide-invite-students-to-assignment %} You can see whether a student has joined the classroom and accepted or submitted an assignment in the **All students** tab for the assignment. {% data reusables.classroom.assignments-to-prevent-submission %} <div class="procedural-image-wrapper"> <img alt="Individual assignment" class="procedural-image-wrapper" src="/assets/images/help/classroom/assignment-individual-hero.png"> </div> ### Next steps - Once you create the assignment, students can start work on the assignment using Git and {% data variables.product.product_name %}'s features. Students can clone the repository, push commits, manage branches, create and review pull requests, address merge conflicts, and discuss changes with issues. Both you and student can review the commit history for the repository. For more information, see "[Getting started with {% data variables.product.prodname_dotcom %}](/github/getting-started-with-github)," "[Creating, cloning, and archiving repositories](/github/creating-cloning-and-archiving-repositories)," "[Using Git](/github/using-git)," and "[Collaborating with issues and pull requests](/github/collaborating-with-issues-and-pull-requests)." - When a student finishes an assignment, you can review the files in the repository, or you can review the history and visualizations for the repository to better understand the student's work. For more information, see "[Visualizing repository data with graphs](/github/visualizing-repository-data-with-graphs)." - You can provide feedback for an assignment by commenting on individual commits or lines in a pull request. For more information, see "[Commenting on a pull request](/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request)" and "[Opening an issue from code](/github/managing-your-work-on-github/opening-an-issue-from-code)." For more information about creating saved replies to provide feedback for common errors, see "[About saved replies](/github/writing-on-github/about-saved-replies)." ### Further reading - "[Use {% data variables.product.prodname_dotcom %} in your classroom and research](/education/teach-and-learn-with-github-education/use-github-in-your-classroom-and-research)" - "[Connect a learning management system to {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/connect-a-learning-management-system-to-github-classroom)" 9 ...on/manage-coursework-with-github-classroom/get-started-with-github-classroom.md @@ -0,0 +1,9 @@ --- title: Get started with GitHub Classroom shortTitle: Get started intro: Learn how to configure and use {% data variables.product.prodname_classroom %} to administer your course. mapTopic: true versions: free-pro-team: '*' --- 52 content/education/manage-coursework-with-github-classroom/glossary.md @@ -0,0 +1,52 @@ --- title: Glossary intro: You can review explanations of terminology for {% data variables.product.prodname_classroom %}. versions: free-pro-team: '*' --- ### assignment An assignment is coursework in {% data variables.product.prodname_classroom %}. A teacher can assign an assignment to an individual student or a group of students. Teachers can import starter code for the assignment, assign students, and create a deadline for each assignment. For more information, see the definitions for "[individual assignment](#individual-assignment)" and "[group assignment](#group-assignment)." --- ### classroom A classroom is the basic unit of {% data variables.product.prodname_classroom %}. Teachers can use a classroom to organize and manage students, teaching assistants, and assignments for a single course. A classroom belongs to an organization on {% data variables.product.prodname_dotcom_the_website %}. To administer a classroom, you must be an organization owner for the organization on {% data variables.product.prodname_dotcom %}. For more information, see "[Manage classrooms](/education/manage-coursework-with-github-classroom/manage-classrooms)." --- ### {% data variables.product.prodname_classroom %} {% data variables.product.prodname_classroom %} is a web application for educators that provides course administration tools integrated with {% data variables.product.prodname_dotcom %}. For more information, see the [{% data variables.product.prodname_classroom %}](https://classroom.github.com/) website. --- ### group assignment {% data reusables.classroom.assignments-group-definition %} For more information, see "[Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)." --- ### identifier An identifier in {% data variables.product.prodname_classroom %} is a unique ID for a student participating in a course. For example, an identifier can be a student name, alphanumeric ID, or email address. --- ### individual assignment {% data reusables.classroom.assignments-individual-definition %} For more information, see "[Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)." --- ### roster A roster allows a teacher to manage students and assignment submissions in a classroom on {% data variables.product.prodname_classroom %}. Teachers can create a roster by entering a list of student identifiers, or by connecting {% data variables.product.prodname_classroom %} to a learning management system (LMS). For more information about identifiers, see the definition of "[identifier](#identifier)." For more information about connecting {% data variables.product.prodname_classroom %} to an LMS, see "[Connect a learning management system to {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/connect-a-learning-management-system-to-github-classroom)." --- ### Further reading - "[{% data variables.product.prodname_dotcom %} glossary](/github/getting-started-with-github/github-glossary)" 32 content/education/manage-coursework-with-github-classroom/index.md @@ -0,0 +1,32 @@ --- title: Manage coursework with GitHub Classroom shortTitle: '{% data variables.product.prodname_classroom %}' intro: With {% data variables.product.prodname_classroom %}, you can use {% data variables.product.product_name %} to administer or participate in a course about software development. versions: free-pro-team: '*' --- ### Table of Contents {% topic_link_in_list /get-started-with-github-classroom %} {% link_in_list /basics-of-setting-up-github-classroom %} {% link_in_list /glossary %} {% topic_link_in_list /teach-with-github-classroom %} {% link_in_list /manage-classrooms %} {% link_in_list /create-an-individual-assignment %} {% link_in_list /create-a-group-assignment %} {% link_in_list /create-an-assignment-from-a-template-repository %} {% link_in_list /leave-feedback-with-pull-requests %} {% link_in_list /use-autograding %} {% link_in_list /configure-default-settings-for-assignment-repositories %} {% link_in_list /connect-a-learning-management-system-to-github-classroom %} {% topic_link_in_list /integrate-github-classroom-with-an-ide %} {% link_in_list /integrate-github-classroom-with-an-online-ide %} {% link_in_list /about-using-makecode-arcade-with-github-classroom %} {% link_in_list /about-using-replit-with-github-classroom %} {% link_in_list /run-student-code-in-an-online-ide %} {% topic_link_in_list /learn-with-github-classroom %} {% link_in_list /view-autograding-results %} 8 ...nage-coursework-with-github-classroom/integrate-github-classroom-with-an-ide.md @@ -0,0 +1,8 @@ --- title: Integrate GitHub Classroom with an IDE shortTitle: Integrate with an IDE intro: You can help your students write, test, and debug code by preconfiguring a development environment for assignment repositories on {% data variables.product.prodname_classroom %}. mapTopic: true versions: free-pro-team: '*' --- 42 ...ursework-with-github-classroom/integrate-github-classroom-with-an-online-ide.md @@ -0,0 +1,42 @@ --- title: Integrate GitHub Classroom with an online IDE shortTitle: Integrate with an online IDE intro: You can preconfigure a supported online integrated development environment (IDE) for assignments you create in {% data variables.product.prodname_classroom %}. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/online-ide-integrations --- ### About integration with an online IDE {% data reusables.classroom.about-online-ides %} After a student accepts an assignment with an online IDE, the README file in the student's assignment repository will contain a button to open the assignment in the IDE. The student can begin working immediately, and no additional configuration is necessary.  ### Supported online IDEs {% data variables.product.prodname_classroom %} supports the following online IDEs. You can learn more about the student experience for each IDE. | IDE | More information | | :- | :- | | Microsoft MakeCode Arcade | "[About using MakeCode Arcade with {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/about-using-makecode-arcade-with-github-classroom)" | | Repl.it | "[About using Repl.it with GitHub Classroom](/education/manage-coursework-with-github-classroom/about-using-replit-with-github-classroom)" | ### Configuring an online IDE for an assignment You can choose the online IDE you'd like to use for an assignment when you create an assignment. To learn how to create a new assignment that uses an online IDE, see "[Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)" or "[Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)." ### Authorizing the OAuth app for an online IDE The first time you configure an assignment with an online IDE, you must authorize the OAuth app for the online IDE for your organization.  For all repositories, grant the app **read** access to metadata, administration, and code, and **write** access to administration and code. For more information, see "[Authorizing OAuth Apps](/github/authenticating-to-github/authorizing-oauth-apps)." ### Further reading - "[About READMEs](/github/creating-cloning-and-archiving-repositories/about-readmes)" 7 ...ducation/manage-coursework-with-github-classroom/learn-with-github-classroom.md @@ -0,0 +1,7 @@ --- title: Learn with GitHub Classroom intro: You can participate in coursework in {% data variables.product.prodname_classroom %} and see results from your teacher. mapTopic: true versions: free-pro-team: '*' --- 33 ...on/manage-coursework-with-github-classroom/leave-feedback-with-pull-requests.md @@ -0,0 +1,33 @@ --- title: Leave feedback with pull requests intro: You can leave feedback for your students in a special pull request within the repository for each assignment. permissions: People with read permissions to a repository can leave feedback in a pull request for the repository. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/leaving-feedback-in-github --- ### About feedback pull requests for assignments {% data reusables.classroom.you-can-create-a-pull-request-for-feedback %} When you enable the pull request for feedback for an assignment, {% data variables.product.prodname_classroom %} will create a special pull request titled **Feedback** in the assignment repository for each student or team. The pull request automatically shows every commit that a student pushed to the assignment repository's default branch. ### Prerequisites To create and access the feedback pull request, you must enable the feedback pull request when you create the assignment. {% data reusables.classroom.for-more-information-about-assignment-creation %} ### Leaving feedback in a pull request for an assignment {% data reusables.classroom.sign-into-github-classroom %} 1. In the list of classrooms, click the classroom with the assignment you want to review.  {% data reusables.classroom.click-assignment-in-list %} 1. To the right of the submission, click **Review**.  1. Review the pull request. For more information, see "[Commenting on a pull request](/github/collaborating-with-issues-and-pull-requests/commenting-on-a-pull-request)." ### Further reading - "[Integrate {% data variables.product.prodname_classroom %} with an IDE](http://localhost:4000/en/free-pro-team@latest/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-ide)" 121 content/education/manage-coursework-with-github-classroom/manage-classrooms.md @@ -0,0 +1,121 @@ --- title: Manage classrooms intro: You can create and manage a classroom for each course that you teach using {% data variables.product.prodname_classroom %}. permissions: Organization owners can manage a classroom for an organization. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/archive-a-classroom --- ### About classrooms {% data reusables.classroom.about-classrooms %}  ### About management of classrooms {% data variables.product.prodname_classroom %} uses organization accounts on {% data variables.product.product_name %} to manage permissions, administration, and security for each classroom that you create. Each organization can have multiple classrooms. After you create a classroom, {% data variables.product.prodname_classroom %} will prompt you to invite teaching assistants (TAs) and admins to the classroom. Each classroom can have one or more admins. Admins can be teachers, TAs, or any other course administrator who you'd like to have control over your classrooms on {% data variables.product.prodname_classroom %}. Invite TAs and admins to your classroom by inviting the user accounts on {% data variables.product.product_name %} to your organization as organization owners and sharing the URL for your classrom. Organization owners can administer any classroom for the organization. For more information, see "[Permission levels for an organization](/github/setting-up-and-managing-organizations-and-teams/permission-levels-for-an-organization)" and "[Inviting users to join your organization](/github/setting-up-and-managing-organizations-and-teams/inviting-users-to-join-your-organization)." When you're done using a classroom, you can archive the classroom and refer to the classroom, roster, and assignments later, or you can delete the classroom if you no longer need the classroom. ### About classroom rosters Each classroom has a roster. A roster is a list of identifiers for the students who participate in your course. When you first share the URL for an assignment with a student, the student must sign into {% data variables.product.product_name %} with a user account to link the user account to an identifier for the classroom. After the student links a user account, you can see the associated user account in the roster. You can also see when the student accepts or submits an assignment.  ### Prerequisites You must have an organization account on {% data variables.product.product_name %} to manage classrooms on {% data variables.product.prodname_classroom %}. For more information, see "[Types of {% data variables.product.company_short %} accounts](/github/getting-started-with-github/types-of-github-accounts#organization-accounts)" and "[Creating a new organization from scratch](/github/setting-up-and-managing-organizations-and-teams/creating-a-new-organization-from-scratch)." You must authorize the OAuth app for {% data variables.product.prodname_classroom %} for your organization to manage classrooms for your organization account. For more information, see "[Authorizing OAuth Apps](/github/authenticating-to-github/authorizing-oauth-apps)." ### Creating a classroom {% data reusables.classroom.sign-into-github-classroom %} 1. Click **New classroom**.  {% data reusables.classroom.guide-create-new-classroom %} After you create a classroom, you can begin creating assignments for students. For more information, see "[Create an individual assignment](/education/manage-coursework-with-github-classroom/create-an-individual-assignment)" or "[Create a group assignment](/education/manage-coursework-with-github-classroom/create-a-group-assignment)." ### Creating a roster for your classroom You can create a roster of the students who participate in your course. If your course already has a roster, you can update the students on the roster or delete the roster. For more information, see "[Adding a student to the roster for your classroom](#adding-students-to-the-roster-for-your-classroom)" or "[Deleting a roster for a classroom](#deleting-a-roster-for-a-classroom)." {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-students %} 1. To connect {% data variables.product.prodname_classroom %} to your LMS and import a roster, click {% octicon "mortar-board" aria-label="The mortar board icon" %} **Import from a learning management system** and follow the instructions. For more information, see "[Connect a learning management system to {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/connect-a-learning-management-system-to-github-classroom)."  1. To create a roster manually, type your student identifiers. Optionally, click **Upload a CSV or text file** to upload a file containing the identifiers.  1. Click **Create roster**.  ### Adding students to the roster for your classroom Your classroom must have an existing roster to add students to the roster. For more information about creating a roster, see "[Creating a roster for your classrom](#creating-a-roster-for-your-classroom)." {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-students %} 1. To the right of "Classroom roster", click **Update students**.  1. Follow the instructions to add students to the roster. - To import students from an LMS, click **Sync from a learning management system**. For more information about importing a roster from an LMS, see "[Connect a learning management system to {% data variables.product.prodname_classroom %}](/education/manage-coursework-with-github-classroom/connect-a-learning-management-system-to-github-classroom)." - To manually add students, under "Manually add students", click **Upload a CSV or text file** or type the identifiers for the students, then click **Add roster entries**.  ### Renaming a classroom {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-settings %} 1. Under "Classroom name", type a new name for the classroom.  1. Click **Rename classroom**.  ### Archiving or unarchiving a classroom You can archive a classroom that you no longer use on {% data variables.product.prodname_classroom %}. When you archive a classroom, you can't create new assignments or edit existing assignments for the classroom. Students can't accept invitations to assignments in archived classrooms. {% data reusables.classroom.sign-into-github-classroom %} 1. To the right of a classroom's name, select the {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} drop-down menu, then click **Archive**.  1. To unarchive a classroom, to the right of a classroom's name, select the {% octicon "kebab-horizontal" aria-label="The horizontal kebab icon" %} drop-down menu, then click **Unarchive**.  ### Deleting a roster for a classroom {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-students %} 1. Under "Delete this roster", click **Delete roster**.  1. Read the warnings, then click **Delete roster**.  ### Deleting a classroom {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-settings %} 1. To the right of "Delete this classroom", click **Delete classroom**.  1. **Read the warnings**. 1. To verify that you're deleting the correct classroom, type the name of the classroom you want to delete.  1. Click **Delete classroom**.  22 ...on/manage-coursework-with-github-classroom/run-student-code-in-an-online-ide.md @@ -0,0 +1,22 @@ --- title: Run student code in an online IDE intro: You can run the code from a student assignment within the online integrated development environment (IDE) that you configured for the assignment. versions: free-pro-team: '*' redirect_from: - /education/manage-coursework-with-github-classroom/running-student-code --- ### About student code and online IDEs If you configure an online integrated development environment (IDE) for an assignment, you can run the code within the online IDE. You don't need to clone the assignment repository to your computer. For more information about online IDEs, see "[Integrate {% data variables.product.prodname_classroom %} with an online IDE](/education/manage-coursework-with-github-classroom/integrate-github-classroom-with-an-online-ide)." ### Running student code in the online IDE {% data reusables.classroom.sign-into-github-classroom %} {% data reusables.classroom.click-classroom-in-list %} {% data reusables.classroom.click-assignment-in-list %} 1. To the right of the submission, click **View IDE**.  8 ...ducation/manage-coursework-with-github-classroom/teach-with-github-classroom.md @@ -0,0 +1,8 @@ --- title: Teach with GitHub Classroom intro: Learn how to set up your classroom and assignments. mapTopic: true versions: free-pro-team: '*' --- 93 content/education/manage-coursework-with-github-classroom/use-autograding.md 30 ...t/education/manage-coursework-with-github-classroom/view-autograding-results.md 90 content/education/quickstart.md 1 ...github-education/about-campus-advisors.md → ...github-education/about-campus-advisors.md 1 ...-github-education/about-campus-experts.md → ...-github-education/about-campus-experts.md 1 ...ducation-for-educators-and-researchers.md → ...ducation-for-educators-and-researchers.md 5 ...on/about-github-education-for-students.md → ...on/about-github-education-for-students.md 9 ...ithub-education/about-github-education.md → ...ithub-education/about-github-education.md 5 .../applying-for-a-student-developer-pack.md → ...ion/apply-for-a-student-developer-pack.md 14 ...for-an-educator-or-researcher-discount.md → ...for-an-educator-or-researcher-discount.md 26 content/education/teach-and-learn-with-github-education/index.md 3 ...github-at-your-educational-institution.md → ...github-at-your-educational-institution.md 3 ...ation/using-github-for-your-schoolwork.md → ...ucation/use-github-for-your-schoolwork.md 3 ...-github-in-your-classroom-and-research.md → ...-github-in-your-classroom-and-research.md 5 ...-for-a-student-developer-pack-approved.md → ...-for-a-student-developer-pack-approved.md 3 ...ucator-or-researcher-discount-approved.md → ...ucator-or-researcher-discount-approved.md 20 ...ering-a-repository/enabling-or-disabling-github-discussions-for-a-repository.md 5 content/github/administering-a-repository/index.md 2 content/github/authenticating-to-github/reviewing-your-security-log.md 1 content/github/collaborating-with-issues-and-pull-requests/index.md 74 ...with-issues-and-pull-requests/reviewing-dependency-changes-in-a-pull-request.md 19 ...g-with-issues-and-pull-requests/reviewing-proposed-changes-in-a-pull-request.md 10 content/github/creating-cloning-and-archiving-repositories/about-repositories.md 15 content/github/customizing-your-github-workflow/about-github-marketplace.md 2 content/github/getting-started-with-github/git-and-github-learning-resources.md 4 content/github/getting-started-with-github/github-glossary.md 6 content/github/getting-started-with-github/signing-up-for-a-new-github-account.md 1 content/github/index.md 2 ...b/managing-security-vulnerabilities/about-alerts-for-vulnerable-dependencies.md 25 ...hub/managing-security-vulnerabilities/about-managing-vulnerable-dependencies.md 1 content/github/managing-security-vulnerabilities/index.md 4 ...nerabilities/viewing-and-updating-vulnerable-dependencies-in-your-repository.md 3 ...criptions-and-notifications-on-github/managing-notifications-from-your-inbox.md 6 content/github/managing-your-work-on-github/about-issues.md 3 content/github/searching-for-information-on-github/about-searching-on-github.md 5 content/github/searching-for-information-on-github/index.md 114 content/github/searching-for-information-on-github/searching-discussions.md 2 ...ithub/searching-for-information-on-github/searching-issues-and-pull-requests.md 2 ...nd-managing-billing-and-payments-on-github/about-billing-for-github-sponsors.md 4 ...-billing-and-payments-on-github/discounted-subscriptions-for-github-accounts.md 19 ...ing-up-and-managing-billing-and-payments-on-github/downgrading-a-sponsorship.md 16 ...tting-up-and-managing-billing-and-payments-on-github/upgrading-a-sponsorship.md 4 content/github/setting-up-and-managing-organizations-and-teams/index.md 27 ...and-teams/managing-discussion-creation-for-repositories-in-your-organization.md 25 ...izations-and-teams/managing-updates-from-accounts-your-organization-sponsors.md 3 ...p-and-managing-organizations-and-teams/permission-levels-for-an-organization.md 14 ...ing-organizations-and-teams/repository-permission-levels-for-an-organization.md 86 ...naging-organizations-and-teams/reviewing-the-audit-log-for-your-organization.md 1 content/github/setting-up-and-managing-your-github-user-account/index.md 24 ...etting-up-and-managing-your-github-user-account/managing-your-theme-settings.md 12 content/github/site-policy/github-additional-product-terms.md 8 ...porting-the-open-source-community-with-github-sponsors/about-github-sponsors.md 17 ...community-with-github-sponsors/attributing-sponsorships-to-your-organization.md 28 ...e-open-source-community-with-github-sponsors/changing-your-sponsorship-tiers.md 22 ...th-github-sponsors/configuring-webhooks-for-events-in-your-sponsored-account.md 17 ...ting-the-open-source-community-with-github-sponsors/contacting-your-sponsors.md 25 ...munity-with-github-sponsors/editing-your-profile-details-for-github-sponsors.md 1 content/github/supporting-the-open-source-community-with-github-sponsors/index.md 12 ...ce-community-with-github-sponsors/managing-your-payouts-from-github-sponsors.md 18 ...he-open-source-community-with-github-sponsors/managing-your-sponsorship-goal.md 39 ...ing-the-open-source-community-with-github-sponsors/managing-your-sponsorship.md 10 ...munity-with-github-sponsors/setting-up-github-sponsors-for-your-organization.md 10 ...munity-with-github-sponsors/setting-up-github-sponsors-for-your-user-account.md 62 ...-source-community-with-github-sponsors/sponsoring-an-open-source-contributor.md 27 ...source-community-with-github-sponsors/viewing-your-sponsors-and-sponsorships.md 23 content/github/teaching-and-learning-with-github-education/index.md This file was deleted. 7 ...nt/github/visualizing-repository-data-with-graphs/about-the-dependency-graph.md 1 content/github/working-with-github-support/index.md 10 content/graphql/README.md 58 ...tting-started-with-github-container-registry/about-github-container-registry.md This file was deleted. 15 content/packages/getting-started-with-github-container-registry/index.md This file was deleted. 95 content/packages/guides/about-github-container-registry.md 2 ...ol-and-visibility-for-container-images.md → ...ol-and-visibility-for-container-images.md 5 ...che-maven-for-use-with-github-packages.md → ...che-maven-for-use-with-github-packages.md 1 ...ng-docker-for-use-with-github-packages.md → ...ng-docker-for-use-with-github-packages.md 1 ...otnet-cli-for-use-with-github-packages.md → ...otnet-cli-for-use-with-github-packages.md 1 ...ng-gradle-for-use-with-github-packages.md → ...ng-gradle-for-use-with-github-packages.md 1 ...uring-npm-for-use-with-github-packages.md → ...uring-npm-for-use-with-github-packages.md 1 ...-rubygems-for-use-with-github-packages.md → ...-rubygems-for-use-with-github-packages.md 2 ...ting-a-repository-to-a-container-image.md → ...ting-a-repository-to-a-container-image.md 10 content/packages/guides/container-guides-for-github-packages.md 2 ...er-registry/deleting-a-container-image.md → ...ages/guides/deleting-a-container-image.md 2 ...ry/enabling-improved-container-support.md → ...es/enabling-improved-container-support.md 33 content/packages/guides/index.md 2 ...b-container-registry-for-docker-images.md → ...b-container-registry-for-docker-images.md 10 content/packages/guides/package-client-guides-for-github-packages.md 2 ...stry/pushing-and-pulling-docker-images.md → ...ides/pushing-and-pulling-docker-images.md 1 ...ng-github-packages-with-github-actions.md → ...ng-github-packages-with-github-actions.md 46 content/packages/index.md 60 ...anaging-packages/about-github-packages.md → ...-github-packages/about-github-packages.md 13 ...concepts-for-github-container-registry.md → ...ages/core-concepts-for-github-packages.md 16 content/packages/learn-github-packages/index.md 1 ...managing-packages/publishing-a-package.md → ...n-github-packages/publishing-a-package.md 3 ...d-managing-packages/deleting-a-package.md → ...ges/manage-packages/deleting-a-package.md 8 ...publishing-and-managing-packages/index.md → content/packages/manage-packages/index.md 1 ...managing-packages/installing-a-package.md → ...s/manage-packages/installing-a-package.md 1 ...and-managing-packages/viewing-packages.md → ...kages/manage-packages/viewing-packages.md 11 content/packages/managing-container-images-with-github-container-registry/index.md This file was deleted. 109 content/packages/quickstart.md 20 content/packages/using-github-packages-with-your-projects-ecosystem/index.md This file was deleted. 10 content/rest/README.md 18 content/rest/overview/resources-in-the-rest-api.md 2 content/rest/overview/troubleshooting.md 10 content/rest/reference/enterprise-admin.md 2 data/products.yml 2 data/reusables/accounts/create-account.md 2 data/reusables/actions/actions-not-verified.md 7 data/reusables/actions/visualization-beta.md 5 data/reusables/audit_log/audit-log-api-info.md 1 data/reusables/audit_log/audit-log-git-events-retention.md 1 data/reusables/classroom/about-assignments.md 1 data/reusables/classroom/about-autograding.md 1 data/reusables/classroom/about-classrooms.md 1 data/reusables/classroom/about-online-ides.md 1 data/reusables/classroom/assignments-classroom-prerequisite.md 2 data/reusables/classroom/assignments-click-pencil.md 1 data/reusables/classroom/assignments-group-definition.md 5 data/reusables/classroom/assignments-guide-assign-a-deadline.md 5 data/reusables/classroom/assignments-guide-choose-an-online-ide.md 5 data/reusables/classroom/assignments-guide-choose-template-repository.md 9 data/reusables/classroom/assignments-guide-choose-visibility.md 7 data/reusables/classroom/assignments-guide-click-continue-after-basics.md 7 ...s/classroom/assignments-guide-click-continue-after-starter-code-and-feedback.md 5 data/reusables/classroom/assignments-guide-click-create-assignment-button.md 5 data/reusables/classroom/assignments-guide-create-review-pull-request.md 5 data/reusables/classroom/assignments-guide-create-the-assignment.md 1 data/reusables/classroom/assignments-guide-intro-for-environment.md 3 data/reusables/classroom/assignments-guide-invite-students-to-assignment.md 7 data/reusables/classroom/assignments-guide-prevent-changes.md 23 data/reusables/classroom/assignments-guide-using-autograding.md 1 data/reusables/classroom/assignments-individual-definition.md 1 data/reusables/classroom/assignments-to-prevent-submission.md 5 data/reusables/classroom/assignments-type-a-title.md 1 data/reusables/classroom/classroom-creates-group-repositories.md 1 data/reusables/classroom/classroom-creates-individual-repositories.md 1 data/reusables/classroom/classroom-enables-invitation-urls.md 2 data/reusables/classroom/click-assignment-in-list.md 2 data/reusables/classroom/click-classroom-in-list.md 2 data/reusables/classroom/click-settings.md 2 data/reusables/classroom/click-students.md 1 data/reusables/classroom/for-more-information-about-assignment-creation.md 6 data/reusables/classroom/guide-create-new-classroom.md 5 data/reusables/classroom/invitation-url-warning.md 1 data/reusables/classroom/readme-contains-button-for-online-ide.md 1 data/reusables/classroom/sign-into-github-classroom.md 1 data/reusables/classroom/use-add-test-drop-down-to-click-grading-method.md 1 data/reusables/classroom/you-can-choose-a-template-repository.md 1 data/reusables/classroom/you-can-create-a-pull-request-for-feedback.md 1 data/reusables/classroom/you-may-want-to-predefine-repository-settings.md 1 data/reusables/discussions/about-categories-and-formats.md 1 data/reusables/discussions/about-discussions.md 5 data/reusables/discussions/beta.md 2 data/reusables/discussions/click-discussion-in-list.md 2 data/reusables/discussions/discussions-tab.md 2 data/reusables/discussions/edit-categories.md 1 data/reusables/discussions/edit-category-details.md 8 ...les/discussions/enabling-or-disabling-github-discussions-for-your-repository.md 1 data/reusables/discussions/github-recognizes-members.md 16 data/reusables/discussions/marking-a-comment-as-an-answer.md 1 data/reusables/discussions/repository-category-limit.md 10 data/reusables/discussions/starting-a-discussion.md 1 data/reusables/discussions/you-can-categorize-discussions.md 1 data/reusables/discussions/you-can-convert-an-issue.md 1 data/reusables/discussions/you-can-use-discussions.md 1 data/reusables/discussions/you-cannot-convert-a-discussion.md 2 data/reusables/education/about-github-education-link.md 2 data/reusables/education/apply-for-team.md 2 data/reusables/education/click-get-teacher-benefits.md 6 data/reusables/education/educator-requirements.md 1 data/reusables/gated-features/discussions.md 1 data/reusables/marketplace/app-transfer-to-org-for-verification.md 5 data/reusables/marketplace/free-plan-note.md 2 data/reusables/marketplace/launch-with-free.md 8 data/reusables/marketplace/marketplace-billing-ui-requirements.md 2 data/reusables/package_registry/billing-for-container-registry.md 2 data/reusables/package_registry/container-registry-beta-billing-note.md 2 data/reusables/package_registry/container-registry-beta.md 2 data/reusables/package_registry/docker_registry_deprecation_status.md 2 data/reusables/package_registry/feature-preview-for-container-registry.md 2 data/reusables/package_registry/required-scopes.md 2 data/reusables/package_registry/viewing-packages.md 3 data/reusables/repositories/dependency-review.md 7 data/reusables/repositories/navigate-to-job-superlinter.md 4 data/reusables/repositories/view-failed-job-results-superlinter.md 4 data/reusables/repositories/view-specific-line-superlinter.md 2 data/reusables/search/date_gt_lt.md 2 data/reusables/sponsors/billing-switcher.md 2 data/reusables/sponsors/change-tier.md 2 data/reusables/sponsors/choose-updates.md 2 data/reusables/sponsors/developer-sponsored-choose-updates.md This file was deleted. 4 data/reusables/sponsors/manage-developer-sponsorship.md This file was deleted. 4 data/reusables/sponsors/manage-org-sponsorship.md This file was deleted. 2 data/reusables/sponsors/manage-sponsorship.md 1 data/reusables/sponsors/manage-updates-for-orgs.md 2 data/reusables/sponsors/maximum-tier.md 4 data/reusables/sponsors/navigate-to-org-sponsors-dashboard.md This file was deleted. 2 ...onsors/navigate-to-sponsored-developer.md → ...sponsors/navigate-to-sponsored-account.md 1 data/reusables/sponsors/navigate-to-sponsored-org.md This file was deleted. 2 ...ors/navigate-to-dev-sponsors-dashboard.md → ...ponsors/navigate-to-sponsors-dashboard.md 2 data/reusables/sponsors/no-fees.md 5 data/reusables/sponsors/org-sponsors-release-phase.md 2 data/reusables/sponsors/pay-prorated-amount.md 2 data/reusables/sponsors/prorated-sponsorship.md 2 data/reusables/sponsors/sponsor-account.md 7 data/reusables/sponsors/sponsorship-dashboard.md 2 data/reusables/sponsors/sponsorship-details.md 1 data/reusables/webhooks/app_always_desc.md 3 data/ui.yml 7 data/variables/action_code_examples.yml 37 data/variables/discussions_community_examples.yml 6 data/variables/product.yml 21 includes/all-articles.html 4 includes/breadcrumbs.html 2 includes/code-example-card.html 14 includes/discussions-community-card.html 2 includes/header-notification.html 90 javascripts/filter-cards.js 92 javascripts/filter-code-examples.js This file was deleted. 4 javascripts/index.js 64 layouts/product-landing.html 68 lib/data-directory.js 28 lib/filename-to-key.js 7 lib/frontmatter.js 2 lib/liquid-tags/data.js 25 lib/page.js 54 lib/pages.js 21 lib/redirects/get-docs-path-from-developer-path.js 41 lib/redirects/precompile.js 231 lib/rest/static/decorated/api.github.com.json 495 lib/rest/static/dereferenced/api.github.com.deref.json 17 lib/rewrite-local-links.js 10 lib/site-data.js 24 lib/warm-server.js 5 middleware/breadcrumbs.js 38 middleware/categories-for-support-team.js 6 middleware/contextualizers/early-access-links.js 103 middleware/csp.js 69 middleware/early-access-breadcrumbs.js 1 middleware/index.js 45 package-lock.json 3 package.json 4 script/check-s3-images.js 4 script/early-access/clone-locally 41 script/early-access/create-branch 7 server.js 2 stylesheets/article.scss 4 tests/browser/browser.js 10 tests/content/category-pages.js 2 tests/content/crowdin-config.js 3 tests/content/featured-links.js 5 tests/content/glossary.js 42 tests/content/remove-liquid-statements.js 39 tests/content/site-data-references.js 4 tests/content/site-data.js 22 tests/fixtures/rest-redirects.json 10 tests/graphql/build-changelog-test.js 9 tests/helpers/conditional-runs.js 20 tests/meta/orphan-tests.js 23 tests/rendering/breadcrumbs.js 4 tests/rendering/rest.js 3 tests/rendering/server.js 47 tests/routing/developer-site-redirects.js 10 tests/routing/redirects.js 15 tests/unit/data-directory/filename-to-key.js 1 tests/unit/data-directory/fixtures/README.md 1 tests/unit/data-directory/fixtures/bar.yaml 1 tests/unit/data-directory/fixtures/foo.json 1 tests/unit/data-directory/fixtures/nested/baz.md 40 tests/unit/data-directory/index.js 19 tests/unit/early-access.js 4 tests/unit/find-page.js 57 tests/unit/liquid-helpers.js 140 tests/unit/page.js 2 tests/unit/pages.js 0 comments on commit 1a56ed1 Leave a comment You’re not receiving notifications from this thread. © 2021 GitHub, Inc. Terms Privacy Security Status Docs Contact GitHub Pricing API Training Blog About
goescat
Flat and soft color icon pack.
dfraser74
# 1. MAGENTO 2 MARKETPLACE SOCIAL LOGIN PLUGIN Purchasing [Magento 2 Marketplace Social Login Plugin](https://landofcoder.com/magento2-marketplace-social-login.html/) Our product would definitely be a good solution for customer’s irritation when being asked to waste their time on filling in username and password boxes. Magento 2 Market Place Login Plugin allows both sellers and customers to login Marketplace Multi Vendor site by their own common social account as Facebook, Google, Twitter, Linkedin, Instagram. All you have to do is picking one of the social networks you have logged in and wait a second for being automatically signed in with amazingly all of your existing information. This is a plugin of [Magento 2 Marketplace Extension](https://landofcoder.com/magento-2-marketplace-extension.html/). To use this module smoothly, you must install Magento 2 Marketplace Module first. ## 2. Documentation - Installation guide: https://blog.landofcoder.com/magento-2-install-extension/ - User guide: http://guide.landofcoder.com/ - Download from our Live site: https://landofcoder.com/magento-2-pre-order-extension.html/ - Get Support: https://landofcoder.ticksy.com/ ## 3. Highlight Features ### Log in to 25+ most popular social networks in a flash With up to 25+ social networks supported, customers can skip tiring data input step and speed up registration process. - Facebook - Twitter - Google - Instagram - Wordpress - LinkedIn - Github - Stack overflow - Paypal - Disqus - Amazon - Pinterest - Vimeo - Dropbox - SoundCloud - [NEW] Skype - [NEW] VKontakte - [NEW] Meetup - [NEW] Foursquare - [NEW] Dribbble - [NEW] YouTube - [NEW] Twitch.tv - [NEW] Steam - [NEW] Reddit - [NEW] Windows Live - Support 15+ social networks ### Switch to Standard Registration Instantly Customers always have choice to log in via standard registration if they don’t want to use social networks accounts. ### Quick Ajax Login Customers can login easily within a second in the popup form with the help of Ajax Login ### Multiple Styles and Premade Templates You can flexibly beautify your social login section with a pack of premade templates and various social buttons styles. ### Highly Customizable Social Login Design your own Social Login section to match brand identity. Within a few click, you can change many elements in social login like text, color, background color, image. - Text - Color - Background Color - Background Image - Icon ### Adjust Social Login Buttons Order Fast & Easily Easily arrange social login buttons order and see changes immediately by dragging and dropping icons. You can also hide or call out whatever buttons you like to. ### Dynamically Display Social Login Buttons Ease your customers’ way in accessing social login option by making it more visible in your website. With add-on, you can practically place them wherever you want, especially in shopping cart section or checkout page. ### Gain Access Over A Multitude Of Customer Profiles Approach a rich source of social profile data without making you customers fill in the boring forms. ### Increase Conversion Rate A quick and simple registration process will help you lower the abandon rate. Also, customers are enable to interact smoothly with your website via their social network accounts. ### Vivid Advanced Report Advanced Report displayed in smart charts makes it easier you to view your customers’ registration networks. ### Instantly Display Profile Image Enhance user experience by syncing with profile image from social networks right after they log in with their social networks accounts ### Secure Login Customers’ internet identity is totally protected when they log in because this add-on is crafted with accomplished code and proper techniques. ### Compatible with Magento 2 Themes and Extensions This add-on works perfectly with all Magento 2 Themes and Extensions and it is frequently updated to fit new released version of Magento 2. ### Automated Welcome Email Better your very first friendly exchange between you and your customers with welcome emails sent automatically after they log in with social networks accounts. You can either use email template or write your own. ### Update Customer Information Easily Once customers have account on your site, they can update their information easily ### Engaging Popup & Popover Login Form Lively show your login form in popup or popover with Magnific Popup and fancy box. ### Attractive Login Buttons You are loaded with catchy login buttons with different shapes and sizes which will be of great visual assets for your website. ## 4. Full features: - Quick Ajax Login - Multiple Styles & Template - Support 15+ social networks: - Popover Login Form, Popup form with fancy box - Supports the standard registration - Easy to customize - Display On Any Position & Pages - Advanced Report - Change the order of social login buttons - Compatible with the most popular one step checkout - Support multiple stores - Support multiple languages - Easy to install and configure - 100% Open source - License Certificate valid for 1 live Magento installation and unlimited test - Rewrite URL - Detail Document - Free Update - Improve Your Conversion Rates - Collect Rich Customer Profile Data: Name, Gender, Email, Address - Display Customer Photo - Send Welcome Email - Update customer information easily - Provide Secure Way to Login and Register Account - Compatible with Custom & Third party Magento 2 themes - Attractive Login Button - Light FAST Never Slow Down Your Speed - Eye-catching themes - Fully Responsive & Mobile Friendly - One Click Social Connect - Auto Integrate on checkout page - Content Protection - Developer Friendly - Fully compatible with other Magento 2 extensions - Increase Customer’s Loyalty ## LandOfCoder extensions on Magento Marketplace, Github - [Magento 2 Multivendor Marketplace](https://landofcoder.com/magento-2-marketplace-extension.html/) - [Magento 2 Blog Extension](https://landofcoder.com/magento-2-blog-extension.html/) - [Magento 2 Testimonial Extension](https://landofcoder.com/testimonial-extension-for-magento2.html/) - [Magento 2 Image Gallery](https://landofcoder.com/magento-2-image-gallery.html/) - [Magento 2 Faq Extension](https://landofcoder.com/faq-extension-for-magento2.html/) - [Magento 2 Help Desk](https://landofcoder.com/magento-2-help-desk-extension.html) - [Magento 2 OUT OF STOCK NOTIFICATION](https://landofcoder.com/magento-2-out-of-stock-notification.html/) - [Magento 2 CUSTOMER QUOTATION FOR MAGENTO 2](https://landofcoder.com/magento-2-quote-extension.html/) - [Magento 2 RMA Extension](https://landofcoder.com/magento-2-rma-extension.html/) - [Magento 2 Stripe Payment](https://landofcoder.com/magento-2-stripe-payment-pro.html/) - [Magento 2 SMS Notification](https://landofcoder.com/magento-2-sms-notification-extension.html/) - [Magento 2 Page Builder](https://landofcoder.com/magento-2-page-builder.html/) - [Magento 2 Form Builder](https://landofcoder.com/magento-2-form-builder.html/) - [Magento 2 Advanced Report](https://landofcoder.com/magento-2-advanced-reports.html/) - [Magento 2 Marketplace PRO](https://landofcoder.com/magento-2-marketplace-pro.html/) - [Magento 2 Order Tracking](https://landofcoder.com/magento-2-order-tracking-extension.html/) - [Magento 2 Order Tracking PRO](https://landofcoder.com/magento-2-order-tracking-pro-extension.html/) - [Magento 2 Multiple Flat Rate](https://landofcoder.com/magento-2-multiple-flat-rate-shipping.html/) - [Magento 2 Shipping Per Product](https://landofcoder.com/magento-2-shipping-per-product.html/) - [Magento 2 Social Login](https://landofcoder.com/magento-2-social-login.html/) - [Magento 2 Store Locator](https://landofcoder.com/magento-2-store-locator.html/) - [Magento 2 Auto Search Extension](https://landofcoder.com/magento-2-search.html/) - [Magento 2 Mega Menu](https://landofcoder.com/magento-2-mega-menu.html/) - [Magento 2 Mega Menu PRO](https://landofcoder.com/magento-2-mega-menu-pro.html) - [Magento 2 Image Gallery PRO](https://landofcoder.com/magento-2-image-gallery-pro.html/) - [Magento 2 Layered Navigation](https://landofcoder.com/magento-2-layered-navigation.html/) - [Magento 2 Auction Extension](https://landofcoder.com/magento-2-auction-extension.html/) - [Magento 2 Store Credit](https://landofcoder.com/magento-2-store-credit.html/) - [Magento 2 Reward Point](https://landofcoder.com/magento-2-reward-points.html/) - [Magento 2 Follow Up Email](https://landofcoder.com/magento-2-follow-up-email.html/) - [Magento 2 Coupon Code Generator](https://landofcoder.com/magento-2-coupon-extension.html/) - [Magento 2 Hide Price](https://landofcoder.com/magento-2-hide-price.html/) - [Magento 2 Price Comparison](https://landofcoder.com/magento-2-price-comparison.html/) - [Magento 2 SMTP Extension](https://landofcoder.com/magento-2-smtp-extension.html) - [Magento 2 Price Comparison](https://landofcoder.com/magento-2-price-comparison.html/) - [Magento 2 Affiliate Extension](https://landofcoder.com/magento-2-affiliate-extension.html/) - [Magento 2 One Step Checkout](https://landofcoder.com/magento-2-one-step-checkout.html/) Sources: https://landofcoder.com/magento2-marketplace-social-login.html/
cdkflash
## 𝐓𝐇𝐀𝐍𝐊𝐒 𝐅𝐎𝐑 𝐀𝐋𝐋❤️ ### 𝐍𝐄𝐖 𝐂𝐀𝐓𝐁𝐎𝐓 .. ## ʙᴏᴛ ɪs ᴡᴏʀᴋɪɴɢ ᴏʀ ɴᴏᴛ ``` 💝𝗖𝗔𝗧𝗕𝗢𝗧 𝗪𝗢𝗥𝗞𝗜𝗡𝗚 ``` <div align="center"> <img border-radius: 15px src="https://i.imgur.com/h0S3Z4D.png" width="200" height="200"/> <p align="center"> <a href="#"><img title="CATBOT" src="https://img.shields.io/badge/Basilser-red?colorA=%23ff0000&colorB=%23017e40&style=for-the-badge"></a> </p> <p align="center"> <a href="https://github.com/itsmebasil0"><img title="Author" src="https://img.shields.io/badge/Author-itsmebasil0/catbots?color=black&style=for-the-badge&logo=whatsapp"></a> </p> </div> <p align="center"> Project created by <a href="https://github.com/itsmebasil0">basilser</a> to make it public <br> | © | Reserved | <br> </p> ---- <p align="center"> <a href="https://github.com/itsmebasil8/catbotv "> <img src="https://img.shields.io/github/repo-size/itsmebasil8/catboz?color=green&label=Repo%20total%20size&style=plastic"> <p align="center"> <a href="https://github.com/itsmebasil0/followers"><img title="Followers" src="https://img.shields.io/github/followers/afnanplk?color=red&style=flat-circle"></a> <a href="https://github.com/itsmebasil0/catbot/stargazers/"><img title="Stars" src="https://img.shields.io/github/stars/afnanplk/lastpink?color=red&style=flat-square"></a> <a href="https://github.com/itsmebasil0/catbot/network/members"><img title="Forks" src="https://img.shields.io/github/forks/afnanplk/lastpink?color=red&style=flat-square"></a> <a href="#"><img title="MAINTENED" src="https://img.shields.io/badge/UNMAINTENED-YES-blue.svg"</a> ``` catbot - catbot Userbot is Open Source software open to development. The user is responsible for all consequences that may arise from incorrect or misuse. Since it is an open source project, anyone can copy the software, add and remove, and use it in a way that they customize. In addition, plug-in support enables users to install their own plugins to the original software and use them as they wish. Using the bot out of purpose will explicitly ban you. Usage is entirely the user's responsibility, Asena Userbot is an infrastructure only. Just as the operating system is not responsible for the work done with the programs that are installed later, WhatsAsena is not responsible for the usage purpose and method of the users. Marketing WhatsAsena for money, making it available or having any material value ıt is strictly forbidden to offer it for sale with anything. All legal investigations that may arise the user is responsible. ``` <h3 align="center">Contact Me:</h3> <p align="center"> <a href="https://instagram.com/mohammed_basil_12?utm_medium=copy_link" target="blank"><img align="center" src="https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/instagram.svg" alt="kyrie.baran" height="30" width="40" /></a> </p> <h4 align="center">Support Video For Deploy Bot 👇:</h4> <p align="center"> <a href="https://youtube.com/channel/UCrnPCbv7jIKqAXQTllDV6Ng" target="blank"><img align="center" src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/Logo_of_YouTube_%282015-2017%29.svg/1200px-Logo_of_YouTube_%282015-2017%29.svg.png" height="45" width="90" /></a> </p> ## Setup <div align="center"> ### Simple Method ## STEP 1 👇 <div align="center"> [](https://replit.com/@itsmebasil/Catbot-3) ## STEP 2 👇 <div align="center"> [](https://heroku.com/deploy?template=https://github.com/itsmebasil0/cat_bot2) </div> <br> <br > If Repl.it not working Try Termux for Qr scanning.Just Copy the Link Below in Termux ``` bash <(curl -L https://t.ly/tHxh) ``` ## Click here to join whatsapp group [](https://chat.whatsapp.com/EceyD88E4OeJwS0w8KUrsC) ## F.A.Q Answer a few frequently asked questions; ### Can you read my messages? This project is open source so all the codes are clear. Neither less nor more; you can look what you want. **We absolutely do not have access to your accounts.** ### What about our security? If you are concerned about security, you can install it on your own computer. If you think someone else has captured your data, simply click on **Whatsapp> Three Dots> Whatsapp Web> Logout** from all sessions button. ### Is it paid? **Of course not.** It will never happen. But you can donate to us. You can reach me via [Telegram](https://t.me/fusuf) . ### ⚠️ Warning! ``` Due to Userbot; Your WhatsApp account may be banned. This is an open source project, you are responsible for everything you do. Absolutely, Asena executives do not accept responsibility. By establishing the Asena, you are deemed to have accepted these responsibilities. ```  ## Developer one and only <div align="center"> [](https://github.com/itsmebasil0) | ----| [Basilser](https://github.com/itsmebasil0) | Base, Bug Fixes, Modules | Modifiying as public ## License This project is protected by `GNU General Public Licence v3.0` license. ### Disclaimer `WhatsApp` name, its variations and the logo are registered trademarks of Facebook. We have nothing to do with the registered trademark You can fork bot but don't change creadit ©
salmankhanafridi122
<h1 align="center">Hi 👋, I'm HACKER-MSK</h1> <h3 align="center">DREAM TO BECOME A TRILLION LIVE IN HELL</h3> <p align="left"> <img src="https://komarev.com/ghpvc/?username=HACKER-MSK&label=Profile%20views&color=0e75b6&style=flat" alt="HACKER-MSK" /> </p> <p align="left"> <a href="https://github.com/ryo-ma/github-profile-trophy"><img src="https://github-profile-trophy.vercel.app/?username=HACKER-MSK" alt="HACKER-MSK" /></a> </p> - 🔭 I’m currenty working on my Facebook cloning projects **Facebook Cloning** - 👨💻 All of my projects are available at [https://github.com/HACKER-MSK](https://github.com/HACKER-MSK) - 📫 How to reach me **https://www.facebook.com/HACKER-MSK - 📄 Know about my experiences [https://www.facebook.com/HACKER-MSK ](https://www.facebook.com/HACKER-MSK) - ⚡ Fun fact **I think I am mad** <h3 align="left">Connect with me:</h3> <p align="left"> <a href="https://fb.com/HACKER-MSK" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/facebook.svg" alt="HACKER-MSK" height="30" width="40" /></a> <a href="https://instagram.com/HACKER-MSK" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/instagram.svg" alt="HACKER-MSK" height="30" width="40" /></a> </p> <h3 align="left">Languages and Tools:</h3> <p align="left"> <a href="https://developer.android.com" target="_blank"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/android/android-original-wordmark.svg" alt="android" width="40" height="40"/> </a> <a href="https://golang.org" target="_blank"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/go/go-original.svg" alt="go" width="40" height="40"/> </a> <a href="https://www.linux.org/" target="_blank"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/linux/linux-original.svg" alt="linux" width="40" height="40"/> </a> <a href="https://www.python.org" target="_blank"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/python/python-original.svg" alt="python" width="40" height="40"/> </a> <a href="https://unity.com/" target="_blank"> <img src="https://www.vectorlogo.zone/logos/unity3d/unity3d-icon.svg" alt="unity" width="40" height="40"/> </a> </p> <p><img align="left" src="https://github-readme-stats.vercel.app/api/top-langs?username=HACKER-MSK&show_icons=true&locale=en&layout=compact" alt="HACKER-MSK" /></p> <p> <img align="center" src="https://github-readme-stats.vercel.app/api?username=HACKER-MSK&show_icons=true&locale=en" alt="HACKER-MSK" /></p> <p><img align="center" src="https://github-readme-streak-stats.herokuapp.com/?user=HACKER-MSK&" alt="HACKER-MSK" /></p>
PriyankeshRaj
<h1 align="center">Hi 👋, I'm Priyankesh Raj</h1> <h3 align="center">A passionate upcoming Software Engineer from India</h3> <p align="left"> <img src="https://komarev.com/ghpvc/?username=priyankeshraj&label=Profile%20views&color=0e75b6&style=flat" alt="priyankeshraj" /> </p> <p align="left"> <a href="https://github.com/ryo-ma/github-profile-trophy"><img src="https://github-profile-trophy.vercel.app/?username=priyankeshraj" alt="priyankeshraj" /></a> </p> <p align="left"> <a href="https://twitter.com/priyankeshraj" target="blank"><img src="https://img.shields.io/twitter/follow/priyankeshraj?logo=twitter&style=for-the-badge" alt="priyankeshraj" /></a> </p> - 🌱 I’m currently learning **Machine Learning** - 💬 Ask me about **Java,SQL,Python,C++,C** - 📫 How to reach me **priyankeshraj@gmail.com** - 📄 Know about my experiences [https://drive.google.com/file/d/1qfFNUwHY-UG_SDTeGd8cGBZwsj6ExIwM/view?usp=sharing](https://drive.google.com/file/d/1qfFNUwHY-UG_SDTeGd8cGBZwsj6ExIwM/view?usp=sharing) - ⚡ Fun fact **I think I am Funny😂** <h3 align="left">Connect with me:</h3> <p align="left"> <a href="https://codepen.io/priyankeshraj" target="blank"><img align="center" src="https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/codepen.svg" alt="priyankeshraj" height="30" width="40" /></a> <a href="https://twitter.com/priyankeshraj" target="blank"><img align="center" src="https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/twitter.svg" alt="priyankeshraj" height="30" width="40" /></a> <a href="https://linkedin.com/in/priyankeshraj" target="blank"><img align="center" src="https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/linkedin.svg" alt="priyankeshraj" height="30" width="40" /></a> <a href="https://stackoverflow.com/users/priyankesh-raj" target="blank"><img align="center" src="https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/stackoverflow.svg" alt="priyankesh-raj" height="30" width="40" /></a> <a href="https://kaggle.com/priyankeshraj" target="blank"><img align="center" src="https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/kaggle.svg" alt="priyankeshraj" height="30" width="40" /></a> <a href="https://fb.com/priyankesh raj" target="blank"><img align="center" src="https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/facebook.svg" alt="priyankesh raj" height="30" width="40" /></a> <a href="https://instagram.com/priyansh82" target="blank"><img align="center" src="https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/instagram.svg" alt="priyansh82" height="30" width="40" /></a> <a href="https://www.codechef.com/users/priyankeshraj" target="blank"><img align="center" src="https://cdn.jsdelivr.net/npm/simple-icons@3.1.0/icons/codechef.svg" alt="priyankeshraj" height="30" width="40" /></a> <a href="https://www.hackerrank.com/priyankeshraj" target="blank"><img align="center" src="https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/hackerrank.svg" alt="priyankeshraj" height="30" width="40" /></a> <a href="https://codeforces.com/profile/devildrago999" target="blank"><img align="center" src="https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/codeforces.svg" alt="devildrago999" height="30" width="40" /></a> <a href="https://www.leetcode.com/priyankeshraj" target="blank"><img align="center" src="https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/leetcode.svg" alt="priyankeshraj" height="30" width="40" /></a> <a href="https://www.hackerearth.com/@priyankeshraj" target="blank"><img align="center" src="https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/hackerearth.svg" alt="@priyankeshraj" height="30" width="40" /></a> <a href="https://auth.geeksforgeeks.org/user/priyankeshraj" target="blank"><img align="center" src="https://cdn.jsdelivr.net/npm/simple-icons@3.0.1/icons/geeksforgeeks.svg" alt="priyankeshraj" height="30" width="40" /></a> </p> <h3 align="left">Languages and Tools:</h3> <p align="left"> <a href="https://getbootstrap.com" target="_blank"> <img src="https://devicons.github.io/devicon/devicon.git/icons/bootstrap/bootstrap-plain.svg" alt="bootstrap" width="40" height="40"/> </a> <a href="https://www.cprogramming.com/" target="_blank"> <img src="https://devicons.github.io/devicon/devicon.git/icons/c/c-original.svg" alt="c" width="40" height="40"/> </a> <a href="https://www.w3schools.com/cpp/" target="_blank"> <img src="https://devicons.github.io/devicon/devicon.git/icons/cplusplus/cplusplus-original.svg" alt="cplusplus" width="40" height="40"/> </a> <a href="https://www.w3schools.com/css/" target="_blank"> <img src="https://devicons.github.io/devicon/devicon.git/icons/css3/css3-original-wordmark.svg" alt="css3" width="40" height="40"/> </a> <a href="https://git-scm.com/" target="_blank"> <img src="https://www.vectorlogo.zone/logos/git-scm/git-scm-icon.svg" alt="git" width="40" height="40"/> </a> <a href="https://heroku.com" target="_blank"> <img src="https://www.vectorlogo.zone/logos/heroku/heroku-icon.svg" alt="heroku" width="40" height="40"/> </a> <a href="https://www.w3.org/html/" target="_blank"> <img src="https://devicons.github.io/devicon/devicon.git/icons/html5/html5-original-wordmark.svg" alt="html5" width="40" height="40"/> </a> <a href="https://www.java.com" target="_blank"> <img src="https://devicons.github.io/devicon/devicon.git/icons/java/java-original-wordmark.svg" alt="java" width="40" height="40"/> </a> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank"> <img src="https://devicons.github.io/devicon/devicon.git/icons/javascript/javascript-original.svg" alt="javascript" width="40" height="40"/> </a> <a href="https://www.linux.org/" target="_blank"> <img src="https://devicons.github.io/devicon/devicon.git/icons/linux/linux-original.svg" alt="linux" width="40" height="40"/> </a> <a href="https://www.mysql.com/" target="_blank"> <img src="https://devicons.github.io/devicon/devicon.git/icons/mysql/mysql-original-wordmark.svg" alt="mysql" width="40" height="40"/> </a> <a href="https://www.oracle.com/" target="_blank"> <img src="https://devicons.github.io/devicon/devicon.git/icons/oracle/oracle-original.svg" alt="oracle" width="40" height="40"/> </a> <a href="https://www.postgresql.org" target="_blank"> <img src="https://devicons.github.io/devicon/devicon.git/icons/postgresql/postgresql-original-wordmark.svg" alt="postgresql" width="40" height="40"/> </a> <a href="https://www.python.org" target="_blank"> <img src="https://devicons.github.io/devicon/devicon.git/icons/python/python-original.svg" alt="python" width="40" height="40"/> </a> </p> <p><img align="left" src="https://github-readme-stats.vercel.app/api/top-langs?username=priyankeshraj&show_icons=true&locale=en&layout=compact" alt="priyankeshraj" /></p> <p> <img align="center" src="https://github-readme-stats.vercel.app/api?username=priyankeshraj&show_icons=true&locale=en" alt="priyankeshraj" /></p> <p><img align="center" src="https://github-readme-streak-stats.herokuapp.com/?user=priyankeshraj&" alt="priyankeshraj" /></p>
omar3432
<![CDATA[ /* =========================================================== # Template : Levon # Version : 3.2 # Platform : Blogger # Category : Magazine # Updated : 22, November 2017 # Created by : Muhammad Saleh # URL : https://www.fb.com/Levon.temp * ============================================================ */ /* ====================== * Variable definitions * ====================== */ <Group description="اعدادات رئيسية" selector="body"> <Variable name="keycolor" description="اللون الرئيسي" type="color" default="#9e2f5e" value="#972702"/> <Variable name="body.background" description="الخلفية" type="background" color='transparent' default="$(color) url(//3.bp.blogspot.com/-x6bnPQuN9YQ/VqALgnWG9-I/AAAAAAAAAuE/NUDLmab0-N4/s0-r/DSDS.jpg) no-repeat fixed top center" value="#972702 url(//themes.googleusercontent.com/image?id=0BwVBOzw_-hbMOWU0MDE5ZTctZmI2MC00ODA0LThiOTktZmEzODRkOTM5ZjQ1) no-repeat fixed top center /* Credit: Raycat (http://www.istockphoto.com/portfolio/Raycat?platform=blogger) */"/><Variable name="wrapper" description="لون الخلفية الداخلي" type="color" default="#ffffff" value="#ffffff"/> <Variable name="lines" description="لون الفواصل الرئيسية" type="color" default="#eeeeee" value="#ececec"/> </Group> <Group description="الشريط العلوي" selector="#HeaderTop"> <Variable name="top.back" description="الخلفية" type="color" default="#120e28" value="#000000"/> <Variable name="top.pages.color" description="لون الصفحات" type="color" default="#aaaaaa" value="#a7a7a7"/> <Variable name="top.pages.hover.back" description="خلفية الصفحات عند المرور" type="color" default="#9e2f5e" value="#92452b"/> <Variable name="top.pages.hover.color" description="لون الصفحات عند المرور" type="color" default="#ffffff" value="#ffffff"/> <Variable name="top.pages.lines" description="لون الفواصل بين الصفحات" type="color" default="#777777" value="#717171"/> <Variable name="top.social.back" description="خلفية ازرار التواصل" type="color" default="#242135" value="#000000"/> <Variable name="top.social.color" description="لون ازرار التواصل" type="color" default="#aaaaaa" value="#a7a7a7"/> <Variable name="top.social.title.back" description="خلفية أسم موقع التواصل" type="color" default="#242135" value="#000000"/> <Variable name="top.social.title.color" description="لون أسم موقع التواصل" type="color" default="#ffffff" value="#ffffff"/> </Group> <Group description="القائمة الرئيسية" selector="#LinkList101"> <Variable name="menu.back" description="الخلفية" type="color" default="#242135" value="#000000"/> <Variable name="menu.link.back" description="خلفية الروابط" type="color" default="#120e28" value="#000000"/> <Variable name="menu.link.color" description="لون الروابط" type="color" default="#aaaaaa" value="#a7a7a7"/> <Variable name="menu.hover.back" description="خلفية الروابط عند المرور" type="color" default="#9e2f5e" value="#92452b"/> <Variable name="menu.hover.color" description="لون الروابط عند المرور" type="color" default="#ffffff" value="#ffffff"/> </Group> <Group description="شريط آخر الأخبار" selector="#Int-one"> <Variable name="ticker.back" description="خلفية العنوان" type="color" default="#120e28" value="#000000"/> <Variable name="ticker.color" description="لون العنوان" type="color" default="#ffffff" value="#ffffff"/> <Variable name="ticker.links.back" description="خلفية الروابط" type="color" default="#dddddd" value="#dbdbdb"/> <Variable name="ticker.links.color" description="لون الروابط" type="color" default="#120e28" value="#000000"/> </Group> <Group description="الواجهة" selector="#Int-two"> <Variable name="intro.back" description="الخلفية" type="color" default="#120e28" value="#000000"/> <Variable name="intro.button.back" description="خلفية الزر" type="color" default="#242135" value="#000000"/> <Variable name="intro.button.color" description="لون الزر" type="color" default="#aaaaaa" value="#a7a7a7"/> <Variable name="intro.details" description="لون التفاصيل" type="color" default="#aaaaaa" value="#a7a7a7"/> <Variable name="intro.button.hover.color" description="لون الزر عند المرور" type="color" default="#ffffff" value="#ffffff"/> <Variable name="intro.button.hover.back" description="خلفية الزر عند المرور" type="color" default="#9e2f5e" value="#92452b"/> <Variable name="intro.label.back" description="خلفية السهم والتسميه" type="color" default="#9e2f5e" value="#92452b"/> <Variable name="intro.label.color" description="لون السهم والتسميه" type="color" default="#ffffff" value="#ffffff"/> <Variable name="intro.line" description="لون الفاصل السفلي" type="color" default="#dddddd" value="#dbdbdb"/> </Group> <Group description="الشريط الجانبي" selector="aside"> <Variable name="side.title.back" description="خلفية العنوان" type="color" default="#120e28" value="#000000"/> <Variable name="side.title.color" description="لون العنوان" type="color" default="#ffffff" value="#ffffff"/> <Variable name="side.lines" description="الفواصل" type="color" default="#eeeeee" value="#ececec"/> <Variable name="weather.back" description="خلفية الطقس" type="color" default="#9e2f5e" value="#92452b"/> <Variable name="weather.color" description="لون نص الطقس" type="color" default="#120e28" value="#000000"/> <Variable name="side.links" description="لون الروابط" type="color" default="#444444" value="#2e2e2e"/> <Variable name="side.text" description="النصوص العاديه" type="color" default="#777777" value="#717171"/> <Variable name="side.links.hover" description="لون الرابط عند المرور" type="color" default="#000000" value="#000000"/> </Group> <Group description="التصنيفات" selector="main .Label"> <Variable name="cate.title.back" description="خلفية العنوان" type="color" default="#120e28" value="#000000"/> <Variable name="cate.title.color" description="لون العنوان" type="color" default="#ffffff" value="#ffffff"/> <Variable name="post.title" description="عنوان الموضوع" type="color" default="#555555" value="#494949"/> <Variable name="post.details" description="لون التفاصيل" type="color" default="#999999" value="#959595"/> <Variable name="post.details.icons" description="أيقونات التفاصيل" type="color" default="#9e2f5e" value="#92452b"/> <Variable name="post.lines" description="الفواصل" type="color" default="#eeeeee" value="#ececec"/> <Variable name="post.image.hover" description="لون تأثير الصور" type="color" default="#ffffff" value="#ffffff"/> </Group> <Group description="أعلى الفوتر" selector="#f-row"> <Variable name="subs.back" description="الخلفية" type="color" default="#242135" value="#000000"/> <Variable name="subs.text" description="لون النص" type="color" default="#aaaaaa" value="#a7a7a7"/> <Variable name="subs.buttons" description="خلفية الأزرار" type="color" default="#120e28" value="#000000"/> <Variable name="subs.email.back" description="خلفية مربع الإشتراك" type="color" default="#120e28" value="#000000"/> <Variable name="subs.email.color" description="لون نص مربع الاشتراك" type="color" default="#aaaaaa" value="#a7a7a7"/> <Variable name="subs.button.back" description="خلفية زر إشتراك" type="color" default="#9e2f5e" value="#92452b"/> <Variable name="subs.button.color" description="لون زر الإشتراك" type="color" default="#ffffff" value="#ffffff"/> <Variable name="subs.button.back.hover" description="خلفية زر الاشتراك عند المرور" type="color" default="#58CA58" value="#52c8a1"/> <Variable name="subs.button.color.hover" description="لون زر الاشتراك عند المرور" type="color" default="#ffffff" value="#ffffff"/> </Group> <Group description="الفوتر" selector="footer"> <Variable name="footer.back" description="الخلفية" type="color" default="#120e28" value="#000000"/> <Variable name="footer.title" description="عنوان العناصر" type="color" default="#ffffff" value="#ffffff"/> <Variable name="footer.lines" description="الفواصل" type="color" default="#242135" value="#000000"/> <Variable name="footer.links" description="لون الروابط" type="color" default="#aaaaaa" value="#a7a7a7"/> <Variable name="footer.links.hover" description="لون الروابط عند المرور" type="color" default="#9e2f5e" value="#92452b"/> <Variable name="footer.text" description="لون النص العادي" type="color" default="#999999" value="#959595"/> </Group> <Group description="شريط الحقوق" selector="#copyrights"> <Variable name="copts.back" description="خلفية الشريط" type="color" default="#120e28" value="#000000"/> <Variable name="copts.line" description="لون الفاصل" type="color" default="#242135" value="#000000"/> <Variable name="copts.text" description="لون النص" type="color" default="#aaaaaa" value="#a7a7a7"/> <Variable name="copts.link" description="لون الروابط" type="color" default="#ffffff" value="#ffffff"/> <Variable name="copts.soc.back" description="خلفية أزرار التواصل" type="color" default="#242135" value="#000000"/> <Variable name="copts.soc.color" description="لون أزرار التواصل" type="color" default="#dddddd" value="#dbdbdb"/> </Group> <Group description="الموضوع" selector=".post-body"> <Variable name="postbody.title.back" description="خلفية العنوان" type="color" default="#242135" value="#000000"/> <Variable name="postbody.title.color" description="لون العنوان" type="color" default="#aaaaaa" value="#a7a7a7"/> <Variable name="postbody.text" description="اللون الافتراضي للنصوص" type="color" default="#120e28" value="#000000"/> <Variable name="postbody.link" description="لون الروابط" type="color" default="#000000" value="#000000"/> <Variable name="postbody.details" description="التفاصيل" type="color" default="#aaaaaa" value="#a7a7a7"/> <Variable name="postbody.details.icon" description="ايقونات التفاصيل" type="color" default="#9e2f5e" value="#92452b"/> <Variable name="postbody.lines" description="الفواصل" type="color" default="#eeeeee" value="#ececec"/> <Variable name="postbody.subtitle" description="العناوين الثانوية" type="color" default="#242135" value="#000000"/> <Variable name="related.links" description="عنوان موضوع متعلق" type="color" default="#242135" value="#000000"/> <Variable name="related.details" description="تفاصيل موضوعات متعلقه" type="color" default="#aaaaaa" value="#a7a7a7"/> <Variable name="comm.back" description="خلفية أزرار التعليقات" type="color" default="#dddddd" value="#dbdbdb"/> </Group> /* ==================== * CSS RESET * ==================== */ *{}body,p{margin:0;font-size:100%;font-family:AltFont}span{font-family:inherit}h1,h2,h3,h4,h5,h6{line-height:1.5em;margin:0;font-size:100%;font-weight:400;font-family:inherit}a{margin:0;padding:0;text-decoration:none;line-height:1.5em}ul,li,ol{margin:0;padding:0;list-style:none;font-family:inherit}input,textarea{outline:none;border:none;background:none;font-family:inherit}img{border:0;max-width:100%}abbr{border:none!important;outline:none!important;text-decoration:none!important}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}.blog-admin{display:none}#uds-searchControl{display:none}.clear{clear:both;display:block;width:100%}object{max-width:100%}.widget-item-control,.date-header{display:none} /* ==================== * Loading Spinner * ==================== */ body.spinner{background:$(wrapper)} #loading-screen{position:fixed;top:0;left:0;width:100%;height:100%;background:$(wrapper);z-index:9999;-webkit-transition:0.5s linear;-o-transition:0.5s linear;transition:0.5s linear;} .overlay-loader{display:block;margin:auto;width:97px;height:97px;position:relative;top:50%;margin-top:-48.5px;left:0;right:0;bottom:0}.loader{position:absolute;top:0;left:0;right:0;bottom:0;margin:auto;width:97px;height:97px;animation-name:rotateAnim;-o-animation-name:rotateAnim;-ms-animation-name:rotateAnim;-webkit-animation-name:rotateAnim;-moz-animation-name:rotateAnim;animation-duration:.4s;-o-animation-duration:.4s;-ms-animation-duration:.4s;-webkit-animation-duration:.4s;-moz-animation-duration:.4s;animation-iteration-count:infinite;-o-animation-iteration-count:infinite;-ms-animation-iteration-count:infinite;-webkit-animation-iteration-count:infinite;-moz-animation-iteration-count:infinite;animation-timing-function:linear;-o-animation-timing-function:linear;-ms-animation-timing-function:linear;-webkit-animation-timing-function:linear;-moz-animation-timing-function:linear}.loader div{width:8px;height:8px;-webkit-border-radius:50%;border-radius:50%;border:1px solid $(keycolor);position:absolute;top:2px;left:0;right:0;bottom:0;margin:auto}.loader div:nth-child(odd){border-top:0;border-left:none}.loader div:nth-child(even){border-bottom:0;border-right:0}.loader div:nth-child(2){border-width:2px;left:0;top:-4px;width:12px;height:12px}.loader div:nth-child(3){border-width:2px;left:-1px;top:3px;width:18px;height:18px}.loader div:nth-child(4){border-width:3px;left:-1px;top:-4px;width:23px;height:23px}.loader div:nth-child(5){border-width:3px;left:-1px;top:4px;width:31px;height:31px}.loader div:nth-child(6){border-width:4px;left:0;top:-4px;width:39px;height:39px}.loader div:nth-child(7){border-width:4px;left:0;top:6px;width:49px;height:49px}@keyframes rotateAnim{from{-webkit-transform:rotate(360deg);transform:rotate(360deg)}to{-webkit-transform:rotate(0deg);transform:rotate(0deg)}}@-webkit-keyframes rotateAnim{from{-webkit-transform:rotate(360deg)}to{-webkit-transform:rotate(0deg)}} /* ==================== * Levon Classes * ==================== */ #TempColor{color:$keycolor} .fadeOut{opacity:0} *:not(.notr){-webkit-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out} .hide{display:none} /* ==================== * Owl Styles * ==================== */ .owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:-webkit-grab;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{-webkit-transition:height .5s ease-in-out;-o-transition:height .5s ease-in-out;transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;-webkit-transition:opacity .4s ease;-o-transition:opacity .4s ease;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{-webkit-transform-style:preserve-3d;transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;-webkit-transition:-webkit-transform .1s ease;transition:-webkit-transform .1s ease;-o-transition:transform .1s ease;transition:transform .1s ease;transition:transform .1s ease, -webkit-transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);-webkit-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;-webkit-background-size:contain;background-size:contain;-webkit-transition:opacity .4s ease;-o-transition:opacity .4s ease;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%} /* ==================== * Main Style * ==================== */ body{background:$(body.background)} body.b-overflow{overflow:hidden;background:none} body.tiled-back{background-size:cover} .no-select *{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none} .no-select .t-code,.no-select .t-code *{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all} body.wide-back .mainWrapper{max-width:100%;width:100%} main.wide-container{border:none;width:100%;padding:0 30px} .mainWrapper{margin:0 auto;background-color:$(wrapper);box-shadow:0 0 10px 3px rgba(0,0,0,0.1)} .middle-container{overflow:hidden} main{vertical-align:top} .rtl main{float:right;padding:0 30px 0 20px;border-left:1px solid $(lines)} .ltr main{float:left;padding:0 20px 0 30px;border-right:1px solid $(lines)} aside{vertical-align:top} .rtl aside{float:right;padding:0 20px 0 10px;border-right:1px solid $(lines);margin-right:-1px} .ltr aside{float:left;padding:0 10px 0 20px;border-left:1px solid $(lines);margin-left:-1px} /* ==================== * Header * ==================== */ #HeaderTop h2,#HeaderBot h2,#HTML100 h2{display:none} .head-color{background-color:$(top.back)} #HeaderTop{width:100%;padding:0 30px;height:50px} .res-butt1{width:30px;height:30px;-webkit-border-radius:3px;border-radius:3px;padding:8px 5px 0;background-color:$(top.pages.lines);cursor:pointer;display:none} .rtl .res-butt1{float:right} .ltr .res-butt1{float:left;} .res-butt1 span{display:block;height:3px;margin-bottom:3px;-webkit-border-radius:100px;border-radius:100px;background-color:$(top.pages.color)} .menu-active{display:block!important} #PageList1{padding:10px 0;max-width:65%;vertical-align:top;position:relative} .rtl #PageList1{float:right} .ltr #PageList1{float:left} .res-butt1.but-active{background-color:$keycolor} .res-butt1.but-active span{background-color:#FFF} #PageList1 li{display:inline-block;vertical-align:top} #PageList1 li a{color:$(top.pages.color);font-family:BlogFont,AltFont;font-size:13px;display:block;margin:2px 5px 0;padding:5px 13px;-webkit-border-radius:100px;border-radius:100px;position:relative} li.selected a{background-color:$(top.pages.hover.back);color:$(top.pages.hover.color)} #PageList1 li.selected a, #PageList1 li a:hover{background-color:$(top.pages.hover.back);color:$(top.pages.hover.color)} #PageList1 li a:after{content:"|";position:absolute;display:inline-block;color:$(top.pages.lines)!important;vertical-align:top} .rtl #PageList1 li a:after{left:-30px;margin-left:20px;} .ltr #PageList1 li a:after{right:-30px;margin-right:20px;} #PageList1 li:last-of-type a:after{display:none} #LinkList100{min-width:190px;max-width:35%;position:relative;z-index:9;vertical-align:top;height:50px;padding:10px 0} .rtl #LinkList100{text-align:left;float:left;} .ltr #LinkList100{text-align:right;float:right;} #LinkList100 ul{float:left;width:-webkit-calc(100% - 60px);width:calc(100% - 60px)} .t-search.fa{background-color:$keycolor;width:50px;height:50px;text-align:center;margin-top:-10px;color:#FFF;font-size:24px;padding-top:10px} .rtl #SRCH{float:left;margin-right:10px} .ltr #SRCH{float:right;margin-left:10px} .search-form{position:absolute;top:8px;width:100%;height:1px;} .rtl .search-form{left:61px} .ltr .search-form{right:61px} .search-form input{background-color:$(top.back);position:relative;z-index:2;font-family:blogfont,AltFont;padding:7px 0;border-bottom:2px solid $(top.social.back);width:0;color:$(top.pages.color);width:0;-webkit-transition:0.3s linear;-o-transition:0.3s linear;transition:0.3s linear;} input.search-open{padding:7px 10px;width:-webkit-calc(100% - 60px);width:calc(100% - 60px)} .hide-social{margin-top:-40px;opacity:0} .search-wide{width:180px;float:left} #LinkList100 li{display:inline-block;vertical-align:top} #LinkList100 li a{margin-bottom:10px;color:$(top.social.color);background-color:$(top.social.back);width:30px;text-align:center;height:30px;padding-top:7px;-webkit-border-radius:2px;border-radius:2px;position:relative} #LinkList100 li a span{background-color:$(top.social.title.back);color:$(top.social.title.color);padding:10px;-webkit-border-radius:2px;border-radius:2px;position:absolute;font-size:11px;top:40px;right:-webkit-calc(50% - 35px);right:calc(50% - 35px);width:70px;opacity:0;visibility:hidden;text-transform:capitalize;font-family:AltFont} #LinkList100 li a span:before{content:"";border-right:5px solid transparent;border-left:5px solid transparent;border-bottom:7px solid $(top.social.title.back);position:absolute;top:-7px;left:-webkit-calc(50% - 4px);left:calc(50% - 4px);display:block;z-index:5} #LinkList100 li a:hover span{opacity:.95;top:50px;visibility:visible} #LinkList100 li a:hover{color:#FFF} #LinkList100 ul:hover li{opacity:.7} #LinkList100 ul li:hover{opacity:1} .fa.fa-facebook:hover, #LinkList102 .fa-facebook {background-color:#3b5998!important} .fa.fa-twitter:hover, #LinkList102 .fa-twitter {background-color:#55acee!important} .fa.fa-rss:hover, #LinkList102 .fa-rss {background-color:#f26522!important} .fa.fa-dribbble:hover, #LinkList102 .fa-dribbble {background-color:#ea4c89!important} .fa.fa-google-plus:hover, #LinkList102 .fa-google-plus {background-color:#dd4b39!important} .fa.fa-google:hover, #LinkList102 .fa-google {background-color:#dd4b39!important} .fa.fa-pinterest:hover, #LinkList102 .fa-pinterest {background-color:#cc2127!important} .fa.fa-linkedin:hover, #LinkList102 .fa-linkedin {background-color:#0976b4!important} .fa.fa-youtube:hover, #LinkList102 .fa-youtube {background-color:#e52d27!important} .fa.fa-wordpress:hover, #LinkList102 .fa-wordpress {background-color:#1081B1!important} .fa.fa-digg:hover, #LinkList102 .fa-digg {background-color:#476BA3!important} .fa.fa-drupal:hover, #LinkList102 .fa-drupal {background-color:#008BCA!important} .fa.fa-github:hover, #LinkList102 .fa-github {background-color:#000000!important} .fa.fa-flickr:hover, #LinkList102 .fa-flickr {background-color:#FF0084!important} .fa.fa-tumblr:hover, #LinkList102 .fa-tumblr {background-color:#304E6C!important} .fa.fa-instagram:hover, #LinkList102 .fa-instagram {background-color:#723ef3!important} .fa.fa-delicious:hover, #LinkList102 .fa-delicious {background-color:#DEDEDF!important} .fa.fa-bitcoin:hover, #LinkList102 .fa-bitcoin {background-color:#f7931a!important} .fa.fa-behance:hover, #LinkList102 .fa-behance {background-color:#009fff!important} .fa.fa-soundcloud:hover, #LinkList102 .fa-soundcloud {background-color:#FF5419!important} .fa.fa-khamsat:hover, #LinkList102 .fa-khamsat {background-color:#f9b01c!important} .fa.fa-traidnt:hover, #LinkList102 .fa-traidnt {background-color:#59c5c4!important} .fa.fa-asnad:hover, #LinkList102 .fa-asnad {background-color:#d4145a!important} .fa.fa-hao123:hover, #LinkList102 .fa-hao123 {background-color:#0ba26d!important} .fa.fa-picalica:hover, #LinkList102 .fa-picalica {background-color:#615d9b!important} .fa.fa-blogger:hover, #LinkList102 .fa-blogger {background-color:#fc9644!important} .fa.fa-telegram:hover, #LinkList102 .fa-telegram {background-color:#32AEE1!important} .fa.fa-mostaql:hover, #LinkList102 .fa-mostaql {background-color:#2caae2!important} .fa.fa-digg:hover, #LinkList102 .fa-digg {background-color:#476BA3!important} .fa.fa-quora:hover, #LinkList102 .fa-quora {background-color:#a82400!important} .fa.fa-spotify:hover, #LinkList102 .fa-spotify {background-color:#1ed760!important} .fa.fa-reddit:hover, #LinkList102 .fa-reddit {background-color:#ff4500!important} .fa.fa-snapchat:hover, #LinkList102 .fa-snapchat {background-color:#f5d602!important} .fa.fa-google-play:hover, #LinkList102 .fa-google-play {background-color:#3d9dab!important} .fa-google-play:before{content:'\f04b'} .fa.fa-khamsat,.fa.fa-traidnt,.fa.fa-asnad,.fa.fa-hao123,.fa.fa-picalica,.fa.fa-blogger,.fa.fa-mostaql{font-family:FontAwesome;font-size:21px;padding-top:5px!important} .fa.fa-hao123{padding-left:3px} .fa.fa-mostaql,.fa.fa-khamsat,.fa.fa-picalica{padding-left:4px} .fa.fa-blogger{padding-left:7px} #LinkList102 .widget-content{font-size:0} #LinkList100 ul li:nth-of-type(1){-webkit-transition:.5s ease} #LinkList100 ul li:nth-of-type(2){-webkit-transition:.55s ease} #LinkList100 ul li:nth-of-type(3){-webkit-transition:.7s ease} #LinkList100 ul li:nth-of-type(4){-webkit-transition:.75s ease} #LinkList100 ul li:nth-of-type(5){-webkit-transition:.8s ease} #LinkList100 ul li:nth-of-type(6){-webkit-transition:.85s ease} #LinkList100 ul li:nth-of-type(7){-webkit-transition:.9s ease} #LinkList100 ul li:nth-of-type(8){-webkit-transition:.95s ease} #LinkList100 ul li:nth-of-type(9){-webkit-transition:1s ease} #LinkList100 ul li:nth-of-type(10){-webkit-transition:1.05s ease} #LinkList100 ul li:nth-of-type(11){-webkit-transition:1.06s ease} /* ==================== * Logo & Adsense * ==================== */ #HeaderMid{padding:20px 30px;display:table;width:100%} #Header1{display:table-cell;vertical-align:middle;max-width:100%} .rtl #Header1{padding-left:20px;text-align:right} .ltr #Header1{padding-right:20px;text-align:left} #HTML100{width:728px;display:table-cell;vertical-align:middle;text-align:center;min-height:90px} .blog-title{font-family:blogfont,AltFont;font-size:29px;font-weight:700;color:$(postbody.text)} .blog-desc{font-family:blogfont,AltFont;font-size:14px;color:$(postbody.title.color)} /* ==================== * Main Menu * ==================== */ #LinkList101{display:none;background-color:$(menu.back);margin:0 30px;position:relative;-webkit-border-radius:3px;border-radius:3px;padding:0 20px} .menu-1 #LinkList101{height:70px} .menu-2 #LinkList101{height:60px} #LinkList101>ul>li:not(.MegaUL){position:relative} #LinkList101>ul>li{display:inline-block;vertical-align:top} .menu-1 #LinkList101>ul>li{margin:0 3px} .menu-1 #LinkList101>ul>li>a{font-size:19px;font-family:BlogFont,AltFont;color:$(menu.link.color);padding:10px 20px;position:relative;display:block;background-color:$(menu.link.back);-webkit-border-radius:5px;border-radius:5px;margin-top:12px} .menu-1 #LinkList101>ul>li>a:hover{color:$(menu.hover.color);background-color:$(menu.hover.back)} .menu-1 #LinkList101>ul>li>a:focus{background-color:#FFF;color:$keycolor} .menu-1 .Home{font-size:31px;position:relative;top:5px;color:$(menu.link.color);border:5px solid $keycolor;width:60px;background-color:$(menu.hover.back);height:60px;text-align:center;-webkit-border-radius:100%;border-radius:100%;display:inline-block;vertical-align:top;-webkit-box-shadow:0 0 30px 30px $(menu.back) inset;box-shadow:0 0 30px 30px $(menu.back) inset} .ltr.menu-1 .Home{line-height:50px} .rtl.menu-1 .Home{float:right;margin-left:20px} .ltr.menu-1 .Home{float:left;margin-right:20px} .menu-1 .Home:hover{-webkit-box-shadow:0 0 0 0 $(menu.back) inset;box-shadow:0 0 0 0 $(menu.back) inset;border:5px solid $(menu.link.color);color:$(menu.hover.color)} .menu-1 #LinkList101 ul>li>a:focus{background-color:#FFF;color:$keycolor} #LinkList101>ul{vertical-align:top;font-size:0} .menu-2 #LinkList101{background-color:$(menu.back);margin:0 30px;height:60px;position:relative;-webkit-border-radius:3px;border-radius:3px;padding:0 20px} .menu-2 .Home{font-size:31px;position:relative;padding:7px 0 0;color:$(menu.back);width:60px;background-color:$(keycolor);height:60px;text-align:center;display:inline-block;vertical-align:top} .menu-2 .Home:hover{color:$(menu.hover.color)} .menu-2 .Home:hover i{;-webkit-transform:scale(1.2);;-ms-transform:scale(1.2);;transform:scale(1.2)} .menu-2 #LinkList101>ul>li>a{font-size:17px;font-weight:700;font-family:BlogFont,AltFont;color:$(menu.link.color);padding:18px 20px;position:relative;display:block} .menu-2 #LinkList101>ul.resp-it>li>a{padding:10px 20px} .menu-2 #LinkList101>ul>li>a:hover{color:$(menu.hover.color)} .m-line{height:3px;position:absolute;height:100%;background-color:$keycolor;bottom:0} .rtl .m-line{right:0} .ltr .m-line{left:0} .rtl.menu-2 .Home{float:right;margin-left:5px} .ltr.menu-2 .Home{float:left;margin-right:5px} .res-butt2{width:45px;height:45px;-webkit-border-radius:3px;border-radius:3px;background-color:$(menu.link.back);position:absolute;z-index:2;padding:10px 8px;cursor:pointer;display:none} .menu-1 .res-butt2{top:13px} .menu-2 .res-butt2{top:9px} .rtl .res-butt2{right:95px} .ltr .res-butt2{left:95px} .res-butt2 span{display:block;background-color:$(menu.link.color);width:100%;margin:0 auto;height:5px;margin-bottom:5px;-webkit-border-radius:100px;border-radius:100px} .res-butt2.but-active{background-color:$keycolor} .res-butt2.but-active span{background-color:#fff} .menu-1 .ma.subed ul{-webkit-box-shadow:0 0 10px rgba(0,0,0,0.1);box-shadow:0 0 10px rgba(0,0,0,0.1);position:absolute;top:115px;right:-webkit-calc(50% - 90px);right:calc(50% - 90px);opacity:0;padding:20px;-webkit-border-radius:5px;border-radius:5px;width:180px;background-color:$(menu.link.back);text-align:center;z-index:-1} .menu-1 .ma.subed:hover ul{opacity:1;z-index:16;top:90px} .menu-2 ul:not(.resp-it) .ma.subed ul{position:absolute;top:60px;width:180px;text-align:center;z-index:-1;max-height:0;-webkit-transform:scaleY(0);-ms-transform:scaleY(0);transform:scaleY(0)} .menu-2 ul:not(.resp-it) .ma.subed:hover ul{z-index:16;-webkit-transform:scaleY(1);-ms-transform:scaleY(1);transform:scaleY(1)} .menu-2 .ma.subed ul li a{border-bottom:1px solid $(menu.link.back);font-size:14px;color:$(menu.link.color);background-color:$(menu.back);display:block;padding:10px 0;font-family:blogFont,AltFont;font-weight:700} .menu-2 .ma.subed ul li a:hover{color:$(menu.hover.color);border-bottom:1px solid $(keycolor)} .ma.subed ul li{display:block} .menu-1 .ma.subed ul li a{margin:0;-webkit-border-radius:0;border-radius:0;border-bottom:1px dashed $(menu.back);background-color:transparent!important;font-size:16px;color:$(menu.link.color);display:block;font-family:blogfont,AltFont;padding:10px 0} .menu-1 .ma.subed ul li a:hover{border-bottom:1px dashed $keycolor;color:$(menu.hover.back)!important} .menu-1 .ma.subed ul:before{content:"";position:absolute;top:-15px;left:75px;border-right:15px solid transparent;border-left:15px solid transparent;border-bottom:15px solid $(menu.link.back)} .resp-it .ma.subed ul{position:relative;top:0!important;right:0;opacity:1;-webkit-border-radius:0;border-radius:0;width:100%;background-color:$(menu.link.back);overflow:hidden;padding:0} .resp-it .ma.subed ul:before{display:none} .menu-1 #LinkList101 .menu-active .ma.subed ul li a{font-size:16px;border-bottom:1px dashed $(menu.back)} .menu-1 .ma.subed>a,.menu-1 .ma.MegaUL>a{border-bottom:1px solid $keycolor} .menu-1 #LinkList101>ul:not(.menu-active) .ma.subed:hover{padding-bottom:50px} /* ====== Mega Menu ======= */ #LinkList101 .MegaUL{position:initial} .mega{-webkit-box-shadow:0 7px 15px -2px rgba(0,0,0,0.5);box-shadow:0 7px 15px -2px rgba(0,0,0,0.5);position:absolute;width:100%;padding:10px 0;z-index:-1} .menu-2 .mega{left:0;top:60px;max-height:0;background-color:$(menu.back);max-height:0;z-index:-1;overflow:hidden} .menu-2 .show-mega{z-index:10;max-height:260px;height:260px;overflow:hidden} .menu-1 .mega{min-height:220px;top:90px;left:0;border-radius:1px;background-color:$(menu.back);z-index:10;display:none} .rtl .mega a{float:right;border-left:1px solid rgba(255,255,255,.1)} .ltr .mega a{float:left;border-right:1px solid rgba(255,255,255,.1)} .mega a{font-size:10px;width:calc(100% / 4);padding:0 20px;margin:15px 0} body .container .mega a:last-of-type{border:0} .mega-thumb{display:block;height:140px;margin:0 auto;background-size:cover!important;border-radius:3px;border:5px solid $(menu.link.back)} .mega a:hover h3{color:$(keycolor)} .mega-thumb:hover{-webkit-transform:scale(1.05) translateY(-5px);-ms-transform:scale(1.05) translateY(-5px);transform:scale(1.05) translateY(-5px);-webkit-box-shadow:0 4px 8px -1px rgba(0,0,0,.3);box-shadow:0 4px 8px -1px rgba(0,0,0,.3)} .mega h3{color:$(menu.link.color);font-family:LevonFont,Tahoma;font-size:14px;font-weight:700;border-radius:1px;clear:both;overflow:hidden;background-color:$(menu.link.back);padding:5px 10px;height:50px} .mega i.fa-spinner{font-size:30px;color:$(menu.link.color);position:absolute;top:50%;margin-top:-15px;left:50%;margin-left:-15px} abbr.mega-date{float:right;margin:5px 0;background-color:$(menu.link.back);color:$(menu.link.color);position:relative;border-radius:2px;font-family:AltFont;overflow:hidden} .rtl .mega-date{float:right;padding:3px 30px 3px 10px} .ltr .mega-date{float:left;padding:3px 10px 3px 30px} .rtl .mega-date:before{right:0} .ltr .mega-date:before{left:0} .mega-date:before{content:"\f017";display:inline-block;background-color:$(keycolor);top:0;right:0;position:absolute;width:20px;height:20px;text-align:center;font-family:fontawesome;color:$(menu.link.back);font-size:14px;padding-top:3px} .mega a:hover .mega-date{color:#FFF;background-color:$(keycolor);} .rtl .mega a:hover .mega-date{padding: 3px 25px 3px 10px;margin-right:10px} .ltr .mega a:hover .mega-date{padding: 3px 10px 3px 25px;margin-left:10px} .mega a:hover .mega-date:before{color:#FFF} /* ==================== * Sidebar * ==================== */ aside .widget{margin-bottom:20px} aside .widget h2{font-family:BlogFont ,AltFont;margin-bottom:10px;background-color:$(side.title.back);color:$(side.title.color);font-size:19px} .rtl aside .widget h2{border-right:5px solid $keycolor;padding:10px 20px 10px 0;} .ltr aside .widget h2{border-left:5px solid $keycolor;padding:10px 0px 10px 20px;} aside .widget-content{overflow:hidden} /* ================== * Intro Slider * ================== */ .intro{overflow:hidden;display:none} .intro[data-slides='3'] .Intro-Label:hover .Intro-Thumb{-webkit-transform:translate(0,-70px);-ms-transform:translate(0,-70px);transform:translate(0,-70px)} .intro[data-slides='3'] .Intro-Details{position:absolute;bottom:-20px;padding:20px;width:100%;background-color:$(intro.back);height:73px} .rtl .intro[data-slides='3'] .Intro-Details{right:0;text-align:right;} .ltr .intro[data-slides='3'] .Intro-Details{left:0;text-align:left;} .intro[data-slides='3'] .Intro-Label:hover .Intro-Details{bottom:0} .intro[data-slides='3'] .Intro-Title{height:calc(100% - 70px);top:120px;margin-bottom:10px} .intro[data-slides='3'] .Intro-Label:hover .Intro-Title{top:0;opacity:1} .intro[data-slides='3'] .Intro-Label .ReadMore{background-color:$(intro.button.back);color:$(intro.button.color);position:absolute;bottom:-20px;font-size:12px;font-family:BlogFont ,AltFont;padding:10px 15px;-webkit-border-radius:3px;border-radius:3px;overflow:hidden} .rtl .intro[data-slides='3'] .Intro-Label .ReadMore{left:20px;} .ltr .intro[data-slides='3'] .Intro-Label .ReadMore{right:20px;} .intro[data-slides='3'] .Intro-Label:hover .ReadMore{bottom:15px} .intro[data-slides='3'] .Intro-Label .ReadMore:hover{background-color:$(intro.button.hover.back);color:$(intro.button.hover.color)} .intro[data-slides='1'] .Intro-Title{bottom:20px;-webkit-border-radius:3px;border-radius:3px;opacity:1;width:auto} .rtl .intro[data-slides='1'] .Intro-Title{right:30px;} .ltr .intro[data-slides='1'] .Intro-Title{left:30px;} .intro[data-slides='1'] .Intro-Label{height:300px;margin-bottom:0} .intro[data-slides='1'] .Intro-Thumb{height:auto;min-height:100%;position:relative;top:0} .intro[data-slides='1'] .Intro-Details,.intro[data-slides='1'] .ReadMore{display:none} .intro[data-slides='1'] .owl-item{padding:0} .intro[data-slides='1'] .Intro-Cate{left:20px} .intro[data-slides='1'] .Intro-Label:after{right:20px} .intro[data-slides='4'] .Intro-Title{max-height:100%;bottom:-100%} .intro[data-slides='4'] .Intro-Label:hover .Intro-Title{bottom:0;opacity:1} .intro[data-slides='4'] .Intro-Details,.intro[data-slides='4'] .ReadMore{display:none} .intro .owl-wrapper,.intro .owl-wrapper-outer{height:100%} #int-two{margin:20px 30px 0} .Intro-Label{width:100%;overflow:hidden;float:right;height:100%;position:relative;-webkit-border-radius:3px;border-radius:3px} .rtl .Intro-Label{direction:rtl;} .Intro-Cate{position:absolute;top:10px;left:10px;font-family:BlogFont ,AltFont;font-size:14px;z-index:3;color:$(intro.label.color);opacity:.95;background-color:$(intro.label.back);padding:5px 10px;-webkit-border-radius:3px;border-radius:3px} .Intro-Thumb{width:100%;height:100%;position:relative;z-index:2} .Intro-Label:after{content:"\f074";position:absolute;color:rgba(255,255,255,0.3);z-index:2;font-family:FontAwesome;font-size:29px;text-align:center;right:10px;top:10px} .Intro-Label:hover .Intro-Cate,.Intro-Label:hover:after{opacity:0} .Intro-Title{color:#fff;font-family:BlogFont ,AltFont;display:block;overflow:hidden;width:100%;position:absolute;text-align:center;background-color:rgba(0,0,0,0.8);padding:20px;z-index:2;opacity:0;font-size:19px} .Intro-Date,.Intro-Author{display:block;font-family:AltFont;font-size:12px;color:$(intro.details);line-height:1em} .rtl .Intro-Date, .rtl .Intro-Author{margin-left:20px;} .ltr .Intro-Date, .ltr .Intro-Author{margin-right:20px;} .Intro-Date:before,.Intro-Author:before{display:inline-block;font-family:fontawesome;font-size:14px;color:$(intro.details);} .rtl .Intro-Date:before, .rtl .Intro-Author:before{margin-left:5px} .ltr .Intro-Date:before, .ltr .Intro-Author:before{margin-right:5px} .Intro-Date{margin-bottom:10px} .Intro-Date:before{content:"\f073"} .Intro-Author:before{content:"\f007"} .Intro-Date:hover,a.Intro-Author:hover{text-decoration:underline} #HTML102 .owl-nav{position:absolute;top:-webkit-calc(50% - 30px);top:calc(50% - 30px);left:0;width:100%} #HTML102 .owl-prev,#HTML102 .owl-next{color:$(intro.label.color);font-family:fontawesome;font-size:25px;background-color:$(intro.label.back);padding:8px 15px;top:0;position:absolute;-webkit-border-radius:3px;border-radius:3px;opacity:.3} #HTML102 .owl-next{right:-50px} #HTML102 .owl-prev{left:-50px} #HTML102 .owl-carousel:hover .owl-prev{left:20px;opacity:.9} #HTML102 .owl-carousel:hover .owl-next{right:20px;opacity:.9} .I-toggle i{border:1px solid $(intro.line);width:70px;text-align:center;-webkit-border-radius:100px;border-radius:100px;background-color:$(wrapper);display:block;margin:-10px auto 0;color:$(intro.line);cursor:pointer} .I-toggle{display:none;border-top:1px dashed $(intro.line);margin:20px 30px 10px} .I-toggle i:hover{background-color:$(intro.line);color:$(wrapper);border:1px solid $(wrapper)} #HTML102{min-height:160px;margin-bottom:20px;position:relative;direction:ltr!important} .r-loading{position:absolute;top:-webkit-calc(50% - 31px);top:calc(50% - 31px);left:0;width:100%;text-align:center} .r-loading i{color:#444;font-size:30px} .r-loading span{font-family:BlogFont ,AltFont;color:#999;margin-top:10px;direction:rtl;display:block} #HTML101{margin:20px 30px;overflow:hidden;direction:ltr!important} #HTML101 h2.title{background-color:$(ticker.back);color:$(ticker.color);font-family:BlogFont ,AltFont;text-align:center;padding:12px 30px;position:relative;height:52px;-webkit-border-radius:3px;border-radius:3px;font-size:19px} .rtl #HTML101 h2.title{float:right} .ltr #HTML101 h2.title{float:left} #HTML101 h2.title:after{content:"";border-top:26px solid transparent;border-bottom:26px solid transparent;position:absolute;top:0;-webkit-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out;z-index:2} .rtl #HTML101 h2.title:after{border-right:35px solid $(ticker.back);left:-10px;} .ltr #HTML101 h2.title:after{border-left:35px solid $(ticker.back);right:-10px;} .rtl #HTML101:hover h2.title:after{left:-15px} .ltr #HTML101:hover h2.title:after{right:-15px} .NTick{position:relative;padding:0 30px;font-family:BlogFont ,AltFont;font-size:16px;background-color:$(ticker.links.back);height:52px;overflow:hidden;text-align:right;} .rtl .NTick{border-left:10px solid $(ticker.back)} .ltr .NTick{border-right:10px solid $(ticker.back)} /* ================== * Intro Newsticker * ================== */ .scroll{opacity:0} .Scroll-Title{color:$(ticker.links.color);vertical-align:top;padding:15px 15px 15px 0;display:inline-block} .Scroll-Title:hover{color:$(ticker.back);text-decoration:underline} .Scroll-Title:before{content:"\f0a1";color:$(ticker.links.color);width:30px;text-align:center;display:inline-block;font-family:FontAwesome;margin-top:-8px;font-size:20px;-webkit-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out} .rtl .Scroll-Title:before{margin-left:10px;} .ltr .Scroll-Title:before{margin-right:10px;} .rtl .js-marquee-wrapper{direction:rtl} #HTML101,#HTML102{display:none} /* ================== * Default Posts * ================== */ .post-outer{position:relative;padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid $(post.lines)} .post-outer:last-of-type{padding-bottom:0;border-bottom:0} .RecentThumb{width:300px;height:200px;overflow:hidden;position:relative} .rtl .RecentThumb{float:right;margin-left:30px} .ltr .RecentThumb{float:left;margin-right:30px} .RecentThumb span{width:100%;-webkit-border-radius:3px;border-radius:3px;height:100%;-webkit-background-size:cover;background-size:cover;display:block;background-position:center center} .RecentThumb:hover span{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1);opacity:.9} .post-title a{color:$(post.title)} .post-title a:hover{color:$keycolor} .boxs:before,.boxs:after{content:"";position:absolute;top:5%;left:5%;z-index:1;-webkit-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out} .boxs:before{border-right:1px solid $(post.image.hover);border-left:1px solid $(post.image.hover);width:90%;height:0} .boxs:after{border-top:1px solid $(post.image.hover);border-bottom:1px solid $(post.image.hover);width:0;height:90%} .RecentThumb:hover .boxs:before,.RecentThumb:hover .boxs:after{width:90%;height:90%} .Thumb:hover .boxs:before,.Thumb:hover .boxs:after{width:90%;height:90%} .RecentSnippet{font-size:14px;color:$(post.details);line-height:1.5em;font-family:BlogFont,AltFont;line-height:1.5em} .index-time,.index-author{vertical-align:top;font-family:AltFont;font-size:12px;display:inline-block;color:$(post.details);vertical-align:2px} .noImage{display:none} .rtl .index-author{margin-left:20px} .ltr .index-author{margin-right:20px} .opac{opacity:.3} .g-profile{display:inline-block} .index-time:before,.index-author:before{font-family:fontawesome;font-size:14px;color:$(post.details.icons);display:inline-block;vertical-align:middle} .rtl .index-time:before,.rtl .index-author:before{margin-left:5px} .ltr .index-time:before,.ltr .index-author:before{margin-right:5px} .index-author:before{content:"\f007"} .index-time:before{content:"\f017"} .blog-posts .details{border-top:1px solid $(post.lines);border-bottom:1px solid $(post.lines);padding:5px 0;width:-webkit-calc(100% - 330px);width:calc(100% - 330px);margin-bottom:10px} .post-title{width:-webkit-calc(100% - 330px);width:calc(100% - 330px);display:block;margin-bottom:5px;font-family:BlogFont,AltFont;font-weight:700;font-size:17px} .rtl .post-title{float:right} .ltr .post-title{float:left} .blog-posts .ReadMore{font-family:BlogFont,AltFont;background-color:$keycolor;-webkit-box-shadow:0 0 10px 30px rgba(0,0,0,0) inset;box-shadow:0 0 10px 30px rgba(0,0,0,0) inset;color:#FFF;padding:8px 15px;margin-top:10px;position:relative;-webkit-border-radius:2px;border-radius:2px;overflow:hidden;font-size:14px;height:36px;line-height:normal} .rtl .blog-posts .ReadMore{margin-left:10px;float:right} .ltr .blog-posts .ReadMore{margin-right:10px;float:left} .rtl .blog-posts .ReadMore:hover{-webkit-box-shadow:0 0 10px 30px rgba(255,255,255,0.1) inset;box-shadow:0 0 10px 30px rgba(255,255,255,0.1) inset;padding:8px 15px 8px 50px} .ltr .blog-posts .ReadMore:hover{-webkit-box-shadow:0 0 10px 30px rgba(255,255,255,0.1) inset;box-shadow:0 0 10px 30px rgba(255,255,255,0.1) inset;padding:8px 50px 8px 15px} .blog-posts .ReadMore:before{position:absolute;top:10px;opacity:0;font-family:fontawesome;-webkit-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out} .rtl .blog-posts .ReadMore:before{content:"\f060";left:20px} .ltr .blog-posts .ReadMore:before{content:"\f061";right:20px} .blog-posts .ReadMore:hover:before{opacity:1} .blog-posts .ReadMore:after{content:"";width:60px;height:60px;background:-webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,0.1)));background:-webkit-linear-gradient(transparent,rgba(0,0,0,0.1));background:-webkit-gradient(linear,left top,left bottom,from(transparent),to(rgba(0,0,0,0.1)));background:-webkit-linear-gradient(transparent,rgba(0,0,0,0.1));background:-webkit-gradient(linear,left top, left bottom,from(transparent),to(rgba(0,0,0,0.1)));background:-o-linear-gradient(transparent,rgba(0,0,0,0.1));background:linear-gradient(transparent,rgba(0,0,0,0.1));position:absolute;top:-5px} .rtl .blog-posts .ReadMore:after{right:100%;-webkit-transform:rotate(-10deg);-ms-transform:rotate(-10deg);transform:rotate(-10deg)} .ltr .blog-posts .ReadMore:after{left:100%;-webkit-transform:rotate(10deg);-ms-transform:rotate(10deg);transform:rotate(10deg)} .rtl .blog-posts .ReadMore:hover:after{right:68%} .ltr .blog-posts .ReadMore:hover:after{left:68%} .ShareIndex{background-color:$keycolor;-webkit-box-shadow:0 0 10px 30px rgba(0,0,0,0) inset;box-shadow:0 0 10px 30px rgba(0,0,0,0) inset;color:#FFF;padding:10px;margin-top:10px;position:relative;-webkit-border-radius:2px;border-radius:2px;overflow:hidden;font-size:20px;cursor:pointer;width:36px;height:36px} .rtl .ShareIndex{float:right} .ltr .ShareIndex{float:left} .ShareIndex:hover{-webkit-box-shadow:0 0 10px 30px rgba(255,255,255,0.1) inset;box-shadow:0 0 10px 30px rgba(255,255,255,0.1) inset} .ShareIndexBut{height:36px;background-color:$(post.lines);margin-top:10px;padding:7px 10px;-webkit-border-radius:2px;border-radius:2px;position:relative;display:none} .rtl .ShareIndexBut{float:right;margin-right:20px} .ltr .ShareIndexBut{float:left;margin-left:20px} .ShareIndexBut a{line-height:1em;font-family:fontawesome;color:#000;width:20px;height:20px;text-align:center;padding-top:2px;-webkit-border-radius:2px;border-radius:2px;color:#FFF} .rtl .ShareIndexBut a{float:right;margin-right:5px} .ltr .ShareIndexBut a{float:left;margin-left:5px} .rtl .ShareIndexBut a:first-of-type{margin-right:0} .ltr .ShareIndexBut a:first-of-type{margin-left:0} .ShareIndexBut:before{content:"";border-top:8px solid transparent;border-bottom:8px solid transparent;position:absolute;top:10px} .rtl .ShareIndexBut:before{border-left:10px solid $(post.lines);right:-10px} .ltr .ShareIndexBut:before{border-right:10px solid $(post.lines);left:-10px} .fb{background-color:#3b5998} .tw{background-color:#55acee} .pin{background-color:#cc2127} .go{background-color:#DC493C} .index-body{overflow:hidden} .rtl .index-body .details{float:right} .ltr .index-body .details{float:left} .rtl .rct .post-outer{border:0;float:right;margin-left:20px} .ltr .rct .post-outer{border:0;float:left;margin-right:20px} .rct-cards .RecentSnippet{overflow:hidden;height:65px} .rct-cards .RecentThumb{float:none;width:100%;display:block;height:260px} .rct-cards .post-title{width:100%;display:block;float:none;margin:5px 0;background-color:$(post.lines);color:$(post.title);height:60px;overflow:hidden} .rtl .rct-cards .post-title{padding:6px 20px 10px 10px;border-right:5px solid $keycolor} .ltr .rct-cards .post-title{padding:6px 10px 10px 20px;border-left:5px solid $keycolor} .rct-cards .post-title a{max-height:48px;overflow:hidden;display:block} .rct-cards .details{float:none;width:100%;margin-top:10px} .rct-cards .ShareIndex{display:none} .rct-cards .RecentThumb:after{position:absolute;content:'';width:100%;height:100%;top:0;right:0;background-color:#fff;opacity:0;-webkit-transition:.3s ease;-o-transition:.3s ease;transition:.3s ease} .rct-cards:hover .RecentThumb:after{opacity:.7} .rct-cards .RecentThumb:hover span{-webkit-transform:scale(2);-ms-transform:scale(2);transform:scale(2);-webkit-filter:blur(1px)} .rct-cards .ReadMore{margin-left:0;float:left} .rct-cards .ShareIndexBut{display:block;position:absolute;top:120px;margin:0;opacity:0;background-color:transparent;padding:0;-webkit-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out;z-index:-1;right:-webkit-calc(50% - 67.5px);right:calc(50% - 67.5px)} .rct-cards .ShareIndexBut a{width:30px;height:30px;padding-top:7px} .rct-cards .ShareIndexBut:before{display:none} .rct-cards:hover .ShareIndexBut{opacity:1;z-index:3} /* ================== * Status Messages * ================== */ .status-msg-wrap{clear:both;display:block;font-family:blogfont,AltFont;border:1px solid $(post.lines);padding:15px 20px;margin-bottom:20px;-webkit-border-radius:3px;border-radius:3px;color:$(post.details)} .status-msg-wrap b{color:$keycolor} .status-msg-wrap a{color:$(post.title)} .status-msg-wrap a:hover{color:$keycolor;text-decoration:inderline} .wide{width:100%!important;margin-left:0!important;margin-right:0!important} body .navi-wide #blog-pager{width:100%!important;margin-left:0;margin-right:0} .navi-wide.pagin-top{margin-top:-10px;margin-bottom:30px} .related-posts.links.wide-related-links{margin:0!important;border:none!important;padding-left:0!important;padding-right:0!important} /* ================== * Pagination * ================== */ #Pagination span:hover,#Pagination span.curr{border-bottom-color:$(wrapper)} #Pagination{height:70px;width:100%;text-align:center;padding:20px;background-color:$keycolor;-webkit-border-radius:3px;border-radius:3px;margin-bottom:20px;font-family:blogfont,AltFont;color:$(wrapper)} #Pagination a{line-height:normal;color:$(wrapper);font-family:fontawesome;font-size:24px;display:inline-block;vertical-align:top;cursor:pointer;opacity:.8;} #Pagination a:hover{opacity:1} .nums{width:60%;margin:0 auto;display:inline-block;vertical-align:top;height:36px;overflow:hidden} #Pagination .nums .hid-num{display:none} .nums span{display:inline-block;vertical-align:top;font-weight:700;width:30px;border-bottom:3px solid rgba(255,255,255,0.1);font-size:14px;margin:0 5px;padding-bottom:4px;cursor:pointer;margin-bottom:20px;color:$(wrapper)} /* ================== * Homepage Sections * ================== */ main .widget-content{overflow:hidden;margin-bottom:20px} main .Label{clear:both;overflow:hidden;display:none} main .Label h2,.title-h{background-color:$(cate.title.back);color:$(cate.title.color);padding:10px 20px;font-family:BlogFont ,AltFont;margin-bottom:20px;-webkit-border-radius:3px;border-radius:3px;font-size:22px;position:relative;overflow:hidden;line-height:1} .LabLink{text-align:center;position:absolute;top:0;font-size:16px;width:130px;z-index:2;height:100%;font-size:19px;color:#FFF;} .rtl .LabLink{left:0;padding:8px 17px 0 7px;} .ltr .LabLink{right:0;padding:8px 7px 0 17px;} .LabLink:before{content:"";background-color:$keycolor;position:absolute;top:0;width:120%;height:100%;z-index:-1;-webkit-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out} .rtl .LabLink:before{left:-20px;border-right:10px solid $(wrapper);-webkit-transform:skew(-30deg);-ms-transform:skew(30deg);transform:skew(30deg);} .ltr .LabLink:before{right:-20px;border-left:10px solid $(wrapper);-webkit-transform:skew(-30deg);-ms-transform:skew(30deg);transform:skew(30deg);} .LabLink:hover:before{background-color:$(cate.title.back)} .rtl .LabLink:after{padding-right:5px;} .ltr .LabLink:after{padding-left:5px;} .LabLink:hover:after{color:$keycolor} main .Label h2:before,.title-h:before{content:"\f198";font-family:fontawesome;display:inline-block;vertical-align:top;color:$keycolor;-webkit-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out} .rtl main .Label h2:before,.rtl .title-h:before{margin-left:10px;} .ltr main .Label h2:before,.ltr .title-h:before{margin-right:10px;} .Post{overflow:hidden;position:relative} .Title{font-weight:700;font-size:17px;font-family:BlogFont,AltFont;color:$(post.title);line-height:1.4em;margin-bottom:10px;max-height:47px;overflow:hidden;float:right;width:-webkit-calc(100% - 110px);width:calc(100% - 110px)} .Title:hover{color:$keycolor} .Thumb{width:90px;height:90px;overflow:hidden;-webkit-border-radius:3px;border-radius:3px;position:relative;line-height:normal} .rtl .Thumb{float:right;margin-left:20px;} .ltr .Thumb{float:left;margin-right:20px;} .Thumb span{width:100%;height:100%;-webkit-background-size:cover!important;background-size:cover!important;background-position:center center!important;display:block} .Thumb:hover span{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1);opacity:.9} .Post .details{float:right;width:-webkit-calc(100% - 110px);width:calc(100% - 110px)} .Date,.Author{font-family:AltFont;font-size:12px;color:$(post.details);display:inline-block;vertical-align:top} .rtl .Author{margin-left:10px} .ltr .Author{margin-right:10px} .Date{margin-bottom:2.5px} .Date:before,.Author:before{display:inline-block;vertical-align:top;font-family:fontawesome;font-size:14px;color:$(post.details.icons);} .rtl .Date:before,.rtl .Author:before{margin-left:5px} .ltr .Date:before,.ltr .Author:before{margin-right:5px} .Date:before{content:"\f073"} a.Date:hover,a.Author:hover{text-decoration:underline} .Author:before{content:"\f007"} .Snippet{font-family:BlogFont ,AltFont;color:$(post.details);font-size:14px;text-align:justify;line-height:1.5em} /* ======= List ======= */ .list .Post{height:110px;width:-webkit-calc(50% - 10px);width:calc(50% - 10px);margin-top:20px;padding-top:20px;border-top:1px solid $(post.lines)} .rtl .list .Post{margin-left:10px;float:right} .ltr .list .Post{margin-right:10px;float:left} .list .Post:nth-of-type(-n+2){height:90px;padding-top:0;border-top:none;margin-top:0} .rtl .list .Post:nth-of-type(2n){margin-right:10px;margin-left:0} .ltr .list .Post:nth-of-type(2n){margin-right:10px;margin-right:0} /* ======= Cover ======= */ .cover .Post:first-of-type{width:100%;margin-bottom:20px;padding-bottom:20px;border-bottom:1px solid $(post.lines)} .cover .Post:first-of-type .Title{width:-webkit-calc(100% - 320px);width:calc(100% - 320px)} .cover .Post:first-of-type .Thumb{width:300px;height:180px} .cover .Post:first-of-type .details{margin-bottom:10px;padding-bottom:10px;border-bottom:1px solid $(post.lines);width:-webkit-calc(100% - 320px);width:calc(100% - 320px)} .cov:nth-of-type(-n+3){margin-top:0} .cov{height:90px;width:50%;margin-top:20px} .rtl .cov{float:right;padding-right:20px} .ltr .cov{float:left;padding-left:20px} .rtl .cov:nth-of-type(2n){padding-left:19px;padding-right:0;border-left:1px solid $(post.lines)} .ltr .cov:nth-of-type(2n){padding-right:19px;padding-left:0;border-right:1px solid $(post.lines)} .cov .Snippet{display:none} /* ======= Vertical Cover ======= */ .vcover .Post:nth-of-type(n+2) .Snippet{display:none} .vcover .Post:first-of-type{width:50%;height:480px;} .rtl .vcover .Post:first-of-type{float:right;padding-left:19px;border-left:1px solid $(post.lines)} .ltr .vcover .Post:first-of-type{float:left;padding-right:19px;border-right:1px solid $(post.lines)} .vcover .Post:nth-of-type(n+6){display:none} .vcover .Post:first-of-type .Title{width:100%} .vcover .Post:first-of-type .details{width:100%} .vcover .Post:first-of-type .Thumb{width:100%;height:200px;margin-bottom:20px} .vcover .Post:nth-of-type(n+2){height:110px;width:-webkit-calc(50% - 20px);width:calc(50% - 20px);margin-bottom:20px;padding-bottom:20px;border-bottom:1px solid $(post.lines);} .rtl .vcover .Post:nth-of-type(n+2){float:right;margin-right:20px} .ltr .vcover .Post:nth-of-type(n+2){float:left;margin-left:20px} .vcover .Post:last-of-type{height:90px;margin-bottom:0;padding-bottom:0;border-bottom:none} /* ======= Sided ======= */ .Sided-Section{font-size:0} .Sided-Section .section{display:inline-block;width:-webkit-calc(50% - 10px);width:calc(50% - 10px);vertical-align:top} .rtl .Sided-Section .section:nth-of-type(odd){margin-left:20px} .ltr .Sided-Section .section:nth-of-type(odd){margin-right:20px} .sided .Post{height:110px;margin-bottom:20px;padding-bottom:20px;border-bottom:1px solid $(post.lines)} .sided .Post:last-of-type{height:90px;margin-bottom:0;padding-bottom:0;border-bottom:none} .sided .Post:first-of-type .Thumb{width:100%;height:200px;float:none;margin-left:0;margin-bottom:20px;display:block} .sided .Post:first-of-type .Title{width:100%;float:none;display:block;height:45px} .sided .Post:first-of-type .details{width:100%;float:none} .sided .Post:first-of-type .Snippet{height:40px} .sided .Post:first-of-type{height:auto} .sided .Post:not(:first-of-type) .Snippet{display:none} /* ======= Cards ======= */ .cards .Post{width:-webkit-calc((100% - 40px) / 3);width:calc((100% - 40px) / 3);margin-top:20px} .rtl .cards .Post{margin-left:19px;float:right} .ltr .cards .Post{margin-right:19px;float:left} .cards .Post:nth-of-type(-n+3){margin-top:0} .rtl .cards .Post:nth-of-type(3n){margin-left:0} .ltr .cards .Post:nth-of-type(3n){margin-right:0} .cards .Post .Thumb{width:100%;height:150px;margin-bottom:10px} .cards .Post .Title{width:100%;height:50px} .cards .details{padding:5px 0;border-top:1px solid $(post.lines);border-bottom:1px solid $(post.lines);overflow:hidden;clear:both;margin-bottom:5px;width:100%} .rtl .cards .Date,.rtl .cards .Author{float:right} .ltr .cards .Date,.ltr .cards .Author{float:left} .cards .Date{margin-bottom:0} .cards .Post .Snippet{text-align:justify;display:block;clear:both;height:80px} /* ======= Broadcast ======= */ .broadcast{overflow:hidden;margin-bottom:20px} .broadcast .current{width:60%;padding:20px;height:364px;background-color:$(cate.title.back)} .rtl .broadcast .Post{float:right} .ltr .broadcast .Post{float:left} .broadcast .current .Thumb{width:100%;height:250px} .broadcast .current .Thumb:before{content:"\f01d";color:rgba(255,255,255,0.9);position:absolute;top:-webkit-calc(50% - 47px);top:calc(50% - 47px);left:-webkit-calc(50% - 55px);left:calc(50% - 55px);font-size:110px;font-family:fontawesome;z-index:2} .broadcast .current .Title{color:$(cate.title.color);margin-top:20px;text-align:center;width:100%} .broadcast .Post:nth-of-type(n+2){padding:10px 20px;width:40%;height:73px;border-bottom:1px solid $(post.lines);overflow:visible;cursor:pointer;-webkit-box-shadow:-10px -20px 61px transparent inset;box-shadow:-10px -20px 61px transparent inset} .b-current{background-color:$keycolor!important} .b-current .Title{color:#FFF} .b-current:after{content:"";border-top:15px solid transparent;border-bottom:15px solid transparent;position:absolute;top:-webkit-calc(50% - 15px);top:calc(50% - 15px);z-index:2;-webkit-transition:.4s ease;-o-transition:.4s ease;transition:.4s ease} .broadcast .Post:nth-of-type(n+2) .Title{width:-webkit-calc(100% - 90px);width:calc(100% - 90px)} .broadcast .Post:nth-of-type(n+2) .Thumb{width:70px;height:100%} .rtl .b-current:after{right:-15px;border-left:15px solid $keycolor;} .ltr .b-current:after{left:-15px;border-right:15px solid $keycolor;} /* ================== * Footer * ================== */ footer{background-color:$(footer.back);width:100%} .f-cols{padding:20px 30px 10px;overflow:hidden;clear:both} .f-cols .section{width:-webkit-calc((100% - 60px) /4);width:calc((100% - 60px) /4);vertical-align:top;min-height:1px} .rtl .f-cols .section{float:right;margin-left:19px;} .ltr .f-cols .section{float:left;margin-right:19px;} .f-cols .widget{position:relative;width:100%} .f-cols .widget-content{clear:both} .rtl #Col-4{margin-left:0} .ltr #Col-4{margin-right:0} footer .widget h2{font-family:BlogFont ,AltFont;color:$(footer.title);padding:0 0 15px;margin-bottom:20px;font-size:19px} .rtl footer .widget h2{float:right;} .ltr footer .widget h2{float:left;} footer .widget h2:before{height:2px;background-color:$keycolor;content:"";float:right;width:100%;position:relative;top:37px;z-index:2;-webkit-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out} footer .widget h2:after{width:100%;height:2px;background-color:$(footer.lines);top:37px;left:0;position:absolute;content:""} .f-cols .widget-content{margin-bottom:20px} .f-cols.no-vp{padding-top:0;padding-bottom:0} /* ================== * Contact Form * ================== */ #ContactForm1{-webkit-box-shadow:0 0 15px rgba(0,0,0,0.1);box-shadow:0 0 15px rgba(0,0,0,0.1);width:220px;position:absolute;z-index:3;background-color:$(wrapper);top:140px;-webkit-border-radius:3px;border-radius:3px;padding:20px;display:none} .rtl #ContactForm1{right:20px;} .ltr #ContactForm1{left:20px;} #ContactForm1:before{content:"";border-right:15px solid transparent;border-left:15px solid transparent;border-bottom:15px solid $(wrapper);position:absolute;top:-15px;} .rtl #ContactForm1:before{right:39px} .ltr #ContactForm1:before{left:39px} #ContactForm1 h2.title{color:#999;clear:both;width:100%;text-align:center;border-bottom:1px solid $(lines)} #ContactForm1 h2.title:before,#ContactForm1 h2.title:after{display:none} #ContactForm1_contact-form-error-message,#ContactForm1_contact-form-success-message{font-family:BlogFont,AltFont;color:#999;font-size:11px;direction:ltr} footer form[name="contact-form"]{font-family:BlogFont,AltFont} footer form[name="contact-form"] input[type='text'],footer form[name="contact-form"] textarea{border:1px solid $(lines);width:100%;padding:10px 20px;-webkit-border-radius:3px;border-radius:3px;margin-bottom:5px;color:#999} footer form[name="contact-form"] textarea{height:75px;margin-bottom:0;resize:none} #ContactForm1_contact-form-submit{width:100%;background-color:$(lines);-webkit-border-radius:3px;border-radius:3px;padding:10px;color:#999;font-size:16px;cursor:pointer} #ContactForm1_contact-form-submit:hover{background-color:$keycolor;color:#FFF} #Stats1 .widget-content{text-align:center} #FollowByEmail1 i{float:right;font-size:55px;-webkit-border-radius:100%;border-radius:100%;width:90px;height:90px;background-color:#333;padding-top:18px;text-align:center;margin-left:20px} i.fa.fa-microphone{color:$keycolor;font-size:50px;background-color:$(subs.buttons);width:80px;height:80px;text-align:center;-webkit-border-radius:100%;border-radius:100%;padding-top:16px;margin-top:5px;display:inline-block;cursor:pointer;vertical-align:top} i.fa.fa-microphone.cont-open{background-color:$keycolor;color:#FFF} .fa.fa-arrow-up{color:$(subs.text);font-size:40px!important;background-color:$(subs.buttons);width:80px;height:80px;text-align:center;-webkit-border-radius:100%;border-radius:100%;padding-top:19px;margin-top:5px;vertical-align:top;display:inline-block;cursor:pointer} .fa-arrow-up:before{-webkit-transition:.3s linear;-o-transition:.3s linear;transition:.3s linear} .fa-arrow-up:hover:before{color:$keycolor} /* ================== * Email Subscription * ================== */ #HTML140 p{font-family:BlogFont,AltFont;color:$(subs.text);font-size:14px;text-align:justify;display:inline-block;width:-webkit-calc(100% - 510px);width:calc(100% - 510px);margin:15px 20px;vertical-align:top} #HTML140{display:inline} .subscription{text-align:center} #FollowByEmail1{display:inline-block;width:290px} #f-row{width:100%;clear:both;padding:20px 30px;height:130px;position:relative} .f-row-color{background-color:$(subs.back)} #f-row .subscription{font-size:0;text-align:center;display:block;margin-top:15px} #f-row .email{-webkit-border-radius:2px;border-radius:2px;background-color:$(subs.email.back);width:-webkit-calc(100% - 120px);width:calc(100% - 120px);padding:0 30px;text-align:left;direction:ltr;height:60px;font-size:12px;color:$(subs.email.color)} #f-row .subscribe{background-color:$(subs.button.back);width:110px;font-family:BlogFont,AltFont;-webkit-border-radius:2px;border-radius:2px;font-size:19px;text-align:center;color:#fff;height:60px;vertical-align:top;cursor:pointer;margin:0 5px;padding-top:2px;outline:0;border:0} #f-row .subscribe:hover{background-color:$(subs.button.back.hover);color:$(subs.button.color.hover)} /* ================== * Copyrights * ================== */ #copyrights{min-height:50px;padding:10px 30px;border-top:1px solid $(copts.line)} .copy-color{background-color:$(copts.back);overflow:hidden} #HTML110{display:block;margin-top:3px;color:$(copts.text);font-family:BlogFont,AltFont;font-size:14px} .c-site a{font-family:BlogFont,AltFont;color:$(copts.link);display:inline-block;margin:0 5px;font-size:14px} #HTML110 p{font-family:BlogFont,AltFont;display:inline-block} .c-site a:hover{color:$keycolor!important} .rtl #HTML110 .c-site{margin-left:30px;float:right;margin-top:2px} .ltr #HTML110 .c-site{margin-right:30px;float:left;margin-top:2px} /* ================== * Social Sites * ================== */ .rtl #LinkList104{float:left} .ltr #LinkList104{float:right} #LinkList104 li a{background-color:$(copts.soc.back);color:$(copts.soc.color);width:30px;height:30px;text-align:center;padding-top:7px;border-radius:100%} #LinkList104 li{vertical-align:top;display:inline-block} #LinkList104 li a:hover{color:#FFF} /* ==================== * Widgets * ==================== */ /* ================== * Popular Posts * ================== */ .popular-posts ul{font-size:0} .popular-posts li{margin-bottom:10px;padding-bottom:10px} .tinyPop .item-thumbnail{width:72px;height:72px} .popular-posts:not(.tinyPop) .item-thumbnail{margin-bottom:5px} .rtl .tinyPop .item-thumbnail{float:right;margin-left:10px} .ltr .tinyPop .item-thumbnail{float:left;margin-right:10px} .tinyPop .item-title a{font-size:13px} .tinyPop .item-snippet{font-size:10px;text-align:justify} aside .popular-posts li{border-bottom:1px dotted $(side.lines)} footer .popular-posts li{border-bottom:1px dotted $(footer.lines)} .popular-posts li:last-of-type{margin-bottom:0;border-bottom:none;padding-bottom:0} .item-thumbnail{width:99%;height:130px;display:block;overflow:hidden;border:5px solid transparent} .rtl .item-thumbnail{margin-right:1px} .ltr .item-thumbnail{margin-left:1px} aside .item-thumbnail{outline:1px solid $(side.lines)} footer .item-thumbnail{outline:1px solid $(footer.lines)} .item-thumbnail img{width:100%;height:100%} .item-thumbnail span{width:100%;height:100%;background-size:cover!important;background-position:center center!important;display:block} .popular-posts li:hover span{-webkit-transform:scale(1.1);transform:scale(1.1);opacity:.7!important} .popular-posts a{font-family:BlogFont ,AltFont;font-size:16px;display:block;width:100%;font-weight:700} aside .popular-posts a{color:$(side.links)} footer .popular-posts a{color:$(footer.links)} aside .item-title a:hover{color:$(side.links.hover)} footer .item-title a:hover{color:$(footer.links.hover)} .item-thumbnail a{display:inline} .item-snippet{padding-top:5px;font-size:12px;text-align:justify;width:100%;font-family:BlogFont ,AltFont} aside .item-snippet{color:$(side.text)} footer .item-snippet{color:$(footer.text)} .item-content:first-of-type{margin-top:2px} /* ================== * SlideShow * ================== */ .slideshow-status{color:#676767;font-size:11px;margin:10px;padding:4px} .slideshow-wrapper{display:inline-block;position:relative;width:100%} .slideshow-wrapper:after{content:'';display:block;margin-top:100%} .slideshow-spacer{margin:auto} .slideshow-container{bottom:0;left:0;position:absolute;right:0;top:0} img.gsc-branding-img-noclear{display:inline} .slideshow-container img{display:inline} /* ================== * Labels * ================== */ .label-size a{vertical-align:top;font-family:BlogFont,AltFont;-webkit-border-radius:3px;border-radius:3px;display:block;white-space:nowrap;overflow:hidden;font-size:14px} .rtl .label-size a{text-align:right;padding:10px 20px 10px 50px;} .ltr .label-size a{text-align:left;padding:10px 50px 10px 20px;} .label-size{display:block;margin-bottom:7px;width:100%;font-size:0} .label-size span{display:inline-block;font-family:BlogFont;background-color:rgba(0,0,0,0.1);padding:4px 10px;font-size:12px;text-align:center;-webkit-border-radius:5px;border-radius:5px;margin-top:-33px;margin-left:10px} .rtl .label-size span{float:left;margin-left:10px} .ltr .label-size span{float:right;margin-right:10px} .no-nums{display:inline-block;width:47%;margin-left:1%} body .Label .no-nums a{padding:10px 20px;text-align:center} .label-size:hover span{color:#FFF} .label-size:hover a{background-color:$keycolor;color:#FFF} .Label li a{font-size:14px;font-family:BlogFont,AltFont;padding:5px 0;display:block} .Label li span{font-size:12px;font-family:AltFont;margin-top:-25px;padding:3px 6px;-webkit-border-radius:3px;border-radius:3px;width:30px;text-align:center} .rtl .Label li span{float:left;} .ltr .Label li span{float:right;} .Label li a:before{color:$keycolor;display:inline-block;font-family:fontawesome;-webkit-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out} .rtl .Label li a:before{content:"\f100";padding-left:10px;} .ltr .Label li a:before{content:"\f101";padding-right:10px;} .Label li:hover span{background-color:$keycolor;color:#fff} .rtl .Label li:hover a:before{margin-right:5px} .ltr .Label li:hover a:before{margin-left:5px} .Label li span:first-child,.Label li span:nth-of-type(2){display:none} aside .label-size a{background-color:$(side.lines);color:$(side.links)} aside .label-size span{color:$(side.text)} footer .label-size a{background-color:$(footer.lines);color:$(footer.links)} footer .label-size span{color:$(footer.text)} aside .Label li a{border-bottom:1px solid $(side.lines);color:$(side.links)} aside .Label li span{background-color:$(side.lines);color:$(side.text)} aside .Label li:hover a{color:$(side.links.hover);border-bottom:1px solid $keycolor} footer .Label li a{color:$(footer.links);border-bottom:1px solid $(footer.lines)} footer .Label li span{background-color:$(footer.lines);color:$(footer.text)} footer .Label li:hover a{color:$(footer.links.hover);border-bottom:1px solid $keycolor} /* ================== * Footer LinkList * ================== */ footer .LinkList li a{display:block;border-bottom:1px solid $(footer.lines);font-family:BlogFont ,AltFont;padding:10px 0;color:$(footer.links);font-size:14px} footer .LinkList li a:before{content:"\f10c";font-family:fontawesome;font-size:8px;display:inline-block;vertical-align:middle} .rtl footer .LinkList li a:before{padding-left:10px;} .ltr footer .LinkList li a:before{padding-right:10px;} footer .LinkList li a:hover{color:$(footer.links.hover);border-bottom:1px dotted $keycolor} footer .LinkList li a:hover:before{content:"\f111";color:$keycolor} /* ================== * TextList * ================== */ .TextList li{display:block;font-family:BlogFont ,AltFont;padding:5px 0;font-size:14px} aside .TextList li{border-bottom:1px solid $(side.lines);color:$(side.links);} footer .TextList li{border-bottom:1px solid $(footer.lines);color:$(footer.links);} .TextList li:before{content:"\f111";font-family:fontawesome;font-size:8px;display:inline-block;vertical-align:middle} .rtl .TextList li:before{padding-left:10px;} .ltr .TextList li:before{padding-right:10px;} footer .TextList li:before{color:$(footer.lines)} aside .TextList li:before{color:$(side.lines)} /* ================== * Statatics Widget * ================== */ #Stats1_totalCount{display:inline-block;vertical-align:top;font-size:30px;font-family:Arial;font-weight:700;color:$keycolor;margin-right:8px} #Stats1_sparkline{display:inline-block;vertical-align:top;margin-bottom:10px;margin:0 10px 10px} img[height="1"]{display:none} /* ====================== * Social Links (Sidebar) * ====================== */ #LinkList102{overflow:hidden} #LinkList102 a{display:inline-block;position:relative;margin-top:8px;padding:5px 0;-webkit-border-radius:3px;border-radius:3px;text-align:center;overflow:hidden;width:48%;color:#fff;font-size:30px;height:60px;-webkit-box-shadow:0 30px 50px rgba(0,0,0,0.15) inset;box-shadow:0 30px 50px rgba(0,0,0,0.15) inset} #LinkList102 a:nth-of-type(-n+2){margin-top:0} .rtl #LinkList102 a{margin-left:4%} .ltr #LinkList102 a{margin-right:4%} .rtl #LinkList102 a:nth-of-type(even){margin-left:0} .ltr #LinkList102 a:nth-of-type(even){margin-right:0} #LinkList102 span{font-family:AltFont;position:relative;color:#fff;text-transform:capitalize;font-size:12px;text-align:center;margin-top:3px;vertical-align:top} #LinkList102 br{font-size:33px;vertical-align:top} #LinkList102 a:hover{background-color:#444!important;color:#ddd} #LinkList102 a:hover span{color:#999} /* ================== * Weather Widget * ================== */ #HTML103 .widget-content{display:none} #HTML103{margin-bottom:0} #weather{background-color:$(weather.back);padding:20px;-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 70px 70px 30px rgba(0,0,0,0.1) inset;box-shadow:0 70px 70px 30px rgba(0,0,0,0.1) inset;max-width:250px;margin:0 auto 20px} abbr.Today{display:block;font-family:BlogFont,AltFont;text-align:center;font-size:24px;color:$(weather.back);-webkit-border-radius:5px;border-radius:5px;padding:5px 0;background-color:$(weather.color);line-height:1.5em;} #weather i{font-size:170px;line-height:100%;text-align:center;display:block;color:$(weather.color);margin-bottom:-10px;margin-right:-60px} span.Condition{display:block;text-align:center;color:$(weather.color);font-family:BlogFont,AltFont;font-size:20px} span.Today-Temp{display:block;text-align:center;color:$(weather.color);font-family:Arial;font-size:24px;font-weight:700;text-transform:capitalize} .icon{font-family:FontAwesome;font-weight:400;font-style:normal} .icon-0:before{content:"\efb7"} .icon-1:before{content:"\efbc"} .icon-2:before{content:"\efbe"} .icon-3:before{content:"\efbd"} .icon-4:before{content:"\efbe"} .icon-5:before{content:"\efc0"} .icon-6:before{content:"\efc0"} .icon-7:before{content:"\efc0"} .icon-8:before{content:"\efc0"} .icon-9:before{content:"\efba"} .icon-10:before{content:"\efc0"} .icon-11:before{content:"\efba"} .icon-12:before{content:"\efba"} .icon-13:before{content:"\efba"} .icon-14:before{content:"\efba"} .icon-15:before{content:"\efc0"} .icon-16:before{content:"\efba"} .icon-17:before{content:"\efc0"} .icon-18:before{content:"\efbf"} .icon-19:before{content:"\efc1"} .icon-20:before{content:"\efc1"} .icon-21:before{content:"\efc1"} .icon-22:before{content:"\efc1"} .icon-23:before{content:"\efc1"} .icon-24:before{content:"\efb9"} .icon-25:before{content:"\efb9"} .icon-26:before{content:"\efb5"} .icon-27:before{content:"\efc2"} .icon-28:before{content:"\efb8"} .icon-29:before{content:"\efc2"} .icon-30:before{content:"\efb8"} .icon-31:before{content:"\efb6"} .icon-32:before{content:"\efb4"} .icon-33:before{content:"\efb6"} .icon-34:before{content:"\efb4"} .icon-35:before{content:"\efc0"} .icon-36:before{content:"\efb4"} .icon-37:before{content:"\efbe"} .icon-38:before{content:"\efbe"} .icon-39:before{content:"\efbe"} .icon-40:before{content:"\efbb"} .icon-41:before{content:"\efc0"} .icon-42:before{content:"\efba"} .icon-43:before{content:"\efc0"} .icon-44:before{content:"\efc2"} .icon-45:before{content:"\efbe"} .icon-46:before{content:"\efbf"} .icon-47:before{content:"\efbe"} /* ================== * Flicker Widget * ================== */ .flickr-photos a{display:inline-block;width:30%;;opacity:.8} .rtl .flickr-photos a{margin:0 0 10px 5%} .ltr .flickr-photos a{margin:0 5% 10px 0} .rtl .flickr-photos a:nth-of-type(3n){margin-left:0} .ltr .flickr-photos a:nth-of-type(3n){margin-right:0} .flickr-photos a img{-webkit-border-radius:2px;border-radius:2px} .flickr-photos a:hover{opacity:1} aside .goog-te-gadget-simple{border:1px solid $(side.lines);text-align:center;margin:0 auto;padding:10px;display:block} /* ================== * Archive Widget * ================== */ .BlogArchive select{font-family:blogFont,AltFont;width:100%;padding:10px;background:none} aside .BlogArchive select{color:$(side.links);border:1px solid $(side.lines)} footer .BlogArchive select{color:$(footer.links);border:1px solid $(footer.lines)} #ArchiveList .collapsed ul{display:none} .flat .archivedate a{font-family:BlogFont,AltFont;display:block;padding:5px 0} aside .flat .archivedate a{border-bottom:1px solid $(side.lines);color:$(side.links);} footer .flat .archivedate a{border-bottom:1px solid $(footer.lines);color:$(footer.links);} .flat .archivedate a:hover{border-bottom:1px solid $keycolor;color:$(side.links.hover)} aside .flat .archivedate a:hover{border-bottom:1px solid $keycolor;color:$(side.links.hover)} footer .flat .archivedate a:hover{border-bottom:1px solid $keycolor;color:$(footer.links.hover)} .flat-count{margin-top:-27px;color:$(side.text);font-size:12px} .rtl .flat-count{float:left;} .ltr .flat-count{float:right;} .flat a:before{color:$keycolor;display:inline-block;font-family:fontawesome;-webkit-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out} .rtl .flat a:before{content:"\f100";padding-left:10px;} .ltr .flat a:before{content:"\f101";padding-right:10px;} .rtl .archivedate:hover a:before{padding-right:5px} .ltr .archivedate:hover a:before{padding-left:5px} aside .toggle{color:$(side.links)} footer .toggle{color:$(footer.links)} .toggle:hover{color:$(keycolor)} .toggle{font-size:0;margin-top:15px} .rtl .toggle{font-size:0;float:right} .ltr .toggle{font-size:0;float:left} body .zippy.toggle-open:before{content:"\f103"} .rtl .zippy:before{content:"\f100"} .ltr .zippy:before{content:"\f101"} .rtl .hierarchy .hierarchy{margin-right:10px} .ltr .hierarchy .hierarchy{margin-left:10px} .zippy:before{font-size:18px;font-family:fontawesome;text-align:center} .post-count-link{display:block;width:-webkit-calc(100% - 25px);width:calc(100% - 25px);font-family:BlogFont,AltFont;padding:4px 10px;margin-bottom:5px} .rtl .post-count-link{margin-right:20px;} .ltr .post-count-link{margin-left:20px;} aside .post-count-link{color:$(side.links);border-bottom:1px solid $(side.lines)} footer .post-count-link{color:$(footer.links);border-bottom:1px solid $(footer.lines)} aside .post-count-link:hover{border-bottom:1px solid $(keycolor)} .post-count{margin-top:-27px;font-size:12px} .rtl .post-count{float:left;} .ltr .post-count{float:right;} aside .post-count{color:$(side.text)} footer .post-count{color:$(footer.text)} .posts a{display:block;font-family:BlogFont ,AltFont;padding:5px 0;font-size:12px} aside .posts a{color:$(side.text);border-bottom:1px solid $(side.lines)} footer .posts a{color:$(footer.text);border-bottom:1px solid $(footer.lines)} aside .posts a:hover{border-bottom:1px solid $keycolor;color:$(side.links.hover)} footer .posts a:hover{border-bottom:1px solid $keycolor;color:$(footer.links.hover)} /* ===================== * Featured Post Widget * ===================== */ .post-summary p{font-size:12px;margin-bottom:10px;display:block;font-family:blogfont,AltFont} aside .post-summary a:hover{color:$(side.links.hover)} aside .post-summary p{color:$(side.text)} .post-summary{padding:10px} aside .post-summary{border:1px solid $(side.lines)} footer .post-summary{clear:both;border:1px solid $(footer.lines)} .post-summary a{font-family:blogfont,AltFont;font-weight:700;display:block;text-align:center;margin-bottom:10px;padding:10px;-webkit-border-radius:5px;border-radius:5px} aside .post-summary a{background-color:$(side.lines);color:$(side.links)} footer .post-summary a{background-color:$(footer.lines);color:$(footer.links)} footer .post-summary a:hover{color:$(footer.links.hover)} footer .post-summary p{color:$(footer.text)} aside .FeaturedPost .image{padding:5px;border:1px solid $(side.lines)} footer .FeaturedPost .image{padding:5px;border:1px solid $(footer.lines)} /* ==================== * Authors Widget * ==================== */ .Profile{display:none;} .Profile .widget-content{padding:10px;position:relative;overflow:hidden;min-height:20px} aside .Profile .widget-content{border:1px solid $(side.lines)} footer .Profile .widget-content{border:1px solid $(footer.lines)} .Profile .widget-content.opend{min-height:302px} .Profile .widget-content .au-wid-card{padding:10px 0;margin:0 10px;height:70px;cursor:pointer} aside .Profile .widget-content .au-wid-card{border-top:1px solid $(side.lines)} footer .Profile .widget-content .au-wid-card{border-top:1px solid $(footer.lines)} .Profile .widget-content .au-wid-card:first-of-type,.Profile .widget-content .au-wid-card:first-of-type:hover{border:none} .Profile .widget-content .au-wid-pic{width:50px;height:50px;-webkit-border-radius:100%;border-radius:100%;-webkit-background-size:cover;background-size:cover;} .rtl .Profile .widget-content .au-wid-pic{float:right;margin-left:10px} .ltr .Profile .widget-content .au-wid-pic{float:left;margin-right:10px} aside .Profile .widget-content .au-wid-pic{border:5px solid $(wrapper);-webkit-box-shadow:0 0 0 1px $(side.lines);box-shadow:0 0 0 1px $(side.lines)} footer .Profile .widget-content .au-wid-pic{border:5px solid $(footer.back);-webkit-box-shadow:0 0 0 1px $(footer.lines);box-shadow:0 0 0 1px $(footer.lines)} .Profile .widget-content .au-wid-name{font-family:BlogFont,AltFont;font-size:12px;margin-top:10px;font-weight:700} aside .Profile .widget-content .au-wid-name{color:$(side.links)} footer .Profile .widget-content .au-wid-name{color:$(footer.links)} .Profile .widget-content .au-wid-count{font-size:10px;display:block} aside .Profile .widget-content .au-wid-count{color:$(side.text)} footer .Profile .widget-content .au-wid-count{color:$(footer.text)} .Profile .widget-content .au-wid-count i{font-style:normal;margin:0 5px} .Profile .widget-content .au-wid-count b{font-family:blogfont,AltFont;font-weight:400} .Profile .widget-content .au-posts{top:0;right:0;-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%);width:100%;position:absolute;overflow:hidden;height:300px} aside .Profile .widget-content .au-posts{background-color:$(wrapper)} footer .Profile .widget-content .au-posts{background-color:$(footer.back)} .au-wid-pos-links{height:190px;overflow-y:scroll} aside .au-wid-pos-links{border-bottom:1px solid $(side.lines)} footer .au-wid-pos-links{border-bottom:1px solid $(footer.lines)} .au-wid-pos-links::-webkit-scrollbar{width:7px;overflow:hidden} .au-wid-pos-links::-webkit-scrollbar-thumb:hover{background-color:$(keycolor)} aside .au-wid-pos-links::-webkit-scrollbar-track{background-color:$(wrapper)} aside .au-wid-pos-links::-webkit-scrollbar-thumb{background-color:$(side.lines);-webkit-border-radius:100px;border-radius:100px} footer .au-wid-pos-links::-webkit-scrollbar-track{background-color:$(footer.back)} footer .au-wid-pos-links::-webkit-scrollbar-thumb{background-color:$(footer.lines);-webkit-border-radius:100px;border-radius:100px} .Profile .widget-content{position:relative;overflow:hidden} .Profile .widget-content .au-post{overflow:hidden;display:block;padding:5px;height:50px} .Profile .widget-content .au-post:hover .au-po-img{opacity:1;-webkit-filter:contrast(1.1);filter:contrast(1.1);} .Profile .widget-content .au-post:hover .au-po-title{color:$keycolor} @-webkit-keyframes soft {50%{opacity:.5}} @keyframes soft {50%{opacity:.5}} .Profile .widget-content .au-po-img{opacity:0.9;width:40px;height:40px;-webkit-background-size:cover;background-size:cover;background-position:center center;-webkit-border-radius:2px;border-radius:2px} .rtl .Profile .widget-content .au-po-img{float:right;margin-left:10px;} .ltr .Profile .widget-content .au-po-img{float:left;margin-right:10px;} .Profile .widget-content .au-po-title{font-size:11px;background-color:transparent;font-weight:700;border:none;padding:0;margin:0;line-height:1.3em;max-height:27px;overflow:hidden;float:none;min-height:15px} aside .Profile .widget-content .au-po-title{color:$(side.links)} footer .Profile .widget-content .au-po-title{color:$(footer.links)} .au-po-details{line-height:0.5em} .Profile .widget-content .au-po-title:before,.Profile .widget-content .au-po-title:after{display:none} .Profile .widget-content .au-po-date{font-size:8px;display:block;font-family:blogfont,AltFont;margin-top:3px} aside .Profile .widget-content .au-po-date{color:$(side.text)} footer .Profile .widget-content .au-po-date{color:$(footer.text)} .Profile .widget-content .au-po-date:before{content:"\f017";font-family:fontawesome;display:inline-block;font-weight:400} .rtl .Profile .widget-content .au-po-date:before{margin-left:5px} .ltr .Profile .widget-content .au-po-date:before{margin-right:5px} .au-wid-pos-card{height:61px;padding:5px} aside .au-wid-pos-card{border-bottom:1px solid $(side.lines)} footer .au-wid-pos-card{border-bottom:1px solid $(footer.lines)} .hide-auths{-webkit-transform:translateX(110%);-ms-transform:translateX(110%);transform:translateX(110%);height:auto} .Profile .widget-content .show-posts{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)} .au-wid-back:Hover:before{color:$keycolor} .au-wid-back:before{font-family:fontawesome;font-size:25px;display:inline-block;text-align:center;line-height:.7em;vertical-align:middle;padding:3px 0 0 3px;cursor:pointer} .rtl .au-wid-back:before{margin-left:5px;} .ltr .au-wid-back:before{margin-right:5px;} aside .au-wid-back:before{color:$(side.text)} footer .au-wid-back:before{color:$(footer.text)} .rtl .au-wid-back:before{content:"\f190";} .ltr .au-wid-back:before{content:"\f18e";} .au-wid-prof{font-size:12px;font-family:blogfont,AltFont;font-weight:700;padding:6px 10px;-webkit-border-radius:3px;border-radius:3px;margin-top:10px} .rtl .au-wid-prof{float:right;margin-right:10px} .ltr .au-wid-prof{float:left;margin-left:10px} aside .au-wid-prof{color:$(side.text);background-color:$(side.lines)} footer .au-wid-prof{color:$(footer.text);background-color:$(footer.lines)} .au-wid-prof:before{content:"\f007";font-family:fontawesome;font-weight:400;} .rtl .au-wid-prof:before{margin-left:5px} .ltr .au-wid-prof:before{margin-right:5px} .au-wid-back{margin-top:12px} .rtl .au-wid-back{float:left;} .ltr .au-wid-back{float:right;} aside .au-wid-prof:hover{color:$(wrapper);background-color:$keycolor} footer .au-wid-prof:hover{color:$(footer.back);background-color:$keycolor} /* ================== * Posts Page * ================== */ /* ====== Share Buttons ====== */ .share{width:100%;clear:both;border-top:1px solid $(postbody.lines);padding:10px 0;border-bottom:1px solid $(postbody.lines);margin-bottom:20px} .like{float:right} .share h7{color:$(postbody.subtitle);font-size:21px;margin-top:3px;font-family:BlogFont,AltFont} .rtl .share h7{float:right;} .ltr .share h7{float:left;} .share a{cursor:pointer;font-family:FontAwesome;font-size:20px;width:40px;padding:6px 0;text-align:center;color:#FFF;-webkit-border-radius:2px;border-radius:2px;vertical-align:top;height:40px} .rtl .share a{float:left;margin-right:5px;} .ltr .share a{float:right;margin-left:5px;} .share a:hover{background-color:#444!important} .share .facebook{background-color:#3C56A1} .share .twitter{background-color:#89c9fa} .share .google{background-color:#DC493C} .share .pinterest{background-color:#c72527} .share .whatsapp{background-color:#65bc54} .share .print{background-color:#1A7DB9} .fb-like.fb_iframe_widget:before{content:"\f09a";color:#fff;padding:10px 15px;background-color:#3C56A1;display:inline-block;position:absolute;top:0;left:0;font-family:FontAwesome;font-size:20px;height:40px;width:40px} .fb-like.fb_iframe_widget{padding:10px 10px 10px 50px;background-color:#f5f5f5;position:relative;-webkit-border-radius:2px;border-radius:2px;vertical-align:top;height:40px;width:114px} .fb-like.fb_iframe_widget:hover:after{width:0;opacity:0;text-indent:-100px;font-size:0} .fb-like.fb_iframe_widget:after{content:"Like";background-color:#3C56A1;position:absolute;right:0;top:0;width:-webkit-calc(100% - 40px);width:calc(100% - 40px);height:100%;width:74px;color:#FFF;padding-top:12px;padding-left:10px;font-size:14px;font-family:Arial;text-indent:30px;font-weight:700;height:40px;-webkit-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out;z-index:2} .plus-one:before{content:"\f0d5";color:#fff;padding:10px 0;background-color:#dd4e42;display:inline-block;position:absolute;top:0;left:0;font-family:FontAwesome;font-size:20px;height:40px;width:40px} .plus-one{padding:7px 10px 10px 50px;background-color:#f5f5f5;position:relative;-webkit-border-radius:2px;border-radius:2px;vertical-align:top;height:40px;width:114px;text-align:center} .rtl .plus-one, .rtl .fb-like.fb_iframe_widget{float:left;margin-right:5px;} .ltr .plus-one, .ltr .fb-like.fb_iframe_widget{float:right;margin-left:5px;} .plus-one:hover:after{width:0;opacity:0;text-indent:-100px;font-size:0} .plus-one:after{content:"+1";background-color:#dd4e42;position:absolute;right:0;top:0;width:-webkit-calc(100% - 40px);width:calc(100% - 40px);height:100%;width:74px;color:#FFF;padding-top:12px;padding-left:10px;font-size:14px;font-family:Arial;text-indent:30px;font-weight:700;height:40px;-webkit-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out;z-index:2} /* ====== Share Buttons ====== */ .post-body{color:$(postbody.text);padding:0 0 20px} .post-body span{display:inline} .post-body a:not(.ibtn){color:$(postbody.link);font-weight:700} .post-body a:not(.ibtn):hover{color:$keycolor!important;text-decoration:underline} .post-body,.post-body *{font-family:PostFont ,AltFont!important} .article-title{line-height:40px;font-family:PostFont,AltFont!important;font-weight:700;font-size:26px!important;color:$(postbody.title.color)!important;padding:10px 20px;background-color:$(postbody.title.back)} .rtl .article-title{border-right:15px solid $(keycolor);} .ltr .article-title{border-left:15px solid $(keycolor);} .post-body [dir] img{max-height:100%!important;height:auto!important;padding:5px;border:1px solid $(postbody.lines)} .post-body h3{font-weight:700;font-size:20px} .post-body h4{font-weight:700;font-size:18px;text-decoration:underline} .post-body ol li{margin-right:40px;list-style:decimal;padding-right:10px} .rtl .post-body ul li{margin-right:40px;list-style:circle;padding-right:10px} .ltr .post-body ul li{margin-left:40px;list-style:circle;padding-left:10px} .post-body ul li:hover{list-style:disc} .post-body blockquote{clear:both;background-color:$(keycolor);padding:20px;margin:5px 20px;color:#FFF;-webkit-border-radius:3px;border-radius:3px;text-indent:50px;position:relative} .post-body blockquote:before{position:absolute;font-family:fontawesome;font-size:30px;top:16px} .rtl .post-body blockquote:before{content:"\f10e";right:-30px} .ltr .post-body blockquote:before{content:"\f10d";left:-30px} .static_page .post-details{display:none} .static_page .article-title{text-align:center;margin-bottom:20px;} /* ====== Post Details ====== */ .post-details{clear:both;width:100%;border-top:1px solid $(postbody.lines);border-bottom:1px solid $(postbody.lines);padding:5px 0;margin:10px 0} .post-details h6{font-family:FontAwesome;color:$(postbody.details.icon);display:inline-block;vertical-align:0;font-size:14px;margin-left:5px} .rtl .post-labels,.rtl .post-author,.rtl .post-timestamp{display:inline-block;vertical-align:top;margin-left:10px} .ltr .post-labels,.ltr .post-author,.ltr .post-timestamp{display:inline-block;vertical-align:top;margin-right:10px} .g-profile:hover,.published:hover,.post-labels a:hover{color:$keycolor} .fn{display:inline-block;vertical-align:middle} .g-profile,.timestamp-link,.post-labels a{font-family:PostFont,AltFont;color:$(postbody.details);font-size:12px} .post-labels b{font-size:10px;color:$(postbody.details.icon);padding:0 5px} /* ====== Posts ADS ====== */ .inline-ad{text-align:center;margin-bottom:20px} #HTML202{margin-right:20px;margin-bottom:20px;text-align:center} #HTML109{text-align:center} #HTML201,#HTML203{text-align:center} #HTML201{margin-bottom:20px} #HTML203{margin-top:20px} .post-body #HTML201,.post-body #HTML203{display:block} .post-body #HTML202{float:left;display:inline} /* ====== Long Posts ====== */ .l-block{opacity:0;height:0;overflow:hidden} .b-active{opacity:1;height:auto} .post-pagin{text-align:center;padding-top:20px;border-top:1px solid $(postbody.lines);margin-top:10px} .post-pagin span{background-color:$keycolor;display:inline-block;vertical-align:top;padding:5px 10px;margin:0 5px;font-family:blogfont,AltFont!important;color:$(wrapper);-webkit-border-radius:3px;border-radius:3px;font-size:12px;cursor:pointer} /* ================== * Next & Prev Posts * ================== */ #BlogArchive1_ArchiveMenu{width:100%;padding:10px;font-family:BlogFont,AltFont;outline:none} #blog-pager{overflow:hidden;-webkit-border-radius:2px;border-radius:2px;width:-webkit-calc((100% - 200px) - 20px);width:calc((100% - 200px) - 20px)} .rtl #blog-pager{float:right;margin-right:20px} .ltr #blog-pager{float:left;margin-left:20px} div#blog-pager.pagin-top{float:none;width:100%;clear:both;margin-bottom:20px} .inav:before,.inav p,.inav span{color:#ddd!important} .blog-pager-older-link,.blog-pager-newer-link{width:50%;vertical-align:top;line-height:normal} .inav{cursor:not-allowed} .blog-pager-older-link{float:left;text-align:left;padding-right:10px} .blog-pager-newer-link{float:right;text-align:right;padding-left:10px} .blog-pager-newer-link p,.blog-pager-older-link p{font-family:BlogFont,AltFont;color:#999;font-size:16px;white-space:nowrap;overflow:hidden;-o-text-overflow:ellipsis;text-overflow:ellipsis;font-weight:bold} .blog-pager-newer-link span,.blog-pager-older-link span{font-family:BlogFont,AltFont;color:#ccc;font-size:13px;display:inline-block;vertical-align:top;margin-top:6px} .blog-pager-newer-link:before,.blog-pager-older-link:before{width:40px;height:50px;color:#eee;font-family:fontawesome;font-size:50px;-webkit-transition:.3s ease-out;-o-transition:.3s ease-out;transition:.3s ease-out} .blog-pager-newer-link:before{content:"\f101";float:right;text-align:right} .blog-pager-older-link:before{content:"\f100";float:left;text-align:left} #blog-pager a:hover p{color:$(related.links)} .item #blog-pager a:hover span{color:$(related.details)} #blog-pager a:hover:before{color:$keycolor} .nav-links-only .older-text,.nav-links-only .newer-text{font-size:16px;font-weight:bold;margin-top:14px} .nav-links-only p{margin-top:-5px} /* ================== * Related Posts * ================== */ .related-posts{padding-bottom:20px} .related-posts.links{width:-webkit-calc(100% - 200px);width:calc(100% - 200px)} .related-posts.slider{width:-webkit-calc((100% - 200px) - 20px);width:calc((100% - 200px) - 20px);margin-bottom:20px;border-bottom:1px solid $(postbody.lines)} .rtl .related-posts{float:right;margin-right:20px} .ltr .related-posts{float:left;margin-left:20px} .rtl .related-posts.slider{margin-right:20px} .rtl .related-posts.links{padding-right:20px;border-right:1px solid $(postbody.lines);margin-right:-1px} .ltr .related-posts.links{padding-left:20px;border-left:1px solid $(postbody.lines);margin-left:-1px} .related-h3{font-family:BlogFont ,AltFont;border-bottom:1px solid $(postbody.lines);margin-bottom:20px;color:$(postbody.subtitle);padding-bottom:10px;font-size:19px;width:-webkit-calc((100% - 200px) - 20px);width:calc((100% - 200px) - 20px)} .rtl .related-h3{float:right;margin-right:20px} .ltr .related-h3{float:left;margin-left:20px} .relate-p{width:100%} .r-details{margin-top:5px;font-family:AltFont;font-size:12px;clear:both;color:$(related.details);overflow:hidden} .r-author{display:inline-block} .r-date{display:inline-block;margin-bottom:5px} .rtl .r-author{margin-left:20px} .ltr .r-author{margin-right:20px} .r-date:before,.r-author:before{font-family:fontAwesome;display:inline-block;vertical-align:bottom} .rtl .r-date:before,.rtl .r-author:before{padding-left:5px} .ltr .r-date:before,.ltr .r-author:before{padding-right:5px} .r-date:before{content:"\f017"} .r-author:before{content:"\f007"} .slider .relate-Thumb{position:relative;display:block;width:100%;height:150px;margin-bottom:10px;overflow:hidden;padding:5px;border:1px solid $(postbody.lines)} .rtl .relate-Thumb{margin-left:20px} .ltr .relate-Thumb{margin-right:20px} .relate-p:hover .relate-Thumb img{opacity:.7} .relate-Thumb img{width:100%;height:100%} .slider .related-title{line-height:21px;font-family:BlogFont,AltFont;color:$(related.links);margin-bottom:10px;height:42px;overflow:hidden} .related-posts .owl-nav{position:absolute;top:-55px} .rtl .related-posts .owl-nav{left:0} .ltr .related-posts .owl-nav{right:0} .related-posts .owl-nav div{font-family:fontawesome;width:25px;height:25px;text-align:center;padding-top:3px;display:inline-block;vertical-align:top;margin-right:5px;-webkit-border-radius:2px;border-radius:2px;color:$(postbody.subtitle);border:1px solid $(postbody.lines)} .links .relate-p{overflow:hidden;height:68px} .links .relate-p:not(:last-of-type){margin-bottom:10px} .links .related-title{max-height:40px;overflow:hidden} .links .relate-Thumb{;-webkit-border-radius:2px;border-radius:2px;width:72px;height:72px;} .rtl .links .relate-Thumb{float:right} .ltr .links .relate-Thumb{float:left} .links .related-title a{font-family:blogfont,AltFont;font-weight:700;font-size:14px;color:$(postbody.subtitle)} .links .related-title a:hover{color:$(keycolor)} .rtl .links .related-content{float:right;width:-webkit-calc(100% - 100px);width:calc(100% - 100px)} .ltr .links .related-content{float:left;width:-webkit-calc(100% - 100px);width:calc(100% - 100px)} a.r-author{color:$(related.details)} a.r-author:hover{text-decoration:underline} /* ================== * About Author * ================== */ .author-profile{margin-bottom:20px;overflow:hidden;min-height:390px;width:200px} .rtl .author-profile{border-left:1px solid $(postbody.lines);float:right;} .ltr .author-profile{border-right:1px solid $(postbody.lines);float:left;} .profile-h3{font-family:BlogFont ,AltFont;border-bottom:1px solid $(postbody.lines);margin-bottom:20px;color:$(postbody.subtitle);padding-bottom:10px;font-size:19px} .rtl .profile-h3{margin-left:20px;} .ltr .profile-h3{margin-right:20px;} .author-profile img{border:1px solid $(postbody.lines);width:-webkit-calc(100% - 20px);width:calc(100% - 20px);margin-bottom:10px;-webkit-border-radius:100%;border-radius:100%;padding:15px;display:block;} .author-profile a{display:block;text-align:center;font-family:BlogFont ,AltFont;color:$(related.links);font-weight:700;margin-bottom:5px;font-size:18px} .rtl .author-profile a{margin-left:20px;} .ltr .author-profile a{margin-right:20px;} .author-profile a:hover{color:$keycolor} .author-profile span[itemprop="description"]{display:block;font-family:BlogFont ,AltFont;color:$(postbody.details);font-size:12px;text-align:justify} .rtl .author-profile span[itemprop="description"]{margin-left:20px} .ltr .author-profile span[itemprop="description"]{margin-right:20px} /* ================== * Comments * ================== */ .c-icons{border-bottom:1px solid $(postbody.lines);width:100%;height:50px;-webkit-border-radius:3px;border-radius:3px;} .rtl .c-icons{text-align:left} .ltr .c-icons{text-align:right} .c-icons h3{margin-top:13px;font-family:BlogFont,AltFont;font-size:25px;color:$(postbody.subtitle)} .rtl .c-icons h3{float:right;} .ltr .c-icons h3{float:left;} .c-icons span{margin-top:9px;-webkit-border-radius:3px;border-radius:3px;margin-right:5px;font-family:BlogFont,AltFont;cursor:pointer;font-size:14px;display:inline-block;vertical-align:top;width:91px;height:30px;background:$(comm.back) url(https://3.bp.blogspot.com/-OPew1v1hjO4/VqpIpESmS7I/AAAAAAAAAvM/v3oxGsnBVd0/s1600-r/comments.png) no-repeat} .fbc{background-position:center -2px!important} .blo{background-position:center -36px!important} .dsq{background-position:center -70px!important} .plus{background-position:center -104px!important} .ico-act.blo{background-color:#FF9534!important} .ico-act.fbc{background-color:#3b5998!important} .ico-act.dsq{background-color:#2E9FFF!important} .ico-act.plus{background-color:#DD4E42!important} #comments{display:none} .Blogger-Comments #comments{display:block} .tab-cont{display:none} .cmt_iframe_holder,.cmt_iframe_holder iframe{width:100%!important;display:block!important} .tab-active{padding:20px 0;display:block} .comment{margin-bottom:10px;border:1px solid $(postbody.lines);padding:30px;overflow:hidden} .thread-toggle{display:none} .comment-header{border-bottom:1px solid $(postbody.lines);padding-bottom:25px;margin-bottom:10px} .rtl .avatar-image-container{float:right;margin-left:20px} .ltr .avatar-image-container{float:left;margin-right:20px} .avatar-image-container img{border:5px solid $(postbody.lines);width:50px;height:50px;-webkit-border-radius:3px;border-radius:3px} cite.user{font-family:BlogFont,AltFont;font-style:normal;color:$(postbody.text);font-size:18px;font-weight:700;display:block} cite.user a{color:$(postbody.text);display:block} cite.user a:hover{color:$keycolor} .datetime a{font-family:AltFont;color:$(postbody.details);font-size:12px;margin-top:5px;display:block} .datetime a:hover{text-decoration:underline} .comment-content{font-family:PostFont,AltFont;color:$(postbody.text);text-align:justify;line-height:1.5em;font-size:14px} .comment-actions,.continue{display:block;text-align:left;overflow:hidden;margin-bottom:20px} .comment-actions a,.continue a,.loadmore a{font-family:PostFont,AltFont;color:$(postbody.text);background-color:$(postbody.lines);padding:5px 20px;-webkit-border-radius:2px;border-radius:2px;margin:0 10px} .rtl .comment-actions a,.continue a,.loadmore a{float:left;} .ltr .comment-actions a,.continue a,.loadmore a{float:right;} .comment-actions a:hover,.continue a:hover,.loadmore a:hover{background-color:$keycolor;color:#FFF} .loadmore a{margin:20px 0} #bc_0_5L{overflow:hidden} p.comment-msg{font-family:blogFont,AltFont;font-size:15px;font-weight:700;color:$(postbody.details);margin-bottom:10px} p.comment-msg:before{font-family:fontawesome;display:inline-block;vertical-align:middle;color:$keycolor} .rtl p.comment-msg:before{content:"\f0a5";margin-left:10px} .ltr p.comment-msg:before{content:"\f0a4";margin-right:10px} /* ================== * ShortCodes * ================== */ /* ====== Messages ====== */ .sh-msg{font-style:normal;padding:20px 20px;display:block!important;clear:both;line-height:1.5em;-webkit-border-radius:3px;border-radius:3px;border:2px solid rgba(0,0,0,0.05);color:#FFF;font-weight:700;text-align:justify;text-shadow:1px 1px 2px rgba(0,0,0,0.1)} .sh-msg:before{content:"\f05a";display:inline-block;padding-left:20px;font-family:fontawesome;font-size:44px;vertical-align:middle;font-weight:400} .rtl .sh-msg:before{padding-left:20px} .ltr .sh-msg:before{padding-right:20px} .sh-msg.short-info{background-color:#80E4EC} .sh-msg.short-error{background-color:#FF8585} .sh-msg.short-success{background-color:#50DA79} .sh-msg.short-warning{background-color:#ECD152} /* ====== Contact Form ====== */ #ContactForm2{display:none} .post-body #ContactForm2{display:block} .rtl .inside-contact .contact-form-name{margin-left:1%} .ltr .inside-contact .contact-form-email{margin-left:1%} .rtl .inside-contact input[type='text']{float:right;width:49.5%} .ltr .inside-contact input[type='text']{float:left;width:49.5%} .rtl .inside-contact input[type='text'],.rtl .inside-contact textarea{direction:rtl} .ltr .inside-contact input[type='text'],.ltr .inside-contact textarea{direction:ltr} .inside-contact input[type='text'],.inside-contact textarea{border:1px solid $(postbody.lines);padding:10px 20px;-webkit-border-radius:3px;border-radius:3px;margin-bottom:5px;color:$(postbody.text);font-size:14px;font-family:PostFont,AltFont!important;resize:vertical} .inside-contact textarea{display:block;width:100%} .inside-contact input[type='text']:focus,.inside-contact textarea:focus{border:1px solid $keycolor} .contact-buttons{float:left} .contact-buttons *{display:inline-block;background-color:#eee;color:#666;padding:12px 0;-webkit-border-radius:3px;border-radius:3px;font-family:BlogFont,AltFont!important;font-weight:700;cursor:pointer;width:100px;text-align:center;font-size:16px;border:2px solid #ddd;outline:none} #ContactForm2 .contact-form-button-submit:hover{border:2px solid #37a96d;background-color:#4cd08b} .cancel-button:hover{border:2px solid #9c3030;background-color:#bf4545} .contact-buttons *:hover{color:#FFF} .inside-contact{margin-bottom:20px} .contact-message{float:right;margin-top:10px} .contact-message p{font-family:PostFont,AltFont!important;font-size:12px;color:$(postbody.text)} .contact-message p img{float:right;vertical-align:-3px;margin:6px 0 0 10px;padding:0;border:0} .contact-message p img{float:right;vertical-align:-3px;margin:6px 0 0 10px;padding:0;border:0} /* ====== Accordion ====== */ .accordion .acor-title{background-color:$(postbody.lines);color:$(postbody.text);padding:10px 20px;position:relative;cursor:pointer;height:50px;font-weight:700} .accordion .acor-content{width:100%;max-height:0;padding:0 20px;margin-bottom:10px;text-align:right;display:block;overflow:hidden} .accordion .acor-title:after{content:"\f055";font-family:fontawesome;position:absolute;font-size:30px;top:8px;color:rgba(0,0,0,0.2);font-weight:400} .rtl .accordion .acor-title:after{left:20px} .ltr .accordion .acor-title:after{right:20px} h6.acor-title-active:after{content:"\f056"} div.acor-content.acor-active{max-height:1000px;padding:20px} h6.acor-title-active{background-color:$keycolor} /* ====== Buttons ====== */ .ibtn{-webkit-border-radius:5px;border-radius:5px;display:inline-block;vertical-align:top;font-weight:700;margin:5px;border:1px solid rgba(0,0,0,0.05);-webkit-transition:.2s ease-out;-o-transition:.2s ease-out;transition:.2s ease-out;-webkit-box-shadow:0 -20px 75px 0 rgba(0,0,0,0.2) inset;box-shadow:0 -20px 75px 0 rgba(0,0,0,0.2) inset;text-shadow:1px 1px 0 rgba(0,0,0,0.1);font-family:BlogFont ,AltFont!important} .ibtn:hover{-webkit-box-shadow:0 -20px 75px 0 rgba(0,0,0,0.25) inset;box-shadow:0 -20px 75px 0 rgba(0,0,0,0.25) inset} .ibtn-1{padding:10px 15px;font-size:16px} .ibtn-2{padding:10px 25px;font-size:17px} .ibtn-3{padding:15px 30px;font-size:20px} .ibtn-4{padding:20px 35px;font-size:24px} .iDown:before{content:"\f0ed";font-family:fontawesome;display:inline-block;vertical-align:top} .rtl .iDown:before{padding-left:10px} .ltr .iDown:before{padding-right:10px} .iDown.ibtn-1:before{font-size:24px} .iDown.ibtn-2:before{font-size:25px} .iDown.ibtn-3:before{font-size:28px;font-size:31px} .iPrev:before{content:"\f002";font-family:fontawesome;display:inline-block;vertical-align:top} .rtl .iPrev:before{padding-left:10px} .ltr .iPrev:before{padding-right:10px} .iPrev.ibtn-1:before{font-size:20px} .iPrev.ibtn-2:before{font-size:25px} .iPrev.ibtn-3:before{font-size:28px;font-size:31px} /* ====== Slider ====== */ .post-body .slider{clear:both;margin:20px auto;width:100%;display:none} .post-body .owl-carousel .owl-item{height:100%} .post-body .slider a{display:block;position:relative;direction:rtl} .post-body .slider-cover a{height:auto} .post-body .slider .owl-dot{display:inline-block;width:20px;height:20px;vertical-align:top;margin:0 3px} .post-body .slider .owl-dot span{display:block;width:100%;height:100%;background-color:$(postbody.lines);-webkit-border-radius:100%;border-radius:100%;border:5px solid #FFF;-webkit-box-shadow:0 0 6px -3px #000;box-shadow:0 0 6px -3px #000} .post-body .slider img{width:100%;min-height:100%;padding:0;border:none;border-radius:2px;} .post-body .slider .owl-nav div{z-index:5;display:block;font-family:fontawesome!important;text-align:center;-webkit-border-radius:2px;border-radius:2px;font-weight:700} .post-body .slider-cover .owl-item a:after,.slider-cover .owl-item div:after{content:attr(title);position:absolute;width:100%;bottom:0;display:block;z-index:2;color:#FFF;font-family:PostFont ,AltFont!important;background:-webkit-gradient(linear,left top,left bottom,from(transparent),to(#000));background:-webkit-linear-gradient(transparent,#000 100%);background:-webkit-gradient(linear,left top, left bottom,from(transparent),to(#000));background:-o-linear-gradient(transparent,#000 100%);background:linear-gradient(transparent,#000 100%);padding:30px} .slider-cover .owl-item{padding:0} .slider-cover .owl-dots{position:absolute;top:20px;right:30px} .post-body .slider-cover .owl-dot span{background-color:rgba(255,255,255,0.1);border:5px solid rgba(255,255,255,0.1)} .slider-cover .owl-dot.active span{border:5px solid #fff} .slider-cover .owl-nav div{background-color:rgba(0,0,0,0.7);color:#FFF;width:40px;height:40px;top:20px;font-size:30px;line-height:37px;position:absolute;} .slider-cover .owl-next{left:65px} .slider-cover .owl-prev{left:20px} .slider-cover .owl-nav div:hover{background-color:$keycolor} .slider-carousel a{height:auto} .slider-carousel[data-items='2'] .owl-stage{height:250px;overflow:hidden} .slider-carousel[data-items='3'] .owl-stage{height:200px;overflow:hidden} .slider-carousel[data-items='4'] .owl-stage{height:150px;overflow:hidden} .slider-carousel .owl-item div, .slider-carousel .owl-item a, .slider-carousel .owl-item img{width:100%;display:block;height:100%} .slider-carousel .owl-item a,.slider-carousel .owl-item div{position:relative} .slider-carousel .owl-item a:after,.slider-carousel .owl-item div:after{content:attr(title);position:absolute;width:100%;bottom:0;display:block;z-index:2;color:#FFF;font-family:PostFont ,AltFont!important;background:-webkit-gradient(linear,left top,left bottom,from(transparent),to(#000));background:-webkit-linear-gradient(transparent,#000 100%);background:-webkit-gradient(linear,left top, left bottom,from(transparent),to(#000));background:-o-linear-gradient(transparent,#000 100%);background:linear-gradient(transparent,#000 100%);line-height:1.5;overflow:hidden;font-size:14px;font-weight:700;text-align:right;padding:20px 15px} .slider-carousel .owl-dots{float:right;margin-top:20px;margin-right:10px;text-align:center;direction:rtl} .slider-carousel{width:102%;margin-right:-1%} .slider-carousel .owl-dot span{background-color:$(wrapper);border:5px solid #FFF} .slider-carousel .owl-dot.active span{background-color:$keycolor;border:3px solid #FFF} .slider-carousel .owl-nav div:hover{background-color:$keycolor;color:#FFF} .slider-carousel .owl-next{left:15px} .slider-carousel .owl-prev{left:10px} .slider-carousel .owl-nav div{background-color:$(postbody.lines);color:$keycolor;width:30px;height:30px;top:10px;font-size:26px;float:left;line-height:31px;position:relative} /* ====== Programmers Codes ====== */ .s-code::-webkit-scrollbar{height:10px} .s-code::-webkit-scrollbar-track{-webkit-border-radius:100px;border-radius:100px} .s-code::-webkit-scrollbar-thumb{background-color:#444;-webkit-border-radius:100px;border-radius:100px} .s-code.t-HTML::-webkit-scrollbar-thumb:hover{background-color:#2AA4DA} .s-code.t-CSS::-webkit-scrollbar-thumb:hover{background-color:#0A9E6A} .s-code.t-JAVASCRIPT::-webkit-scrollbar-thumb:hover{background-color:#B58A33} .s-code.t-CODE::-webkit-scrollbar-thumb:hover{background-color:#CCC} .s-code{background-color:#222;clear:both;display:block;direction:ltr;width:100%;-webkit-border-radius:3px;border-radius:3px;overflow:hidden} .s-code:hover{overflow-x:scroll} .t-code{display:table-cell;vertical-align:top;width:100%;margin:0;white-space:normal} .t-code code{display:block;color:#ccc;font-size:14px;font-family:monospace!important;height:30px;padding:7px 20px;white-space:nowrap} .t-code code:nth-of-type(odd){background-color:#151515} .l-code{display:table-cell;vertical-align:top;min-width:40px;-webkit-user-select:none;-moz-user-select:none;-o-user-select:none;-ms-user-select:none;user-select:none} .l-code em{display:block;font-style:normal;color:#fff;text-align:center;font-family:sans-serif!important;height:30px;line-height:1;padding-top:7px} .l-code em:nth-of-type(odd){background-color:rgba(255,255,255,0.1)} .s-code:before{display:table-caption;width:100%;padding:0 20px;font-family:monospace;font-size:24px;height:50px;padding-top:10px;font-weight:700} .t-HTML .l-code{background-color:#2AA4DA} .t-CSS .l-code{background-color:#0A9E6A} .t-JAVASCRIPT .l-code{background-color:#B58A33} .t-CODE .l-code{background-color:#444} .s-code.t-HTML:before{content:"< HTML >";border-bottom:2px solid #2AA4DA;color:#2AA4DA} .s-code.t-CSS:before{content:"< CSS >";border-bottom:2px solid #0A9E6A;color:#0A9E6A} .s-code.t-JAVASCRIPT:before{content:"< JAVASCRIPT >";border-bottom:2px solid #B58A33;color:#B58A33} .s-code.t-CODE:before{content:"< CODE >";border-bottom:2px solid #999;color:#999} /* ==================== * Archive Page * ==================== */ .rtl .ArchivePage .Ar-Category{padding-right:60px;-webkit-border-radius:0 100px 100px 0;border-radius:0 100px 100px 0;border-left:5px solid $keycolor} .ltr .ArchivePage .Ar-Category{padding-left:60px;-webkit-border-radius:100px 10px 10px 100px;border-radius:100px 10px 10px 100px;border-right:5px solid $keycolor} .ArchivePage .Ar-Category{display:block;font-size:20px;font-family:BlogFont,AltFont!important;font-weight:700;margin-top:20px;background-color:$(postbody.lines);padding:5px 30px;margin-bottom:10px;height:40px;position:relative;line-height:1.5em} .Ar-Category:before{font-family:fontawesome;font-size:14px;display:inline-block;color:#fff;content:"\f02c";font-weight:400;background-color:$keycolor;width:40px;height:40px;position:absolute;text-align:center;padding-top:6px;top:0;font-size:17px} .rtl .Ar-Category:before{-webkit-border-radius:0 100px 100px 0;border-radius:0 100px 100px 0} .ltr .Ar-Category:before{-webkit-border-radius:100px 0 0 100px;border-radius:100px 0 0 100px} .rtl .Ar-Category:before{right:0;} .ltr .Ar-Category:before{left:0;} .arch-link{display:block;font-size:14px} /* ================== * Print Style * ================== */ @media print { #HeaderTop,#HeaderMid,#HeaderBot,#Intro,.I-toggle,aside,.share,.author-profile,.related-h3,.related-posts,#blog-pager,#HTML106,#LinkList104,#HTML201,#HTML202,#HTML203,.mobile .mobile-pager,.mobile .share,.SettBox,footer,#copyrights{display:none!important} .article-title,.post-details{text-align:center!important} body{background:#FFF} .mainWrapper{-webkit-box-shadow:none;box-shadow:none;} .post-body blockquote{-webkit-print-color-adjust: exact;} header{margin-top:0!important} main{width:100% !important;float:none!important;border:none!important;padding:0!important} .mainWrapper{width:100%!important;max-width:5000px!important} } /* ===================== * Responsive [Custom] * ===================== */ .resp-it{overflow:visible!important;position:absolute;width:200px;background-color:$(menu.back);top:100px;z-index:5;padding:20px;-webkit-border-radius:3px;border-radius:3px;right:25px;display:none} .rtl .resp-it{right:15px} .ltr .resp-it{left:15px} .resp-it li{width:100%;float:none;display:block;text-align:center;float:right;margin-left:5px} #LinkList101 .menu-active .ma>a{margin-top:0;background-color:transparent;color:$(menu.link.color);-webkit-border-radius:0!important;border-radius:0!important;border-bottom:1px dashed $(menu.link.color)} #LinkList101 .menu-active .ma>a:hover{background:none!important;border-bottom:1px dashed $keycolor;color:$(menu.hover.back)!important} .resp-it:before{content:"";border-right:20px solid transparent;border-left:20px solid transparent;border-bottom:20px solid $(menu.back);position:absolute;top:-17px;right:-webkit-calc(50% - 20px);right:calc(50% - 20px)} .show-bt{display:block!important} .mobile .post-outer:last-of-type{padding-bottom:0;border-bottom:0} .mobile .m-Nav{font-family:BlogFont,AltFont;padding:8px 10px;width:50%;color:#999} .mobile-older{float:left;text-align:left;border-right:1px solid #EEE} .mobile .m-Nav p{font-family:BlogFont,AltFont;font-size:16px;font-weight:700;color:#999} .mobile .m-Nav span{font-size:13px;color:#ccc} .mobile-newer{float:right} .desktop-disp{line-height:normal;width:200px;background-color:$keycolor;color:#FFF;padding:10px 0;display:block;margin:20px auto;text-align:center;font-family:BlogFont,AltFont;font-size:19px;-webkit-border-radius:3px;border-radius:3px;border-bottom:5px solid rgba(0,0,0,0.1)} .desktop-disp:before{content:"\f108";font-family:fontawesome;font-size:40px;display:block} .mobile .article-title{margin-top:20px} .mobile-post-outer{border-bottom:1px solid $(post.lines);padding:20px 0} .index-thumb{display:table-cell;padding:5px;vertical-align:top;border:1px solid $(post.lines);height:100px;width:100px} .index-thumb span{display:block;width:100%;height:100%;-webkit-background-size:cover!important;background-size:cover!important;background-position:center center!important} .rtl .mobile-post-details{display:table-cell;vertical-align:top;padding-right:20px} .ltr .mobile-post-details{display:table-cell;vertical-align:top;padding-left:20px} .mobile-index-title a{font-family:BlogFont,AltFont;color:$(post.title);display:block;font-size:19px;line-height:1.2;margin-bottom:5px} .mobile-post-snippet{font-family:BlogFont,AltFont;color:$(post.details);font-size:14px;text-align:justify;display:block} .mobile main,.mobile aside{display:block;border:0;float:none;width:100%;clear:both;border:0;padding:0 30px;margin:0} .mobile .item-thumbnail{width:72px;height:72px;position:relative;margin-bottom:0} .mobile.rtl .item-thumbnail{float:right;margin-left:20px} .mobile.ltr .item-thumbnail{float:left;margin-right:20px} .mobile .item-title a{display:block;font-size:14px} .mobile #HTML109{margin-top:20px} @media screen and (max-width :1100px) { body .container #Header1{margin-bottom:20px;float:none;display:block;width:100%;text-align:center;vertical-align:top} #Header1_headerimg{display:block;height:auto;width:auto;margin:0 auto 20px} #HTML100{display:block;vertical-align:top;width:100%;min-height:auto} } @media screen and (max-width :1024px) { body .mainWrapper{width:100%} } @media screen and (max-width :900px) { .res-butt1,.res-butt2{display:block} aside .widget{vertical-align:top;width:-webkit-calc(50% - 10px);width:calc(50% - 10px);margin-bottom:20px} .rtl aside .widget{float:right} .ltr aside .widget{float:left} .rtl aside .widget:nth-of-type(odd){margin-left:20px} .ltr aside .widget:nth-of-type(odd){margin-right:20px} #LinkList102 a{width:100px} .rtl #PageList1{width:50px;float:right} .ltr #PageList1{width:50px;float:left} #PageList1 ul{background-color:$(top.back);position:absolute;max-width:220px;min-width:150px;text-align:center;top:60px;-webkit-border-radius:3px;border-radius:3px;padding:20px;z-index:3;display:none} .rtl #PageList1 ul{right:-20px} .ltr #PageList1 ul{left:-20px} #PageList1 ul:before{border-bottom:10px solid $(top.back)} #PageList1 li a:after{display:none} #PageList1 ul:before{content:"";border-right:10px solid transparent;border-left:10px solid transparent;position:absolute;top:-9px} #PageList1 ul:before{content:"";border-right:10px solid transparent;border-left:10px solid transparent;position:absolute;top:-9px} .rtl #PageList1 ul:before{right:25px} .ltr #PageList1 ul:before{left:25px} #PageList1 li a:after{display:none} #PageList1 li a{font-weight:700;-webkit-border-radius:3px;border-radius:3px;margin:0 0 5px} #PageList1 li{display:block} body .container main,body .container aside{border:0;float:none;width:100%;clear:both;border:0;padding:0 30px;margin:0} .ma.subed ul:before{display:none} #LinkList102{text-align:center} #LinkList100{margin-bottom:10px;max-width:-webkit-calc(100% - 50px);max-width:calc(100% - 50px);overflow:hidden} #HeaderMid{display:block} #LinkList101>ul{overflow:visible;position:absolute;width:200px;background-color:$(menu.back);z-index:3;padding:20px;-webkit-border-radius:3px;border-radius:3px;display:none} .menu-1 #LinkList101>ul{top:90px} .menu-2 #LinkList101>ul{top:60px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px} .rtl.menu-2 #LinkList101>ul{right:90px;left:90px} .menu-2 #LinkList101>ul:before{display:none} .rtl.menu-1 #LinkList101>ul{right:15px} .ltr.menu-1 #LinkList101>ul{left:15px} #LinkList101>ul>li{width:100%;float:none;display:block;text-align:center;float:right;margin-left:5px} #LinkList101>ul:before{content:"";border-right:20px solid transparent;border-left:20px solid transparent;border-bottom:20px solid $(menu.back);position:absolute;top:-17px;right:-webkit-calc(50% - 20px);right:calc(50% - 20px)} #LinkList101 .ma.subed>ul{position:relative;top:0;right:0;opacity:1;-webkit-border-radius:0;border-radius:0;width:100%;background-color:$(menu.link.back);overflow:hidden;padding:0;display:block;max-height:100%;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)} .menu-2 #LinkList101>ul>li>a{padding:10px 20px} } @media screen and (max-width :768px) { .share h7{float:none;clear:both;display:block;width:100%;margin-bottom:10px;text-align:center} .author-profile{border:1px solid $(postbody.lines)} body .container .related-posts.links{padding:0;border:none} .rtl .author-profile a{text-align:right} .ltr .author-profile a{text-align:left} .ltr .author-profile img{margin-right:20px} .rtl .author-profile img{margin-left:20px} body .container .profile-h3,body .container .author-profile a,body .container .author-profile span[itemprop="description"]{margin-left:0;margin-right:0} .rtl .related-posts.slider{margin-right:0} } @media screen and (max-width:640px) { body .container #LinkList104{float:none;margin:0 auto 10px;text-align:center;clear:both} .c-site{display:block!important;float:none!important;margin:0!important} .c-right{padding-top:15px;text-align:center} body .container .share h7{clear:both;width:100%;float:none;display:block} body .container .share a,body .container .fb-like.fb_iframe_widget,body .container .plus-one{display:inline-block;float:none;margin:10px auto 0} .share{text-align:center;direction:ltr} .fb-like.fb_iframe_widget:after{text-indent:-30px} #HTML140{display:block;margin-left:0;text-align:center;margin-bottom:10px} #HTML140 p{display:inline-block;width:-webkit-calc(100% - 190px);width:calc(100% - 190px)} .c-icons{height:auto;border:0} body .container .c-icons{text-align:initial} body .container .c-icons h3{border-bottom:1px solid $(postbody.lines);display:block;float:none;clear:both;margin-bottom:10px} .c-icons span:first-of-type{margin-left:0} .comment{padding:20px} } @media screen and (min-width :385px) and (max-width : 480px) { .rtl #LinkList102 a:nth-of-type(even){margin-left:4%} .ltr #LinkList102 a:nth-of-type(even){margin-right:4%} .rtl #LinkList102 a:nth-of-type(3n){margin-left:0} .ltr #LinkList102 a:nth-of-type(3n){margin-right:0} } @media screen and (max-width :480px) { aside .widget{display:block;vertical-align:top;width:100%;margin:0 0 20px} #HeaderTop,#HeaderMid,body .container main,body .container aside,#copyrights,.f-cols{padding-left:20px;padding-right:20px} #int-one,#int-two,#HeaderBot #LinkList101{margin-left:20px;margin-right:20px} .popular-posts li{width:100%;margin:0 0 10px!important;float:none;height:auto} #f-row .email{padding:0 20px} .rtl #ContactForm1{right:-webkit-calc(50% - 100px);right:calc(50% - 100px)} .ltr #ContactForm1{left:-webkit-calc(50% - 100px);left:calc(50% - 100px)} body .container .inside-contact input[type='text']{float:none;margin-left:0;width:100%} } @media screen and (max-width :320px) { #HeaderTop,#HeaderMid,body .container main,body .container aside,#copyrights,.f-cols{padding-left:10px;padding-right:10px} #int-one,#int-two,#HeaderBot #LinkList101{margin-left:10px;margin-right:10px} .menu-2 #LinkList101>ul{right:20px} .index-thumb{display:block;margin-bottom:20px;width:100%;height:150px} body .container .mobile-post-details{padding-right:0;padding-left:0} #f-row{padding:20px 10px} body .container #HTML140 p{margin:10px 0} body .container #Blog1 .author-profile{padding:10px} .post-body blockquote{margin:5px 0} .ltr .author-profile img{margin-right:10px} .rtl .author-profile img{margin-left:10px} .comment{padding:10px} } @media screen and (max-width :240px) { .t-search.fa,.search-form{display:none} #LinkList100{margin-top:-50px} #HeaderTop,#HeaderMid,body .container main,body .container aside,#copyrights{padding-left:10px;padding-right:10px} #int-one,#int-two,#LinkList101{margin-left:10px;margin-right:10px} } /* ===================== * Error Page * ===================== */ .error{text-align:center;position:absolute;top:-webkit-calc(50% - 137.5px);top:calc(50% - 137.5px);left:-webkit-calc(50% - 180px);left:calc(50% - 180px)} .fa-bolt{background-color:$keycolor;font-size:80px!important;width:100px;height:100px;-webkit-border-radius:100%;border-radius:100%;padding:10px;color:#FFF} .error span{display:block;font-family:blogfont,AltFont;font-size:40px;margin-top:20px;color:$keycolor;font-weight:700} .error p{font-family:blogfont,AltFont;font-size:22px;color:$(post.title)} .error a{background-color:$(post.lines);color:$(post.details);font-family:blogfont,AltFont;margin:10px auto;padding:10px 20px;display:block;-webkit-border-radius:3px;border-radius:3px;width:170px;font-size:19px} .error a:hover{background-color:$keycolor;color:#fff} /* ===================== * Owner Styles * ===================== */ ]]>
salmankhanafridi122
<h1 align="center">Hi 👋, I'm HACKER-MSK</h1> <h3 align="center">DREAM TO BECOME A TRILLION LIVE IN HELL</h3> <p align="left"> <img src="https://komarev.com/ghpvc/?username=HACKER-MSK&label=Profile%20views&color=0e75b6&style=flat" alt="HACKER-MSK" /> </p> <p align="left"> <a href="https://github.com/ryo-ma/github-profile-trophy"><img src="https://github-profile-trophy.vercel.app/?username=HACKER-MSK" alt="HACKER-MSK" /></a> </p> - 🔭 I’m currenty working on my Facebook cloning projects **Facebook Cloning** - 👨💻 All of my projects are available at [https://github.com/HACKER-MSK](https://github.com/HACKER-MSK) - 📫 How to reach me **https://www.facebook.com/HACKER-MSK - 📄 Know about my experiences [https://www.facebook.com/HACKER-MSK ](https://www.facebook.com/HACKER-MSK) - ⚡ Fun fact **I think I am mad** <h3 align="left">Connect with me:</h3> <p align="left"> <a href="https://fb.com/HACKER-MSK" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/facebook.svg" alt="HACKER-MSK" height="30" width="40" /></a> <a href="https://instagram.com/HACKER-MSK" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/instagram.svg" alt="HACKER-MSK" height="30" width="40" /></a> </p> <h3 align="left">Languages and Tools:</h3> <p align="left"> <a href="https://developer.android.com" target="_blank"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/android/android-original-wordmark.svg" alt="android" width="40" height="40"/> </a> <a href="https://golang.org" target="_blank"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/go/go-original.svg" alt="go" width="40" height="40"/> </a> <a href="https://www.linux.org/" target="_blank"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/linux/linux-original.svg" alt="linux" width="40" height="40"/> </a> <a href="https://www.python.org" target="_blank"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/python/python-original.svg" alt="python" width="40" height="40"/> </a> <a href="https://unity.com/" target="_blank"> <img src="https://www.vectorlogo.zone/logos/unity3d/unity3d-icon.svg" alt="unity" width="40" height="40"/> </a> </p> <p><img align="left" src="https://github-readme-stats.vercel.app/api/top-langs?username=HACKER-MSK&show_icons=true&locale=en&layout=compact" alt="HACKER-MSK" /></p> <p> <img align="center" src="https://github-readme-stats.vercel.app/api?username=HACKER-MSK&show_icons=true&locale=en" alt="HACKER-MSK" /></p> <p><img align="center" src="https://github-readme-streak-stas.herokuapp.com/?user=HACKER-MSK&" alt="HACKER-MSK" /></p>
jinchengliu
88.gif No 9 YouTube Transition [786 stars on Github] Watch a video on the right corner like Youtube iOS app, written in Swift 3. 99.gif No 10 Twicket Segmented Control [680 stars on Github] Custom UISegmentedControl replacement for iOS, written in Swift. 10.gif Pop up UI No 11 SCLAlertView-Swift [3056 stars on Github] Beautiful animated Alert View written in Swift. 11.png No 12 SwiftMessages [1356 stars on Github] Very flexible alert messages written in Swift. 12.png No 13 XLActionController [1346 stars on Github] Fully customizable and extensible action sheet controller written in Swift 3. 13.png No 14 Popover [852 stars on Github] Balloon pop up library like Facebook app, written in pure swift. 14.png No 15 Presentr [635 stars on Github] Wrapper for custom ViewController presentations. 15.png Feed UI No 16 FoldingCell [4285 stars on Github] An expanding content cell inspired by folding paper material. 16.gif No 17 ExpandingCollection [2425 stars on Github] A card peek/pop controller. 17.gif No 18 DGElasticPullToRefresh [2308 stars on Github] Elastic pull to refresh component written in Swift. 18.gif No 19 Persei [2269 stars on Github] Animated top menu for UITableView / UICollectionView / UIScrollView written in Swift . 19.gif No 20 IGListKit [2443 stars on Github] A data-driven UICollectionView framework for building fast and flexible lists—Instagram Engineering. 20.png No 21 PullToMakeSoup [1301 stars on Github] Custom animated pull-to-refresh that can be easily added to UIScrollView. 21.gif No 22 DZNEmptyDataSet [6552 stars on Github] Empty State UI Library. 22.png No 23 Instructions [2256 stars on Github] Create walkthroughs and guided tours in Swift. 23.png No 24 Presentation [1680 stars on Github] Make tutorials, release notes and animated pages. 24.gif Color UI No 25 Chameleon [7071 stars on Github] Flat Color Framework for Swift Developers. 25.png No 26 Hue [1612 stars on Github] All-in-one coloring utility that you’ll ever need to write in Swift. 26.png No 27 DynamicColor [1310 stars on Github] Extension to manipulate colors easily in Swift. 27.png Image UI No 28. FaceAware [1424 stars on Github] An extension that gives UIImageView the ability to focus on faces within an image when using AspectFill. 28.png No 29. ComplimentaryGradientView [384 stars on Github] Create complementary gradients generated from dominant and prominent colors in supplied image. 29.png Graph UI No 30. Charts [11433 stars on Github] Beautiful charts for iOS built in Swift . 30.png No 31. Scrollable-GraphView [3065 stars on Github] An adaptive scrollable graph view for iOS to visualize simple discrete datasets. Written in Swift. 31.gif Icon UI No 32. Paper Switch [1849 stars on Github] RAMPaperSwitch is a Swift module which paints over the parent view when the switch is turned on. 32.gif No 33. Circle Menu [1768 stars on Github] A simple, elegant menu with a circular layout. 33.gif Schedule UI No 34. JTAppleCalendar [1026 stars on Github] The Unofficial Swift Apple Calendar Library. View. Control. for iOS & tvOS . 34.gif No 35. DateTimePicker [455 stars on Github] A nicer iOS UI component for picking date and time . 35.png Form UI No 36 Eureka [4117 stars on Github] Elegant iOS form builder in Swift . 36.png Layout UI No 37 Neon [3439 stars on Github] A powerful Swift programmatic UI layout framework for iPhone & iPad . 37.png Message UI No 38 NMessenger [1492 stars on Github] A fast, lightweight messenger component built on AsyncDisplaykit and written in Swift. 38.png Search UI No 39 Reel-search [1364 stars on Github] A search controller that allows you to choose options from a list. 39.gif 搜索CocoaChina微信公众号:CocoaChina 微信扫一扫 订阅每日移动开发及APP推广热点资讯 公众号:CocoaChina 我要投稿 收藏文章 分享到: 21 上一篇:iOS端数据库解决方案分析 下一篇:ReactiveCocoa核心元素与信号流 相关资讯 [译]百里挑一:21个优质Swift开源App 服务端 Swift - Vapor 篇 (一) iOS Charts 集成步骤 Swift和Objective-C混编的注意啦 iOS 10 Day by Day 1:开发 Message 的第三方插件 iOS 开源一个简单的订餐App UI框架 iOS国际化教程 Xcode8/Swift3 入坑笔记 我的高仿Bilibili项目成长之路 iOS 如何随意的穿插跳跃,push来pop去 我来说两句 发表评论 所有评论(21) KnightGuo刚刚 mark 0 0 回复 Mr张刚刚 以后慢慢看。。 1 0 回复 Vanquisher刚刚 mark 0 0 回复 baoyewei99刚刚 swift github开源库 mark 0 0 回复 上善若氺刚刚 Mark 0 0 回复 Su_刚刚 mark 0 0 回复 jasonyuan1986刚刚 mark 0 0 回复 davie刚刚 mark 0 0 回复 Fairly嘿咻刚刚 make 0 0 回复 张一二刚刚 mark 0 0 回复 undeadsun刚刚 mark 1 1 回复 SCQuiet刚刚 mark 0 0 回复 jswift刚刚 给大家推荐一本书籍<iOS自定义控件剖析>吧 , 入门的iOS开发者强烈推荐一定要看看, 可惜不是我写的, 良心作者, 帮宣传一下 书籍介绍: http://www.jianshu.com/p/510500f3aebd 书籍购买: http://www.qingdan.us/product/13 2 0 回复 ycru88刚刚 mark 0 0 回复 lgypaopao刚刚 mark 0 0 回复 followme勇闯天涯刚刚 mark 0 0 回复 DreamFlyingCow刚刚 mark 0 0 回复 dpc3231分钟前 mark 0 0 回复 aibugu10分钟前 mark mark 0 0 回复 aibugu10分钟前 ma 0 0 回复 更多评论 热门资讯 iOS-图文表并茂,手把手教你GCD iOS-图文表并茂,手把手教你GCD 点击量6654 一个iOS模块化开发解决方案 一个iOS模块化开发解决方案 点击量6002 苹果MBP接口太超前 理想主义总要付点代价 苹果MBP接口太超前 理想主义总要付点代价 点击量5926 一触即发:MacBook Pro全新阵容亮相 一触即发:MacBook Pro全新阵容亮相 点击量5567 如何优化 App 的启动时间 如何优化 App 的启动时间 点击量5190 iOS开发系列--App扩展开发 iOS开发系列--App扩展开发 点击量4396 微信小程序的想象力与不可想象域 微信小程序的想象力与不可想象域 点击量3874 迭代器模式(Java与IOS) 迭代器模式(Java与IOS) 点击量3744 2016年末闲谈iOS开发的未来 2016年末闲谈iOS开发的未来 点击量3055 他与全新 MacBook Pro 的一天 他与全新 MacBook Pro 的一天 点击量3023 综合评论 不错 rachaelvvv评论了从源码看runLoop 很详细,不错哦 哎宝儿评论了iOS播放远程网络音乐的核心技术点... mark KnightGuo评论了39个优秀的Swift UI开源库 star平均数... 这个文章非常好, 说的很详细,学习了, 感谢大神分析。 JonorZhang评论了使用xib开发界面 mark _ontheway评论了为视图添加丝滑的水波纹... 以后慢慢看。。 Mr张评论了39个优秀的Swift UI开源库 star平均数... 我是iOS的 很很简单的道理 这个社会你沟通不行 基本废了一大半 以后怎么跟同事配合交流啊 吹牛逼你都不会 那干什么你能行 hanxiao评论了一个纯技术程序员的求职心酸历程... mark Vanquisher评论了39个优秀的Swift UI开源库 star平均数... mark Xue_e评论了Xcode基本操作 swift github开源库 mark baoyewei99评论了39个优秀的Swift UI开源库 star平均数... 相关帖子 分享一个使用APICloud云数据库已上线的商城APP 使用UIImagePickerController录像后,用AudioQueue录音声音变得很小 听说搞IOS开发的单身汪很多? 草花机五星宏辉编单技巧┤ ┣黑红梅方五星宏辉实战技巧┤ 调用 高分辨率时ESRI ArcGIS Desktop 10.4.1.5686 内存泄露检测步骤 如何成为app store的推荐app
kangpcode
<!--- dhaffnavyz/dhaffnavyz is a ✨ special ✨ reposis file) pitory because its `README.md` (thpears on your GitHub profile. You can click the Preview link to take a look at your changes. ---> <details> <summary>Emmmm...<b></b></summary><br/> <p align='center'><a href="https://api.daily.dev/get?r=.github"><img src="https://telegra.ph/file/3f8b2987e6b010c467dd6.png?r=82s" width="150" alt="LulzGhost-Team BOT's Dev Card"/></a></p>   </details> <details> <summary><b>CLICK HERE 😝</b></summary><br/> <h1 align='center'> Welcome To dhaffnavyz 🗿 </h1> <p align='center'><a href="https://api.daily.dev/get?r=.github"><img src="https://api.daily.dev/devcards/f863db015cc04215878268bea4ef43f5.png?r=82s" width="150" alt="LulzGhost-Team BOT's Dev Card"/></a></p> <p align='center'><a href="https://www.dmca.com/Protection/Status.aspx?ID=090f6134-5e5e-46fd-a879-b366b9a65060&refurl=https://github.com/.github" target="_blank" title="Check Protection Status" class="dmca-badge"> <img src ="https://dmca.blob.core.windows.net/logos/internal/PP-Asset-6c307ca5-01f5-4171-afcf-da6dbeaa2494.jpg?st=2019-03-02T00%3A22%3A29Z&se=2028-03-03T00%3A22%3A00Z&sp=rw&sv=2018-03-28&sr=c&sig=5uj40e0WkJN4jO9efLP3CKvstLnc2LG%2BqWfMC6U4Ou0%3D" alt="DMCA.com for Github" /></a></p> <a href="https://api.daily.dev/get?r=.github"><img src="https://opencollective.com/vuejs/contributors.svg?width=900" /></a> <p align='center'> <a href="https://api.daily.dev/get?r=.github"><img height="200" src="https://raw.githubusercontent.com/dhaffnavyz/dhaffnavyz/main/root.svg"></a> <p align='center'> I'm dhaffnavyz (21 y.o) ! :sunglasses: </p> <img width="800px" src="https://raw.githubusercontent.com/dhaffnavyz/dhaffnavyz/main/Black%20Purple%20and%20Cyan%20Neon%20Noir%20%20Vaporwave%20Sports%20YouTube%20Outro.gif" /> <p align='center'> I'd like to do project that has relation to anime. :ghost: </p> </p>  </p> </details> <p align="center"> <img src="https://komarev.com/ghpvc/?username=dhaffnavyz&label=VIEWS&style=flat-square&color=blue" /> </p> <p align='center'> <a href="https://www.facebook.com/ciciyber.squadindo.7"><img height="100" src="https://raw.githubusercontent.com/dhaffnavyz/dhaffnavyz/64478fa6dc44f9aa505ca49d384375946107db89/speed.svg"></a></p> <p align='center'> <details> <summary>🏆 <b>GitHub Awards</b></summary><br/>  </details> :page_with_curl: I'm currently learning: - Python - PHP - Golang - HTML - JAVA - C++ - Javascript </p> <details> :star: Here are some projects that I'm working on: <p align='center'><a href="https://api.daily.dev/get?r=.github"><img src="https://telegra.ph/file/1262431c0967ddfb566b2.png?r=82s" width="150" alt="LulzGhost-Team BOT's Dev Card"/></a></p> ## Start <!--START_SECTION:waka--> <p align="center" height='130px'> <img src="https://github-readme-stats.vercel.app/api?username=dhaffnavyz&show_icons=true&hide_title=true&include_all_commits=true&line_height=21&bg_color=0,64FFDA,64FFDA,A9EFDE,F2FFFC&count_public=true&theme=graywhite" alt="crazychickendev"/> <img src="https://github-readme-stats.vercel.app/api/top-langs/?username=dhaffnavyz&layout=compact&show_icons=true&bg_color=0,EFFDF9,CBFFF3,64FFDA&theme=graywhite&hide_title=true" alt="root"/> </p> <p align="center"> <img src="https://github-readme-streak-stats.herokuapp.com/?user=dhaffnavyz"> </p> </details> <!--END_SECTION:waka--> <!-- -->
woltzar
<h1 align="center">Stratos Validator kurulum rehberi :atom_symbol:</h1>  # Stratos Türkiye Telegram grubu: [Stratos Türkiye](https://t.me/StratosTurkish) ## Sistem gereksinimleri: ``` 8GB RAM 160 GB SSD 4 vCPU ``` <h1 align="center">Validator kurulumu:</h1> ## root yetkisi: ``` sudo su ``` ## root dizinine gidiyoruz: ``` cd /root ``` ## Sistem güncellemesi: ``` sudo apt update && sudo apt upgrade -y ``` ## Kütüphane kurulumu: ``` sudo apt install make clang pkg-config libssl-dev build-essential git jq ncdu bsdmainutils -y < "/dev/null" ``` ## Binary dosya kurulumu: ``` cd $HOME wget https://github.com/stratosnet/stratos-chain/releases/download/v0.8.0/stchaind ``` ## stchaind ``` md5sum stchain* ``` ### :point_right: Komutu girdikten sonra görselde ki gibi çıktı alıcaksınız  ## Binary dosyalarına execute yetkisi verelim ``` chmod +x stchaind ``` ## Altta ki komutu girdikten sonra görselde ki gibi çıktı alıyoruz. ``` ls ``` ### Sizde sadece schaind yazması yeterli, sui ve stratos-chain yazmayacak.  ## Go kurulumu * go version yazdığınızda 1.16+ üstü sürüm olmalı, genelde 1.18 çıkar. ``` wget -O go1.18.2.linux-amd64.tar.gz https://golang.org/dl/go1.18.2.linux-amd64.tar.gz rm -rf /usr/local/go && tar -C /usr/local -xzf go1.18.2.linux-amd64.tar.gz && rm go1.18.2.linux-amd64.tar.gz echo 'export GOROOT=/usr/local/go' >> $HOME/.bash_profile echo 'export GOPATH=$HOME/go' >> $HOME/.bash_profile echo 'export GO111MODULE=on' >> $HOME/.bash_profile echo 'export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin' >> $HOME/.bash_profile && . $HOME/.bash_profile go version go mod tidy ``` ## Source code ile binary dosyayı derliyoruz. ``` git clone https://github.com/stratosnet/stratos-chain.git cd stratos-chain git checkout v0.8.0 make build ``` #### :point_right: Hata alırsanız * Hata almazsanız bunları girmenıze gerek yok. (yüksek ihtimal hata almayacaksınız) ``` go mod tidy sudo apt update make build ``` ## Binary dosyalarını $GOPATH/bin dizinine yüklüyoruz: ``` cd ~/stratos-chain make install ``` ## initialize işlemi yapıyoruz. * :point_right: Node Name kısmını kendi validator isminizi girin :point_left: ``` cd $HOME ./stchaind init NodeName ``` ## genesis.json ve config.toml dosyalarını indiriyoruz: ``` wget https://raw.githubusercontent.com/stratosnet/stratos-chain-testnet/main/genesis.json wget https://raw.githubusercontent.com/stratosnet/stratos-chain-testnet/main/config.toml ``` ## addrbook.json dosyasını indiriyoruz: ``` wget -O $HOME/.stchaind/config/addrbook.json "https://github.com/mmc6185/node-testnets/blob/main/stratos/stratos-tropos-4/addrbook.json?raw=true" ``` ## genesis.json ve config.toml dosyalarını .stchaind/config/ dizini altına taşıma işlemi: ``` mv config.toml $HOME/.stchaind/config/ mv genesis.json $HOME/.stchaind/config/ ``` ## servis dosyası : ``` echo "[Unit] Description=Stratos Node After=network.target [Service] User=$USER Type=simple ExecStart=$(which stchaind) start Restart=on-failure LimitNOFILE=65535 [Install] WantedBy=multi-user.target" > $HOME/stratosd.service sudo mv $HOME/stratosd.service /etc/systemd/system sudo tee <<EOF >/dev/null /etc/systemd/journald.conf Storage=persistent EOF ``` ## servisimizi aktifleştiriyoruz: ``` sudo systemctl restart systemd-journald sudo systemctl daemon-reload sudo systemctl enable stratosd sudo systemctl restart stratosd ``` ## Node'umuzun loglarına bakıyoruz. * Görselde ki gibi loglar akıcak, 1-2-3 diye başlıyacak sizde. ``` journalctl -u stratosd -f ```  ## Şimdi explorere gidiyoruz: [explorer linki](https://big-dipper-tropos.thestratos.org/) * Sol üstte Latest Block yazıcak, güncel blok orası. * Birazdan false çıktısı komutunu gireceğiz * False çıktınız true yazacak, false olması için güncel bloğa gelmesi gerekiyor, örnek: * Eşleşmesi max 30-60 dakika arası sürer. ``` status 2>&1 | jq .SyncInfo ```  ## Şimdi o eşleşirken biz cüzdan oluşturalım: * WalletName kısmını kendı cüzdan adınız yapın! * Çıkan bilgileri not edin en altta 12 kelımenız olacak o da dahil. ``` stchaind keys add --hd-path "m/44'/606'/0'/0/0" --keyring-backend test WalletName ``` ## Faucetten token alalım * WalletAdres kısmını kaldırın ve cüzdan adresinizi yazın, tırnakları kaldırmayın! ``` curl --header "Content-Type: application/json" --request POST --data '{"denom":"ustos","address":"walletAddress"} ' https://faucet-tropos.thestratos.org/credit ``` ## Bakalım tokenler gelmişmi * st1400.. kısmına kendi cüzdan adresinizi yazın ``` stchaind query bank balances st1400f6e4kes5sk0ltfz8ms74ga9wzd9dulchh5q ```  ## Validator oluşturma * NodeName kısmına validator ismimizi girin! * WalletAddres kısmına cüzdan adınızı girin! ``` stchaind tx staking create-validator \ --amount=100000000ustos \ --pubkey=$(stchaind tendermint show-validator) \ --moniker="NodeName" \ --chain-id=tropos-4 --keyring-backend=test --gas=auto -y \ --commission-rate=0.10 \ --commission-max-rate=0.20 \ --commission-max-change-rate=0.01 \ --min-self-delegation=1 \ --from=walletAddress \ --gas=auto -y ``` ## Explorerde kendimizi kontrol edelim:  # Stratos Türkiye Telegram grubu: [Stratos Türkiye](https://t.me/StratosTurkish) ## Reach out to me <a href="https://twitter.com/Ruesandora0" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/twitter.svg" alt="zaferayan" height="30" width="40" /></a> <a href="https://medium.com/@ruesandora" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/medium.svg" alt="@zaferayan" height="30" width="40" /></a> <a href="https://www.youtube.com/c/RuesYouTube" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/youtube.svg" alt="uc1vykhlufpaoghrwhjikrqg" height="30" width="40" /></a> <br /> <p align="left"> <img src="https://komarev.com/ghpvc/?username=ruesandora&label=Profile%20views&color=0e75b6&style=flat" alt="ruesandora" /> <a href="https://twitter.com/ruesandora0" target="blank"><img src="https://img.shields.io/twitter/follow/ruesandora0?logo=twitter&style=for-the-badge" alt="ruesandora0" /></a> <img src="https://github-readme-stats.vercel.app/api?username=ruesandora&show_icons=true&theme=highcontrast" align="right" width="450" height="350" >
Xhack1ng
<p align="left"> <img src="https://user-images.githubusercontent.com/5679180/79618120-0daffb80-80be-11ea-819e-d2b0fa904d07.gif" width="27px"> </p> ## 👋 Hi, I'm Jorge Buzeti :computer: ------------ <img align='right' src='https://user-images.githubusercontent.com/5713670/87202985-820dcb80-c2b6-11ea-9f56-7ec461c497c3.gif' width='200"'> #### I am Full Stack Dev, Linux lover, Passionate about technology and entrepreneurship, student of the entire programming ecosystem and CyberSecurity. # 👨💻 Languages and Tools: <div align="center"> [](https://www.javascript.com/) [](https://reactjs.org/) [](https://reactnative.dev/) [](https://nextjs.org/) [](https://www.typescriptlang.org/) [](https://nodejs.org/) [](https://developer.mozilla.org/pt-BR/docs/Web/HTML/HTML5) [](https://developer.mozilla.org/en-US/docs/Web/CSS) [](https://git-scm.com/) [](https://www.kernel.org/doc/html/latest/) </div> ```js const Contacts = { 👨💻Linkedin: "linkedin.com/in/jorgebuzeti", 📒Email: "jobuzetiuol123@gmail.com", } ``` <p align="center"> <img src="https://github-readme-stats.vercel.app/api?username=R3tr074&show_icons=true&title_color=fff&icon_color=00d9ff&text_color=c9d1d9&bg_color=161b22" alt="R3tr074" /> <img src="https://github-readme-stats.vercel.app/api/top-langs/?username=R3tr074&layout=compact&show_icons=true&title_color=fff&icon_color=fff&text_color=c9d1d9&bg_color=161b22&hide=elixir" alt="Top langs" /> </p> ### ☕ Get In Touch [](https://www.linkedin.com/in/jorgebuzeti/) [](mailto:jobuzetiuol123@gmail.com) [](https://www.hackthebox.eu/profile/380585) ⭐️ From [R3tr0 (Jorge Buzeti)](https://github.com/R3tr074)
COVID has certainly changed the dynamics of the IT industry. As a businessman, one needs to cohere to the latest UI UX trends. UI/UX trends are altered based on the varying taste of the user. A user visits thousands of websites every day and as a businessman, everyone is trying to grab the attention of the visitor. Standing out from the competitors is hard to crack nowadays. The online platform that grabs the attention is the one that scores the game. A good design surely adds value and makes your customers visit you again. Though, the design is changing all the time. Each year, UI trends change, new features are introduced, and out-dated versions lose their way. So, you need to stay updated and keep your business up to date as well. In this article, we study the latest UI/UX trends that help you in your business growth. So let's dive into What is UI/UX? UI/UX is becoming a popular term and it’s also becoming better known in the industry. UX or User Experience essentially understands the customer their needs and designing an experience for the customer according to that which covers various aspects such as tech, such as understanding needs, what they see, what they experience with all their senses is what user experience is all about. A user experience with your site is known as User Experience. A UX/UI Designer is responsible for creating user-friendly interfaces and helps the clients to better understand the use of technological products UI or user interface is one part of the user experience, it’s one of the touch points the customer interfaces with, that is what they see and that’s what they touch now there is on touch devices or if it’s a computer then it’s something that you use online but that interface that communicated the brand or the service to the customer is the user interface and because that is a very important way or the very useful way to communicate with the customer, it plays a huge role in the communication of the service or the product to the customer. User Experience/ User Interface Design Trends Minimalism If we talk in terms of Design, then less is always more, a golden rule of website design. Limiting the number of colors, trying different proportions and compositions are good. It's because an average user sees many discount ads and gets constant notifications and the designer always try to simplify the way they present information. Simplified UX Avoid inserting extra steps which users found non-mandatory. Try to minimize the elements. Now the latest UX is Simplified registration and sign-in. Users don't want to remember extra passwords, so making use of their phone number as a password is a bit simplified. If you can omit unnecessary steps, do it. If you can omit some fields in the form, do it. Blurred, colorful background User Interface design helps to make the website more stylish, elegant, and eye-soothing. In earlier use, 2-3 colors in linear gradients were in trend but now it goes up to 10. In short, an overlay is trending now. However, you need to be careful while playing with the gradients. Neomorphism Neomorphism is gaining popularity because of its subtle yet original appearance that merges skeuomorphism with flat design. At present, the main purpose of products is to produce different user interface items utilizing geomorphic. Unique and absurd 2D illustrations 2D illustrations contribute to several aspects of design in production, including Environment design, Prop design, PreVis design, drawers, clean-up, rotations, and color design. Illustrations stay on top of user interface trends. It is getting fancier with time. The picture quality is in SVG format because like other formats such as PNG, GIF, and JPEG the picture quality is damaged when we increase the screen resolution and this is not the issue in SVG format. Because the vector format can be increased and decreased with no loss in quality. (VUI )Voice User Interface Users may use voice commands to engage with a UI or to talk. A voice-activated interface prevents consumers from using the interface. UX design teams compete with the latest upgrades and advances in this industry more than ever before. VUI is widely used in apps for translation. It hears in your language and translates into the language you want. ALEXA, SIRI is the best example of a voice user interface. With VUI you can easily communicate with people who do not know your language. Mobile-first approach Never ignore mobile accessibility as almost a 5.27billion people use a mobile phone and the chances of using social media platforms are 90%. So what if you ignore mobile visibility and more focus on the desktop appearance of your website? In this case, you lose a large amount of audience from your end. So always use the mobile approach in mind and create and design your website accordingly. Icons Icons are generally visually expressing objects, actions, and ideas. To communicate with the user we need different UI/UX. There are different picture representations of icons that are visually appealing. Conveying meaning in less space and creative ways is more powerful. Choose icons from the same family as they are the same size. It is also vital to understand that not all UX design trends are required for a product or website. The usefulness could only be complicated. We would rather keep up with the trends and only use them if they match the needs of your users and are likely to be working for your company. Synopsis: In 2021, design is something less complicated, more diverse, delightful, and satisfactory. Make sure you adhere to all these trends for reaching out to the million customers out there. Hope these trends are helpful for you to know where we stand in UI/UX nowadays. UI/UX design is to help users achieve their goals. Always ensure the design is relevant and valuable for consumers.
SodhanaLibrary
HTML5 - jQuery Plugin change flat icons color
auxio
A flat color icon pack for Sentora
childthemes
WordPress plugin based on Icons8 Flat Color Icons to use in WP Editor or direct img src with generator.
ENG-mohammad-Ashraf
This project is a modern Flat-Design web interface focused on clarity, simplicity, and smooth user experience. It features clean layouts, balanced spacing, intuitive icons, and a professional color palette. The design is responsive, fast, and visually engaging—perfect for showcasing skills in UI/UX and front-end development.
OzzyOzmen
<h1 align="center">Hi 👋, I'm Özmen Çelik</h1> <h3 align="center">I am a software developer</h3> <p align="left"> <img src="https://komarev.com/ghpvc/?username=ozzyozmen&label=Profile%20views&color=0e75b6&style=flat" alt="ozzyozmen" /> </p> <p align="left"> <a href="https://github.com/ryo-ma/github-profile-trophy"><img src="https://github-profile-trophy.vercel.app/?username=ozzyozmen" alt="ozzyozmen" /></a> </p> - 🔭 I’m currently working on [MicroServiceProject](https://github.com/OzzyOzmen/MicroServiceProject) - 👨💻 All of my projects are available at [https://www.linkedin.com/in/ozmencelik/](https://www.linkedin.com/in/ozmencelik/) - 📫 How to reach me **https://www.linkedin.com/in/ozmencelik/** <h3 align="left">Connect with me:</h3> <p align="left"> <a href="https://linkedin.com/in/ozmencelik" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/linked-in-alt.svg" alt="ozmencelik" height="30" width="40" /></a> <a href="https://stackoverflow.com/users/ozzy-ozmen-celik" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/stack-overflow.svg" alt="ozzy-ozmen-celik" height="30" width="40" /></a> <a href="https://www.youtube.com/c/ozzyozmencelik" target="blank"><img align="center" src="https://raw.githubusercontent.com/rahuldkjain/github-profile-readme-generator/master/src/images/icons/Social/youtube.svg" alt="ozzyozmencelik" height="30" width="40" /></a> </p> <h3 align="left">Languages and Tools:</h3> <p align="left"> <a href="https://www.w3schools.com/cs/" target="_blank" rel="noreferrer"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/csharp/csharp-original.svg" alt="csharp" width="40" height="40"/> </a> <a href="https://www.w3schools.com/css/" target="_blank" rel="noreferrer"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/css3/css3-original-wordmark.svg" alt="css3" width="40" height="40"/> </a> <a href="https://dotnet.microsoft.com/" target="_blank" rel="noreferrer"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/dot-net/dot-net-original-wordmark.svg" alt="dotnet" width="40" height="40"/> </a> <a href="https://flutter.dev" target="_blank" rel="noreferrer"> <img src="https://www.vectorlogo.zone/logos/flutterio/flutterio-icon.svg" alt="flutter" width="40" height="40"/> </a> <a href="https://www.w3.org/html/" target="_blank" rel="noreferrer"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/html5/html5-original-wordmark.svg" alt="html5" width="40" height="40"/> </a> <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript" target="_blank" rel="noreferrer"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/javascript/javascript-original.svg" alt="javascript" width="40" height="40"/> </a> <a href="https://www.linux.org/" target="_blank" rel="noreferrer"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/linux/linux-original.svg" alt="linux" width="40" height="40"/> </a> <a href="https://www.microsoft.com/en-us/sql-server" target="_blank" rel="noreferrer"> <img src="https://www.svgrepo.com/show/303229/microsoft-sql-server-logo.svg" alt="mssql" width="40" height="40"/> </a> <a href="https://www.photoshop.com/en" target="_blank" rel="noreferrer"> <img src="https://raw.githubusercontent.com/devicons/devicon/master/icons/photoshop/photoshop-line.svg" alt="photoshop" width="40" height="40"/> </a> <a href="https://postman.com" target="_blank" rel="noreferrer"> <img src="https://www.vectorlogo.zone/logos/getpostman/getpostman-icon.svg" alt="postman" width="40" height="40"/> </a> <a href="https://www.sketch.com/" target="_blank" rel="noreferrer"> <img src="https://www.vectorlogo.zone/logos/sketchapp/sketchapp-icon.svg" alt="sketch" width="40" height="40"/> </a> <a href="https://unity.com/" target="_blank" rel="noreferrer"> <img src="https://www.vectorlogo.zone/logos/unity3d/unity3d-icon.svg" alt="unity" width="40" height="40"/> </a> <a href="https://www.adobe.com/products/xd.html" target="_blank" rel="noreferrer"> <img src="https://cdn.worldvectorlogo.com/logos/adobe-xd.svg" alt="xd" width="40" height="40"/> </a> </p> <h3 align="left">Support:</h3> <p><a href="https://www.buymeacoffee.com/ozmencelik"> <img align="left" src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" height="50" width="210" alt="ozmencelik" /></a></p><br><br> <p><img align="left" src="https://github-readme-stats.vercel.app/api/top-langs?username=ozzyozmen&show_icons=true&locale=en&layout=compact" alt="ozzyozmen" /></p> <p> <img align="center" src="https://github-readme-stats.vercel.app/api?username=ozzyozmen&show_icons=true&locale=en" alt="ozzyozmen" /></p> <p><img align="center" src="https://github-readme-streak-stats.herokuapp.com/?user=ozzyozmen&" alt="ozzyozmen" /></p>
walthow
flat-color-icons
2947721120
https://icons8.com/c/flat-color-icons
teamapps-org
Icons8 Flat Color Icon Provider
ruslang02
A Node.js library for comfortable embedding Icons8 into web application
srinivas-dasari
HTML5-jquery plugin tto convert flat icons color
tibols
upload wallpaper for flat color icon pack
goescat
Flat and soft color icon pack theme
anonymousxptdr360
A simple JS tool to remove flat backgrounds from logos and icons without AI, using color-distance processing.
LeanSpaceOC
Example of an flat design HTML SVG icon with a hover css effect showing a linear gradient color.