-
Notifications
You must be signed in to change notification settings - Fork 0
/
resp.css
47 lines (39 loc) · 1.03 KB
/
resp.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
46
47
/* Responsive styles */
@media only screen and (max-width: 767px) {
body {
font-family: Arial, sans-serif;
margin: 2px auto;
padding: 2px auto;
background-color: #f2f2f2;
}
.container {
max-width: 200px auto;
margin: 2px auto;
padding: 2px auto;
}
.header h1 {
font-size: 24px;
}
h3 {
color: #333;
margin-bottom: 5px;
margin-top: 30px;
text-decoration: underline;
}
ul li {
font-size: 14px;
padding: 2px auto;
}
ul {
padding: 2px auto; /* Adjust padding for mobile */
}
table {
border: none; /* Remove border for better mobile experience */
}
td {
display: block; /* Convert table cells to block elements for stacking */
border: none; /* Remove borders between table cells */
border-bottom: 1px solid #E88741; /* Add bottom border for cell separation */
padding: 10px 0; /* Adjust padding for better spacing */
}
}