File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 */
68html , 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+ }
You can’t perform that action at this time.
0 commit comments