-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
36 lines (31 loc) · 928 Bytes
/
styles.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
/* General body styles */
body {
font-family: Arial, sans-serif; /* Change to your preferred font */
line-height: 1.4; /* Adjust line height for compactness */
margin: 0; /* Remove default margin */
padding: 0; /* Remove default padding */
}
/* Heading styles */
h1, h2, h3, h4, h5, h6 {
margin: 0; /* Remove default margin */
padding: 0; /* Remove default padding */
}
/* Paragraph styles */
p {
margin: 0; /* Remove default margin */
padding: 0; /* Remove default padding */
line-height: 1; /* Adjust line height for better readability */
}
/* Container styles */
.container {
padding: 10px; /* Adjust padding to reduce dead space */
}
/* Adjust specific sections if needed */
.section {
margin-bottom: 20px; /* Adjust bottom margin for sections */
}
/* Button styles */
button {
padding: 5px 10px; /* Reduce button padding */
font-size: 14px; /* Adjust font size */
}