Skip to content

Commit

Permalink
Update styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
ananyasoni authored Apr 20, 2024
1 parent 47c09cf commit 9bf2a9b
Showing 1 changed file with 27 additions and 11 deletions.
38 changes: 27 additions & 11 deletions styles.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/*
Ananya Shreya Soni
March 29th, 2024
Section AC TAs:
This file respresents the styling decisions for
my website. It is used for my resume page and
about me page.
about me page. The color-theme is shades of purple.
*/
body {
background-color: rgb(251, 240, 255);
Expand All @@ -22,40 +21,53 @@ p {
font-style: normal;
}

header, .button, .banner, figcaption {
header, .button, .button_hover #banner, figcaption {
text-align: center;
margin-top: auto;
margin-bottom: auto;
}

.page-title {
header > h1 {
color: rgb(91, 18, 109);
text-decoration: underline;
}

#top, #tech-stack, #education, #awards, #work-experience, #projects, #extracurricular, .page-title {
main > section {
background-color: #e5d7f6;
padding: 10px;
border-radius: 15px;
white-space: break-space;
}

.banner {
#banner {
padding: 20px;
background-color: #c09de5;
align-items: center;
justify-content: center;
gap: 5px;
display: flex;
flex-wrap: wrap;
}

.image {
width: 40%;
height: 330px;
border: 5px solid;
border-color: rgb(155, 56, 180);
}

#waka {
transform: translate(0, 6%);
}

#stats1, #stats2, #stats3, #stats4, #stats5, #wakatime, .button {
#stats1, #stats2, #stats3, #stats4, #stats5, #wakatime, .button, .button_hover {
display: inline-block;
}

#wakatime, .button {
background-color: #714ba2;
}

.button {
color: rgb(255, 255, 255);
}

Expand All @@ -65,17 +77,21 @@ header, .button, .banner, figcaption {

#wakatime {
background-position-y: center;
transform: translate(0, 10%);
}

.button {
.button, .button_hover {
text-decoration: none;
padding: 9px 20px;
font-size: 15px;
cursor: pointer;
background-position-y: top;
}

.button_hover {
background-color: #C1E1C1;
color: rgb(0, 0, 0);
}

#stats1 {
height: 400px;
width: 380px;
Expand All @@ -91,7 +107,7 @@ header, .button, .banner, figcaption {
padding: 7px;
}

#stats3, #wakatime, .button {
#stats3, #wakatime, .button, .button_hover {
border-radius: 4px;
}

Expand Down

0 comments on commit 9bf2a9b

Please sign in to comment.