-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
187 lines (160 loc) · 3.52 KB
/
Copy pathstyle.css
File metadata and controls
187 lines (160 loc) · 3.52 KB
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/* General Body Styles */
body {
font-family: 'Roboto', sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f8f9fa; /* Light gray background */
color: #343a40; /* Dark gray text */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.container {
max-width: 960px;
margin: 0 auto;
padding: 20px;
}
/* Header/Hero Section */
.hero {
background-color: #f8f9fa; /* Changed to a very light background for minimalism */
color: #343a40; /* Darker text for contrast */
padding: 40px 20px; /* Reduced padding */
text-align: center;
border-bottom: 1px solid #e9ecef; /* Simple bottom border */
border-bottom-left-radius: 0; /* Remove radius */
border-bottom-right-radius: 0; /* Remove radius */
box-shadow: none; /* Remove shadow */
}
.hero-logo {
display: none; /* Hide the logo */
}
.hero h1 {
font-size: 2.2em; /* Slightly smaller font size */
margin-bottom: 5px; /* Reduced margin */
font-weight: 600; /* Slightly lighter font weight */
color: #007bff; /* Primary blue for title */
}
.hero p {
font-size: 1em; /* Slightly smaller font size */
max-width: 600px; /* Reduced max-width for conciseness */
margin: 0 auto;
opacity: 0.8; /* Slightly less opaque */
}
/* Section Cards */
.card {
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
padding: 30px;
margin-bottom: 30px;
border-left: 5px solid #007bff; /* Accent border */
}
.card h2 {
color: #007bff;
font-size: 2em;
margin-top: 0;
margin-bottom: 20px;
border-bottom: 2px solid #e9ecef;
padding-bottom: 10px;
}
/* Typography */
h1, h2, h3, h4, h5, h6 {
color: #343a40;
font-weight: 700;
}
h3 {
color: #495057;
font-size: 1.4em;
margin-top: 25px;
margin-bottom: 15px;
}
p {
margin-bottom: 15px;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul, ol {
margin-bottom: 15px;
padding-left: 20px;
}
ul li, ol li {
margin-bottom: 8px;
}
/* Code Blocks */
pre {
background-color: #e9ecef; /* Light gray for code blocks */
border-left: 3px solid #0056b3; /* Darker blue accent */
padding: 15px;
border-radius: 5px;
overflow-x: auto;
margin-bottom: 20px;
font-family: 'Roboto Mono', monospace; /* Monospace font for code */
font-size: 0.9em;
}
code {
font-family: 'Roboto Mono', monospace;
background-color: #e9ecef;
padding: 2px 4px;
border-radius: 3px;
}
/* Tables */
.table-container {
overflow-x: auto;
margin-top: 20px;
margin-bottom: 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 1em;
}
table th, table td {
border: 1px solid #dee2e6;
padding: 12px 15px;
text-align: left;
}
table th {
background-color: #e9ecef;
font-weight: 700;
color: #495057;
}
table tr:nth-child(even) {
background-color: #f2f2f2;
}
/* Images within content */
.card img {
max-width: 100%;
height: auto;
display: block;
margin: 15px 0;
}
/* Footer */
footer {
background-color: #343a40;
color: #ffffff;
text-align: center;
padding: 20px;
margin-top: 40px;
border-top-left-radius: 15px;
border-top-right-radius: 15px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.hero h1 {
font-size: 2em;
}
.hero p {
font-size: 1em;
}
.card {
padding: 20px;
}
.card h2 {
font-size: 1.7em;
}
}