-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
45 lines (34 loc) · 909 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
* {
margin: 0;
padding: 0;
font-family: sans-serif;
}
.sliding-image img {
background-size: cover;
}
@media only screen and (max-width: 767px) {
/* Adjust layout and font sizes for small screens */
body {
font-size: 16px;
/* Adjust the font size for readability on small screens */
}
/* Add more styles for small screens here */
}
/* Styles for tablets */
@media only screen and (min-width: 768px) and (max-width: 991px) {
/* Adjust layout and font sizes for tablets */
body {
font-size: 18px;
/* Adjust the font size for tablets */
}
/* Add more styles for tablets here */
}
/* Styles for desktop and laptops */
@media only screen and (min-width: 992px) {
/* Adjust layout and font sizes for larger screens */
body {
font-size: 20px;
/* Adjust the font size for desktops and laptops */
}
/* Add more styles for desktops and laptops here */
}