Skip to content

Update style.css #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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