-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- standardize the indentation of the whole code. - adding .vscode settings for 2-space indentation for editor.
- Loading branch information
1 parent
3875484
commit 6d0defa
Showing
16 changed files
with
479 additions
and
285 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"editor.tabSize": 2, | ||
"editor.insertSpaces": true | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
.addMarginBottom{ | ||
margin-bottom: 5% ; | ||
.addMarginBottom { | ||
margin-bottom: 5%; | ||
} | ||
@media (min-width:321px) and (max-width:621px){ | ||
.addMarginBottom{ | ||
margin-bottom: 12% ; | ||
} | ||
|
||
@media (min-width:321px) and (max-width:621px) { | ||
.addMarginBottom { | ||
margin-bottom: 12%; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,70 +1,64 @@ | ||
body { | ||
padding: 1rem; | ||
} | ||
padding: 1rem; | ||
} | ||
|
||
.custom-card { | ||
max-width: 400px; | ||
border: 1px solid #ffffff81; | ||
box-shadow: 0 7px 20px 5px #00000088; | ||
border-radius: .7rem; | ||
backdrop-filter: blur(1px); | ||
-webkit-backdrop-filter: blur(1px); | ||
overflow: hidden; | ||
transition: .5s all; | ||
padding: 0.1rem; | ||
} | ||
|
||
|
||
.card-img-overlay { | ||
display: flex; | ||
flex-direction: column; | ||
width: 90%; | ||
padding: 1rem; | ||
backdrop-filter: blur(2px); | ||
} | ||
|
||
|
||
.card-text { | ||
margin-bottom: 1rem; | ||
font-size: 1.3rem; | ||
font-weight: 600; | ||
color: #000000; | ||
padding-left: 6rem; | ||
padding-top: 5rem; | ||
} | ||
.custom-card { | ||
max-width: 400px; | ||
border: 1px solid #ffffff81; | ||
box-shadow: 0 7px 20px 5px #00000088; | ||
border-radius: .7rem; | ||
backdrop-filter: blur(1px); | ||
-webkit-backdrop-filter: blur(1px); | ||
overflow: hidden; | ||
transition: .5s all; | ||
padding: 0.1rem; | ||
} | ||
|
||
|
||
.rhap_container { | ||
background-color: rgba(86, 78, 21, 0.613); /* Semi-transparent background */ | ||
backdrop-filter: blur(10px); | ||
padding: 1.2rem 1rem; | ||
border-radius: 5px; | ||
width: 368px; | ||
} | ||
|
||
.rhap_main-controls-button { | ||
color: #000000 ; | ||
} | ||
|
||
.rhap_time { | ||
color: #000000 ; | ||
} | ||
|
||
.rhap_progress-indicator { | ||
background-color: #000000 ; | ||
} | ||
|
||
.rhap_progress-filled { | ||
background-color: #2e2e2e ; | ||
} | ||
|
||
|
||
.custom-card:hover { | ||
border: 1px solid #ffffff; | ||
box-shadow: 0 7px 50px 10px #000000aa; | ||
transform: scale(1.09); | ||
filter: brightness(1.01); | ||
backdrop-filter: blur(0px); | ||
} | ||
|
||
|
||
.card-img-overlay { | ||
display: flex; | ||
flex-direction: column; | ||
width: 90%; | ||
padding: 1rem; | ||
backdrop-filter: blur(2px); | ||
} | ||
|
||
.card-text { | ||
margin-bottom: 1rem; | ||
font-size: 1.3rem; | ||
font-weight: 600; | ||
color: #000000; | ||
padding-left: 6rem; | ||
padding-top: 5rem; | ||
} | ||
|
||
.rhap_container { | ||
background-color: rgba(86, 78, 21, 0.613); | ||
backdrop-filter: blur(10px); | ||
padding: 1.2rem 1rem; | ||
border-radius: 5px; | ||
width: 368px; | ||
} | ||
|
||
.rhap_main-controls-button { | ||
color: #000000; | ||
} | ||
|
||
.rhap_time { | ||
color: #000000; | ||
} | ||
|
||
.rhap_progress-indicator { | ||
background-color: #000000; | ||
} | ||
|
||
.rhap_progress-filled { | ||
background-color: #2e2e2e; | ||
} | ||
|
||
.custom-card:hover { | ||
border: 1px solid #ffffff; | ||
box-shadow: 0 7px 50px 10px #000000aa; | ||
transform: scale(1.09); | ||
filter: brightness(1.01); | ||
backdrop-filter: blur(0px); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
.rhap_time { | ||
color: white; | ||
color: white; | ||
} |
Oops, something went wrong.