Skip to content

Commit

Permalink
Merge branch 'TusharKesarwani:main' into corona-tracker-ui
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashutoshbind15 authored Jul 26, 2023
2 parents a075d25 + 4aff29f commit b426bbd
Show file tree
Hide file tree
Showing 437 changed files with 33,895 additions and 1,131 deletions.
77 changes: 77 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
schedule:
- cron: '43 3 * * 6'

jobs:
analyze:
name: Analyze
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
# Use only 'java' to analyze code written in Java, Kotlin or both
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

steps:
- name: Checkout repository
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality


# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
236 changes: 126 additions & 110 deletions Projects/3D Login Page/style.css
Original file line number Diff line number Diff line change
@@ -1,111 +1,127 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
font-family: Arial, sans-serif;
}

html {
font-size: 72.5%;
}

.container {
width: 100%;
height: 100vh;
background: linear-gradient(rgba(31, 7, 7, 0.7), rgba(0, 0, 0, 0.7)),
url(images/bg.png) center no-repeat;
background-size: cover;
perspective: 100rem;
}

.forms-wrapper {
transform-style: preserve-3d;
position: absolute;
top: calc(50% - 17.5rem);
left: calc(50% - 25rem);
transform: rotateY(10deg);
transition: transform 0.5s, left 0.5s;
}

.forms-wrapper.change {
transform: rotateY(70deg);
left: calc(50% + 25rem);
}

.forms-wrapper form {
width: 50rem;
height: 35rem;
background-color: rgba(40, 114, 108, 0.925);
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
box-shadow: 0.1rem 0.1rem 0.1rem #ccc inset, -0.1rem -0.1rem 0.1rem #ccc inset;
position: absolute;
}

.signup-form {
transform: rotateY(270deg) translateZ(25rem) translateX(-25rem);
}

form a {
position: absolute;
top: 2rem;
background-color: #fff;
font-weight: 600;
text-transform: uppercase;
color: rgba(40, 114, 108);
letter-spacing: 0.2rem;
}

.signup-btn {
left: 2rem;
padding: 0.5rem 1rem 0.5rem 3rem;
border-radius: 100% 0.5rem 0.5rem 100%;
}

.signin-btn {
right: 2rem;
padding: 0.5rem 3rem 0.5rem 1rem;
border-radius: 0.5rem 100% 100% 0.5rem;
}

form h2 {
font-size: 2.3rem;
text-transform: uppercase;
letter-spacing: 0.2rem;
color: #fff;
}

.inputs-wrapper {
display: flex;
flex-direction: column;
}

.inputs-wrapper input {
width: 25rem;
height: 3rem;
padding: 0.5rem 1rem;
margin: 0.5rem 0;
background-color: transparent;
border: 0.1rem solid #fff;
border-radius: 5rem;
color: #fff;
letter-spacing: 0.1rem;
outline: none;
}

.inputs-wrapper input::placeholder {
color: #fff;
font-weight: 300;
}

.inputs-wrapper input[type="submit"] {
background-color: #fff;
color: rgba(40, 114, 108);
font-weight: 900;
text-transform: uppercase;
cursor: pointer;
}

margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
font-family: Arial, sans-serif;
}

html {
font-size: 72.5%;
}

.container {
width: 100%;
height: 100vh;
background: linear-gradient(rgba(31, 7, 7, 0.7), rgba(0, 0, 0, 0.7)),
url(images/bg.png) center no-repeat;
background-size: cover;
perspective: 100rem;
}

.forms-wrapper {
transform-style: preserve-3d;
position: absolute;
top: calc(50% - 17.5rem);
left: calc(50% - 25rem);
transform: rotateY(10deg);
transition: transform 0.5s, left 0.5s;
}

.forms-wrapper.change {
transform: rotateY(70deg);
left: calc(50% + 25rem);
}

.forms-wrapper form {
width: 50rem;
height: 35rem;
background-color: rgba(40, 114, 108, 0.925);
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
box-shadow: 0.1rem 0.1rem 0.1rem #ccc inset, -0.1rem -0.1rem 0.1rem #ccc inset;
position: absolute;
}

.signup-form {
transform: rotateY(270deg) translateZ(25rem) translateX(-25rem);
}

form a {
position: absolute;
top: 2rem;
background-color: #fff;
font-weight: 600;
text-transform: uppercase;
color: rgba(40, 114, 108);
letter-spacing: 0.2rem;
}

.signup-btn {
left: 2rem;
padding: 0.5rem 1rem 0.5rem 3rem;
border-radius: 100% 0.5rem 0.5rem 100%;
transition: background-color 0.3s;
}

.signup-btn:hover {
background-color: rgba(255, 255, 255, 0.8);
}

.signin-btn {
right: 2rem;
padding: 0.5rem 3rem 0.5rem 1rem;
border-radius: 0.5rem 100% 100% 0.5rem;
transition: background-color 0.3s;
}

.signin-btn:hover {
background-color: rgba(255, 255, 255, 0.8);
}

form h2 {
font-size: 2.3rem;
text-transform: uppercase;
letter-spacing: 0.2rem;
color: #fff;
}

.inputs-wrapper {
display: flex;
flex-direction: column;
}

.inputs-wrapper input {
width: 25rem;
height: 3rem;
padding: 0.5rem 1rem;
margin: 0.5rem 0;
background-color: transparent;
border: 0.1rem solid #fff;
border-radius: 5rem;
color: #fff;
letter-spacing: 0.1rem;
outline: none;
}

.inputs-wrapper input::placeholder {
color: #fff;
font-weight: 300;
}

.inputs-wrapper input[type="submit"] {
background-color: #fff;
color: rgba(40, 114, 108);
font-weight: 900;
text-transform: uppercase;
cursor: pointer;
transition: background-color 0.3s;
}

.inputs-wrapper input[type="submit"]:hover {
background-color: rgba(255, 255, 255, 0.8);
}


Loading

0 comments on commit b426bbd

Please sign in to comment.