Skip to content

Commit

Permalink
added more features
Browse files Browse the repository at this point in the history
  • Loading branch information
jacky-p committed Jun 1, 2024
1 parent d8dcb37 commit eccc3b2
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
4 changes: 4 additions & 0 deletions hw1/hw1Style.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ body {
font-family: Geneva;
}

.sections label:hover {
background-color: rgba(128, 128, 128, 0.488);
}

.sections input[type="radio"] {
display: none;
}
Expand Down
4 changes: 4 additions & 0 deletions hw2/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ hr {
color: hsl(217, 100%, 20%);
}

.mytabs label:hover {
background-color: rgba(128, 128, 128, 0.488);
}

.mytabs .tab {
width: 100%;
padding: 90px;
Expand Down
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<body>
<h1 align="center">CS184/284A Project & Homework Webpages</h1>
<div class="des">
<h3>Jacqueline Perez, Spring 2024</h3>
<p>
Linked are the Webpage Reports for Projects and Homeworks for CS 184: Computer Graphics and Imaging.
Consisting of both indivial and partnered work on the assignments, while the writeup webpages were styled by myself.
Expand Down
15 changes: 10 additions & 5 deletions styler.css
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
body {
text-align: center;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background-color: aliceblue;
background-image: linear-gradient(aliceblue, rgb(168, 148, 177))
}
h1 {
padding-top: 30px;
color: rgb(158, 119, 176);
font-size: 50px;
font-weight: 100px;
}
h3 {
font-size: 25px;
}
.des {
margin: auto;
width: 1000px;
padding-bottom: 30px;

}
.bar {
Expand All @@ -20,13 +24,14 @@ h1 {
align-items: center;
justify-content: space-between;
top: 0px;
background-color: rgb(170, 140, 183);
background-color: rgba(170, 140, 183, 0.582);
background-blend-mode: darken;
color:white;
padding: auto;
max-width: 100%;
margin: auto;
width: 600px;
border-radius: 30px;

}

Expand All @@ -43,15 +48,15 @@ a {
}

a:visited {
color: hsl(163, 87%, 26%);
color: hsl(205, 34%, 51%);
}

a:hover {
color: rgb(9, 55, 145);
color: rgb(79, 6, 111);
}

a:active {
color: hsl(163, 87%, 26%);
color: white;
}

.wpList li {
Expand Down

0 comments on commit eccc3b2

Please sign in to comment.