-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
79 lines (69 loc) · 1.22 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
:root {
color-scheme: dark;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #000000;
color: #e0e0e0;
}
h1 {
text-align: center;
}
.container {
display: flex;
flex-wrap: wrap;
gap: 20px;
max-width: auto;
margin: 0 0;
}
.editor, .preview {
flex: 1;
min-width: auto;
padding: 5px;
}
textarea {
width: 100%;
min-height: 500px;
font-family: monospace;
font-size: 16px;
padding: 10px;
border: .5px solid #333;
background-color: #1e1e1e;
color: #ffffff;
border-radius: 4px;
resize:none;
}
.preview {
max-height: 500px;
background-color: #1e1e1e;
padding: 20px;
border-radius: 4px;
overflow-y: auto;
}
/* Markdown GitHub Style */
.markdown-body {
font-size: 16px;
line-height: 1.6;
background: none;
color: #e0e0e0;
}
/* Highlight.js Dark Theme */
pre {
background: #282c34 !important;
padding: 10px;
border-radius: 5px;
overflow-x: auto;
}
code {
font-family: 'Fira Code', monospace;
}
/* Links */
a {
color: #8ab4f8;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}