Skip to content

Commit

Permalink
Merge pull request #55 from pankaj-bind/main
Browse files Browse the repository at this point in the history
border-radius updated
  • Loading branch information
anuragverma108 authored May 10, 2024
2 parents 6e985bd + 47002dc commit 2cbfbf4
Showing 1 changed file with 16 additions and 24 deletions.
40 changes: 16 additions & 24 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -258,14 +258,15 @@ body {
.btn-primary {
background-color: var(--old-rose);
color: var(--white);
border-radius: 5px;
border-radius: var(--radius-5);
}

.btn-primary:is(:hover, :focus) { background-color: var(--chinese-violet); }

.btn-secondary {
border: 1px solid var(--old-rose);
color: var(--old-rose);
border-radius: var(--radius-5);
}

.btn-secondary:is(:hover, :focus) {
Expand Down Expand Up @@ -373,11 +374,7 @@ body {
transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus) {
color: var(--old-rose);
transform: scale(1.05);
transition: 0.3s ease-in-out;
}
.navbar-link:is(:hover, :focus) { color: var(--old-rose); }



Expand Down Expand Up @@ -406,7 +403,7 @@ body {
margin-inline: auto;
}

.hero-banner .w-100 { border-radius: 10px 30px; }
.hero-banner .w-100 { border-radius: 10px 10px; }

.hero-banner::before {
top: 30px;
Expand All @@ -427,7 +424,7 @@ body {
color: var(--chinese-violet);
font-size: 22px;
padding: 24px;
border-radius: 50%;
border-radius: 10;
transition: var(--transition-1);
animation: pulse 3s ease infinite;
}
Expand Down Expand Up @@ -497,6 +494,7 @@ body {
padding: 10px;
box-shadow: var(--shadow-3);
transition: var(--transition-1);
border-radius: var(--radius-5);
}

.benefits-card:is(:hover, :focus) .card-icon { box-shadow: none; }
Expand All @@ -520,7 +518,6 @@ body {
border-radius: var(--radius-5);
box-shadow: var(--shadow-2);
transition: var(--transition-2);
border-radius: 10px;
}

.chapter-card:is(:hover, :focus-within) { transform: translateY(-10px); }
Expand Down Expand Up @@ -579,8 +576,6 @@ body {





/*-----------------------------------*\
#PRICING
\*-----------------------------------*/
Expand All @@ -590,10 +585,11 @@ body {
background-color: var(--white);
text-align: center;
transition: var(--transition-2);
border-radius: 10px;
border-radius: var(--radius-5);
}

.pricing-card:is(:hover, :focus-within){ box-shadow: var(--shadow-4); }
.pricing-card:is(:hover, :focus-within),
.pricing-card.bundle { box-shadow: var(--shadow-4); }

.pricing-card:is(:hover, :focus-within) { transform: translateY(-10px); }

Expand Down Expand Up @@ -626,6 +622,7 @@ body {
.author .container {
display: grid;
gap: 40px;

}

.author :is(.section-subtitle, .section-title) { text-align: left; }
Expand Down Expand Up @@ -689,15 +686,16 @@ body {
.contact-form {
background-color: var(--seashell);
padding: 20px;
border-radius: var(--radius-5);
}

.input-field {
background-color: var(--white);
padding: 10px;
margin-block-end: 15px;
outline: none;
border-radius: var(--radius-5);
border-block-end: 2px solid transparent;
border-radius: 8px;
}

.input-field:focus { border-color: var(--old-rose); }
Expand All @@ -713,8 +711,8 @@ textarea.input-field {

.contact-card {
background-color: var(--seashell);
border-radius: var(--radius-5);
padding: 30px;
border-radius: 10px;
}

.contact-card .card-title {
Expand Down Expand Up @@ -749,6 +747,7 @@ textarea.input-field {
font-size: 20px;
padding: 5px;
box-shadow: var(--shadow-3);
border-radius: var(--radius-5);
transition: var(--transition-1);
}

Expand Down Expand Up @@ -835,7 +834,7 @@ textarea.input-field {
max-width: 540px;
width: 100%;
margin-inline: auto;
border-radius: 10px;
border-radius: var(--radius-5);
}

.section-text { --fs-7: 2rem; }
Expand Down Expand Up @@ -928,8 +927,6 @@ textarea.input-field {

.grid-list { grid-template-columns: 1fr 1fr; }



/**
* HERO
*/
Expand Down Expand Up @@ -1143,8 +1140,7 @@ textarea.input-field {

.contact .wrapper { grid-template-columns: 1fr 0.5fr; }

.contact-form { padding: 40px;
border-radius: 10px;}
.contact-form { padding: 40px; }

}

Expand Down Expand Up @@ -1214,10 +1210,6 @@ textarea.input-field {
justify-content: space-between;
align-items: center;
}
.footer-link:hover{
transform: scale(1.05);
transition: 0.3s ease-in-out;
}

.footer .logo { margin-block-end: 0; }

Expand Down

0 comments on commit 2cbfbf4

Please sign in to comment.