Spaces:
Running
Running
File size: 1,824 Bytes
372531f |
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 |
.markdown-content {
/* Base styles */
color: white;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 18px;
line-height: 1.6;
/* Headings */
h1, h2, h3, h4, h5, h6 {
line-height: 1.2;
font-weight: 500;
}
h1 { font-size: 2.5em; }
h2 { font-size: 2em; }
h3 { font-size: 1.5em; }
h4 { font-size: 1.2em; }
h5 { font-size: 1.1em; }
h6 { font-size: 1em; }
/* Paragraphs and spacing */
p {
margin: 0;
line-height: 1.6;
}
/* Text formatting */
strong, b {
font-weight: 600;
}
/* Lists */
ul, ol {
margin: 0;
padding-left: 2em;
line-height: 1.6;
}
li {
margin: 0;
padding-left: 0.5em;
}
ul li {
list-style-type: disc;
}
ol li {
list-style-type: decimal;
}
/* Links */
a {
color: rgb(168 85 247);
text-decoration: underline;
font-weight: 500;
&:hover {
opacity: 0.8;
}
}
/* Code blocks */
pre {
background-color: #1e1e1e;
padding: 1em;
border-radius: 4px;
overflow-x: auto;
margin: 1em 0;
}
code {
font-family: 'Courier New', Courier, monospace;
font-size: 0.9em;
padding: 0 0.4em;
background-color: #1e1e1e;
border-radius: 3px;
}
/* Blockquotes */
blockquote {
border-left: 4px solid rgb(168 85 247);
margin: 0;
padding-left: 1em;
font-style: italic;
}
/* Tables */
table {
border-collapse: collapse;
width: 100%;
margin: 1em 0;
}
th, td {
border: 1px solid #444;
padding: 0.5em;
text-align: left;
}
th {
background-color: #333;
}
/* Horizontal rule */
hr {
border: 0;
border-top: 1px solid #444;
margin: 1em 0;
}
} |