Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
/* This imports the Muli font from Google Fonts and sets the page styling using CSS variables */
@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");

/* Set of CSS variables to define colors, shadows, and other properties used throughout the page */
* {
--bg-color: #eef0f4;
--color: #333;
Expand All @@ -13,6 +15,7 @@
--filter3: drop-shadow(-2px -2px 3px #ffffff) drop-shadow(2px 2px 3px #c3c5c8);
}

/* Global styles */
* {
box-sizing: border-box;
margin: 0;
Expand Down Expand Up @@ -110,6 +113,7 @@ textarea {
margin: 15px 0;
}

/* Media query for smaller screens */
@media screen and (max-width: 400px) {
.result-container {
font-size: 14px;
Expand Down