-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
135 lines (115 loc) · 1.94 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* General Styles */
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #FEFEFA;
color: #333;
}
/* Header Styles */
header {
background: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2em;
}
/* Navigation Styles */
nav {
background: #444;
color: #fff;
padding: 10px;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
nav a:hover {
text-decoration: underline;
}
/* Main Content Styles */
main {
padding: 20px;
background: #fff;
margin: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Section Styles */
section {
margin-bottom: 20px;
}
section h2 {
color: #333;
border-bottom: 2px solid #ddd;
padding-bottom: 5px;
}
section p {
margin: 10px 0;
}
/* Footer Styles */
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
/* Code Block Styles */
pre {
background: #f4f4f4;
padding: 10px;
border-left: 5px solid #ccc;
overflow-x: auto;
white-space: pre-wrap; /* Enables wrapping for code blocks */
word-wrap: break-word; /* Ensures long words break */
}
code {
font-family: "Courier New", Courier, monospace;
background: #eee;
padding: 2px 5px;
border-radius: 3px;
}
/* Table Styles */
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
table, th, td {
border: 1px solid #ddd;
}
th, td {
padding: 10px;
text-align: left;
}
th {
background: #f4f4f4;
}
/* Image Styles */
img {
max-width: 100%;
height: auto;
border-radius: 5px;
}
/* List Styles */
ul, ol {
margin: 10px 0;
padding: 0 20px;
}
/* Link Styles */
a {
color: #333;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}