File size: 2,229 Bytes
f597725 148368a f597725 115b910 f597725 148368a f597725 |
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 |
/* body {
padding: 2rem;
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
}
h1 {
font-size: 16px;
margin-top: 0;
}
p {
color: rgb(107, 114, 128);
font-size: 15px;
margin-bottom: 10px;
margin-top: 5px;
}
.card {
max-width: 620px;
margin: 0 auto;
padding: 16px;
border: 1px solid lightgray;
border-radius: 16px;
}
.card p:last-child {
margin-bottom: 0;
} */
/* Base page styles */
body {
margin: 0;
padding: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #f5f5f5;
color: #333;
line-height: 1.6;
font-size: 18px; /* larger base font */
}
/* Center the card and set a max width */
.card {
max-width: 1300px; /* allow wider content */
margin: 2rem auto;
padding: 2rem;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* Headings */
h1 {
font-size: 2.5rem; /* very large main title */
margin-bottom: 1rem;
color: #222;
text-align: center;
}
h2 {
font-size: 2rem; /* large section titles */
margin-top: 2rem;
margin-bottom: 0.75rem;
border-bottom: 2px solid #e0e0e0;
padding-bottom: 0.25rem;
color: #333;
}
/* Paragraphs, lists, and code blocks */
p {
font-size: 1.125rem; /* slightly larger paragraph text */
margin-bottom: 1rem;
}
ul,
ol {
font-size: 1.125rem;
margin-left: 1.5rem;
margin-bottom: 1rem;
}
li {
margin-bottom: 0.5rem;
}
pre {
background-color: #f0f0f0;
padding: 1rem;
border-radius: 4px;
font-family: Consolas, Menlo, Monaco, monospace;
font-size: 1rem;
overflow-x: auto;
}
/* Emphasis and blockquote */
blockquote {
font-size: 1.125rem;
margin: 1rem 2rem;
padding-left: 1rem;
border-left: 4px solid #ccc;
color: #555;
background-color: #fafafa;
}
/* Images */
.card img {
max-width: 100%;
height: auto;
border-radius: 4px;
margin: 1rem 0;
}
/* Links */
a {
color: #1a73e8;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Responsive adjustments */
@media (max-width: 600px) {
.card {
padding: 1rem;
margin: 1rem;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
}
body {
font-size: 16px;
}
}
|