-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from UTT-GL03/Frontend_UI_Improvements
Frontend UI improvements
- Loading branch information
Showing
21 changed files
with
87 additions
and
60 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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,55 +1,60 @@ | ||
#WeatherCard { | ||
background-color: var(--card-background, #ffffff); | ||
border-radius: 10px; | ||
padding: 2em; | ||
box-shadow: 0 4px 6px var(--shadow-color, rgba(0, 0, 0, 0.1)); | ||
margin: 1.5rem 0; | ||
width: 100%; | ||
max-width: 100%; | ||
text-align: left; | ||
transition: transform 300ms, box-shadow 300ms; | ||
overflow: hidden; | ||
background-color: var(--card-background, #ffffff); | ||
border-radius: 10px; | ||
padding: 2em; | ||
box-shadow: 0 4px 6px var(--shadow-color, rgba(0, 0, 0, 0.1)); | ||
margin: 1.5rem 0; | ||
width: 100%; | ||
max-width: 100%; | ||
text-align: left; | ||
transition: transform 300ms, box-shadow 300ms; | ||
overflow: hidden; | ||
} | ||
|
||
.grid { | ||
display: grid; | ||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); | ||
gap: 1.5rem; | ||
font-size: 1.1rem; | ||
color: var(--text-color, #333); | ||
} | ||
|
||
.grid-item { | ||
background-color: #f7f7f7; | ||
padding: 1.5em; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
transition: background-color 300ms ease; | ||
} | ||
|
||
.grid-item .label { | ||
font-weight: bold; | ||
color: var(--primary-color, #0077cc); | ||
margin-bottom: 0.5em; | ||
display: block; | ||
text-align: center; | ||
} | ||
|
||
.grid-item span { | ||
font-size: 1.2rem; | ||
color: #333; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
#WeatherCard { | ||
padding: 1.5em; | ||
} | ||
|
||
.grid { | ||
display: grid; | ||
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); | ||
gap: 1.5rem; | ||
font-size: 1.1rem; | ||
color: var(--text-color, #333); | ||
grid-template-columns: 1fr; | ||
} | ||
|
||
.grid-item { | ||
background-color: #f7f7f7; | ||
padding: 1.5em; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
transition: background-color 300ms ease; | ||
} | ||
|
||
.grid-item .label { | ||
font-weight: bold; | ||
color: var(--primary-color, #0077cc); | ||
margin-bottom: 0.5em; | ||
display: block; | ||
padding: 1.2em; | ||
} | ||
} | ||
|
||
.grid-item span { | ||
font-size: 1.2rem; | ||
color: #333; | ||
} | ||
|
||
@media (max-width: 768px) { | ||
#WeatherCard { | ||
padding: 1.5em; | ||
} | ||
|
||
.grid { | ||
grid-template-columns: 1fr; | ||
} | ||
|
||
.grid-item { | ||
padding: 1.2em; | ||
} | ||
} | ||
|
||
img { | ||
width: 6vw; | ||
margin-right: 1vw; | ||
} |
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