File tree Expand file tree Collapse file tree 1 file changed +16
-4
lines changed Expand file tree Collapse file tree 1 file changed +16
-4
lines changed 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
+ */
4
6
5
7
/* Resetting default styles for HTML and body */
6
8
html , body {
7
9
padding : 0 ;
8
10
margin : 0 ;
9
11
width : 100% ;
10
12
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 */
11
16
}
12
17
13
18
/* Styling for reusable icon class */
@@ -92,4 +97,11 @@ html, body {
92
97
}
93
98
}
94
99
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