Skip to content

Commit

Permalink
Revert "Move css into its own stylesheet"
Browse files Browse the repository at this point in the history
This reverts commit e2d8184.
  • Loading branch information
StubberG3 committed Feb 7, 2024
1 parent 90d31a3 commit 7715289
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 42 deletions.
41 changes: 0 additions & 41 deletions css/weather.css

This file was deleted.

44 changes: 43 additions & 1 deletion pages/weather.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,49 @@
<link href="https://fonts.googleapis.com/css2?family=Material+Icons&Roboto:wght@300;400;500;700&display=swap"
rel="stylesheet">
<link href='../css/materialize.css' rel='stylesheet'>
<link href='../css/weather.css' rel='stylesheet'>
<style>
:root {
--primary-color: #4e406a;
background-color: #efefef;
}

.primary-color {
background-color: var(--primary-color);
}

.primary-color-text {
color: var(--primary-color);
}

.weather-container {
background-color: #fff;
margin: 0 auto;
}

.temperature {
font-weight: bold;
}

.weather-details {
color: #2f2f2f;
font-size: 1.2rem;
}

.week img.card-image {
max-width: 100%;
}

.today img.card-image {
max-width: 100px;
}

@media screen and (max-width: 771px) {
.btn {
margin-bottom: 20px;
height: 100%;
}
}
</style>
</head>

<body>
Expand Down

0 comments on commit 7715289

Please sign in to comment.