Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated padding in the Online Course Section #488

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
159 changes: 159 additions & 0 deletions utility.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
a {
color: var(--white);
text-decoration: none;
}

img {
width: 100%;
display: block;
}
html{
scroll-behavior: smooth;
}
li {
list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
padding: 0.6rem 0;
}

.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 1rem;
}

button {
outline: 0;
cursor: pointer;
}

.btn {
display: inline-block;
padding: 0.55rem;
font-weight: 600;
border: none;
margin: 3.4rem 0;
letter-spacing: 1px;
border-radius : 30px;
}

.primary-btn {
background: var(--cyan);
color: #fff;
font-weight: 400;
border-radius: 2rem;
padding: 1rem;
transition: var(--transition);
}

.primary-btn:hover {
background: #0e80aa;
}

.text {
color: var(--lightBlack);
/* padding: 0.6rem 0; */
}

.lg-text {
font-weight: 600;
font-size: 1.5rem;
}
.lg-text a{
text-transform: capitalize;
}
.lg-text a:hover{
color: #0e80aa;
}

section {
padding: 4rem 0;
}

.title {
text-transform: uppercase;
padding-top: 1rem;
padding-bottom: 1rem;
font-family: var(--Roboto);
}

.title-md h3 {
letter-spacing: 2px;
word-spacing: 2px;
font-size: 2rem;
text-align: center;
}

.title-sm h3 {
font-size: 1.5rem;
text-align: left;
}

.line {
background: var(--cyan);
height: 3px;
width: 120px;
margin: 0 auto 1.5rem auto;
}

input {
outline: 0;
width: 100%;
}

input[type="text"],
input[type="email"],
select {
width: 100%;
border: none;
color: var(--exLight);
font-size: 1rem;
padding: 5px 0px 5px 15px;
margin: 0.6rem 0;
background: transparent;
outline: 0;
border-bottom: 1.5px solid var(--exLight);
}

input::placeholder {
color: var(--exLight);
}

.submit-btn {
width: auto;
padding: 0.7rem 1rem;
background: var(--cyan);
color: #fff;
border: none;
border-radius: 20px;
display: block;
margin: 2rem auto 0 auto;
cursor: pointer;
transition: var(--transition);
font-family: var(--Roboto);
font-size: 1rem;
}

.submit-btn:hover {
background: #0e80aa;
}

.flex {
display: flex;
justify-content: center;
align-items: center;
}


/* stopping transition during resizing */

.resize-transition-stopper * {
transition: none!important;
}