We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37a8192 commit 04606a7Copy full SHA for 04606a7
style.css
@@ -1,5 +1,7 @@
1
+/* This imports the Muli font from Google Fonts and sets the page styling using CSS variables */
2
@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");
3
4
+/* Set of CSS variables to define colors, shadows, and other properties used throughout the page */
5
* {
6
--bg-color: #eef0f4;
7
--color: #333;
@@ -13,6 +15,7 @@
13
15
--filter3: drop-shadow(-2px -2px 3px #ffffff) drop-shadow(2px 2px 3px #c3c5c8);
14
16
}
17
18
+/* Global styles */
19
20
box-sizing: border-box;
21
margin: 0;
@@ -110,6 +113,7 @@ textarea {
110
113
margin: 15px 0;
111
114
112
115
116
+/* Media query for smaller screens */
117
@media screen and (max-width: 400px) {
118
.result-container {
119
font-size: 14px;
0 commit comments