forked from KrishnaKumarSoni/blog-from-gpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
116 lines (100 loc) · 2.23 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
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=DM+Sans:wght@400;500;700&display=swap');
body {
font-family: 'DM Sans', sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #ffffff;
}
h1 {
font-family: 'Playfair Display', serif;
font-size: 2.5em;
text-align: center;
color: #2c3e50;
margin-bottom: 30px;
}
#urlForm {
display: flex;
margin-bottom: 20px;
}
#chatUrl {
flex-grow: 1;
padding: 10px;
font-size: 16px;
border: 1px solid #ddd;
border-radius: 4px 0 0 4px;
}
button {
padding: 10px 20px;
font-size: 16px;
background-color: #3498db;
color: white;
border: none;
border-radius: 0 4px 4px 0;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #2980b9;
}
#progressContainer {
margin-top: 20px;
display: none;
}
#progressBar {
height: 20px;
background-color: #3498db;
width: 0;
transition: width 0.5s;
}
#progressText {
margin-top: 10px;
text-align: center;
font-style: italic;
}
#blogContent {
margin-top: 30px;
padding: 20px;
background-color: #f9f9f9;
border: 1px solid #ddd;
border-radius: 4px;
}
#markdownContent {
white-space: pre-wrap;
word-wrap: break-word;
}
#markdownContent h1, #markdownContent h2, #markdownContent h3,
#markdownContent h4, #markdownContent h5, #markdownContent h6 {
font-family: 'Playfair Display', serif;
color: #2c3e50;
margin-top: 1.5em;
margin-bottom: 0.5em;
line-height: 1.2;
}
#markdownContent h1 { font-size: 2.2em; }
#markdownContent h2 { font-size: 1.8em; }
#markdownContent h3 { font-size: 1.5em; }
#markdownContent h4 { font-size: 1.3em; }
#markdownContent h5 { font-size: 1.1em; }
#markdownContent h6 { font-size: 1em; }
#markdownContent p {
margin-bottom: 1em;
font-size: 1.1em;
}
#copyButton {
display: none;
margin-top: 20px;
padding: 10px 20px;
font-size: 16px;
background-color: #2ecc71;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
#copyButton:hover {
background-color: #27ae60;
}