Skip to content

Commit

Permalink
Merge pull request #24 from aidan-yip/v2.0.0
Browse files Browse the repository at this point in the history
Adjusted page style
  • Loading branch information
aidan-yip committed May 23, 2024
2 parents 37f9b79 + dd89e4f commit 75b0b85
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
13 changes: 11 additions & 2 deletions dark_mode.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@
}

#icon {
box-shadow: 0px 0px 10px #eaeaea3b;
border-radius: 67px;
background: linear-gradient(145deg, #282828, #212121);
box-shadow: 11px 11px 22px #131313, -11px -11px 22px #373737;
}

#temperature {
Expand All @@ -43,7 +45,14 @@
}

input[type="text"] {
color: #0a78ff;
border-radius: 35px;
background: linear-gradient(145deg, #282828, #212121);
box-shadow: 12px 12px 24px #131313, -12px -12px 24px #373737;
}

button {
background: linear-gradient(145deg, #005dc1, #0a88ff);
box-shadow: 12px 12px 24px #131313, -12px -12px 24px #373737;
}

#clock {
Expand Down
11 changes: 7 additions & 4 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,9 @@ h1,
width: 130px;
height: 130px;
margin-left: 30px;
background-color: #ffffff;
border-radius: 100px;
box-shadow: 0px 0px 10px #1919193b;
border-radius: 50%;
background: linear-gradient(145deg, #e6e6e6, #ffffff);
box-shadow: 12px 12px 24px #bfbfbf, -12px -12px 24px #ffffff;
}

div span.md {
Expand Down Expand Up @@ -219,21 +219,24 @@ input[type="text"] {
color: #0a78ff;
font-size: 20px;
font-family: var(--fontdefault);
background: linear-gradient(145deg, #e6e6e6, #ffffff);
box-shadow: 12px 12px 24px #bfbfbf, -12px -12px 24px #ffffff;
}

button {
width: 90%;
margin: 0 auto;
margin-top: 5px;
margin-bottom: 10px;
background-color: #007bff;
color: #ffffff;
border: none;
font-size: 20px;
border-radius: 35px;
padding: 20px 40px;
cursor: pointer;
font-family: var(--fontdefault);
background: linear-gradient(145deg, #006fe6, #0084ff);
box-shadow: 12px 12px 24px #adadad, -12px -12px 24px #ffffff;
}

.weather-info {
Expand Down

0 comments on commit 75b0b85

Please sign in to comment.