Skip to content

Commit

Permalink
changed
Browse files Browse the repository at this point in the history
  • Loading branch information
Shrutibansal22 committed Oct 13, 2024
1 parent d85f175 commit c0659cb
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions terms.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");

:root {
--bg-clr: #d19cd9; /* Changed to a new color */
--bg-clr: #d19cd9;
--white: #fff;
--primary-text-clr: #333; /* Updated text color */
--secondary-text-clr: #8c8c8c; /* Kept as is */
--bg-hvr: #b67dc8; /* Updated hover color */
--primary-text-clr: #333;
--secondary-text-clr: #8c8c8c;
--bg-hvr: #b67dc8;
}

* {
Expand All @@ -16,9 +16,9 @@
}

body {
background-color: #f9f9f9; /* Updated background color */
background-color: #f9f9f9;
font-size: 12px;
color: #333; /* Updated text color */
color: #333;
}

.flex_align_justify {
Expand All @@ -41,8 +41,8 @@ body {
width: 800px;
max-width: 100%;
height: 650px;
background: white; /* Changed to white */
border-radius: 10px; /* Updated border radius */
background: white;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

Expand All @@ -53,13 +53,13 @@ body {
.terms_service .tc_head {
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
height: 90px;
border-bottom: 2px solid var(--bg-clr); /* Updated border color */
border-bottom: 2px solid var(--bg-clr);
}

.terms_service .tc_head .icon {
width: 50px;
height: 50px;
background: var(--bg-clr); /* Updated background color */
background: var(--bg-clr);
margin-right: 20px;
border-radius: 50%;
font-size: 18px;
Expand All @@ -78,7 +78,7 @@ body {

.terms_service .tc_body ol li h3 {
margin-bottom: 5px;
color: var(--bg-clr); /* Updated text color */
color: var(--bg-clr);
}

.terms_service .tc_foot {
Expand All @@ -89,20 +89,20 @@ body {

.terms_service .tc_foot button {
width: 100%;
border: 1px solid var(--bg-clr); /* Updated border color */
border: 1px solid var(--bg-clr);
padding: 10px 20px;
border-radius: 3px;
cursor: pointer;
transition: all 0.5s ease;
background-color: var(--bg-clr); /* Updated background color */
color: var(--white); /* Updated text color */
background-color: var(--bg-clr);
color: var(--white);
}

.txt h3 {
color: rgb(219, 127, 219); /* Updated color */
color: rgb(219, 127, 219);
font-size: larger;
}

.footer {
background-color: rgba(0, 0, 0, 0.05); /* Kept as is */
background-color: rgba(0, 0, 0, 0.05);
}

0 comments on commit c0659cb

Please sign in to comment.