Skip to content

Commit

Permalink
Update styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
13AdityaDey authored Jan 20, 2024
1 parent fe9c65d commit 910ab4b
Showing 1 changed file with 29 additions and 7 deletions.
36 changes: 29 additions & 7 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@
:root {
--primary-color: #3685fb;
--primary-color-dark: #2f73d9;
--secondary-color: #fafcff;
--text-dark: #0d213f;
--text-light: #767268;
--extra-light: #ffffff;
--foot-light:#0d213f;
--arr-light:#3685fb;
--body-light:#ffffff;
--secondary-color: #fafcff;
--text-dark: #0d213f;
--max-width: 1200px;
}

Expand All @@ -16,6 +19,24 @@
box-sizing: border-box;
}

.dark-theme{
--secondary-color: black;
--text-dark: #ffffff;
--arr-light:white;
--body-light:black;
}
#toggle{
padding: 0.75rem 2rem;
outline: none;
border: none;
font-size: 1rem;
color: var(--extra-light);
background-color: var(--primary-color);
border-radius: 5rem;
cursor: pointer;
transition: 0.3s;
}

.section__container {
max-width: var(--max-width);
margin: auto;
Expand Down Expand Up @@ -381,13 +402,13 @@ header {
background-color: var(--primary-color);
}

.section__container .gallary__container {
.gallary__container {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
height: 100vh;
width: 100vw;
margin: 0;
/* my change */
background-color: var(--secondary-color);
/* my change */
}

.image__gallary {
Expand Down Expand Up @@ -548,7 +569,8 @@ header {
padding: 0.5rem;
text-align: center;
font-size: 0.8rem;
color: var(--secondary-color);
/* color: var(--secondary-color); */
color: var(--extra-light);
border-top: 1px solid var(--text-light);
}

Expand Down

0 comments on commit 910ab4b

Please sign in to comment.