-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontent.css
More file actions
104 lines (89 loc) · 1.85 KB
/
Copy pathcontent.css
File metadata and controls
104 lines (89 loc) · 1.85 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
/* Welcome page styles */
#welcomePage {
text-align: center;
padding: 20px;
}
#welcomePage h1 {
font-size: 24px;
margin-bottom: 10px;
}
#welcomePage p {
color: #717ed4;
margin-bottom: 20px;
}
#welcomePage button {
padding: 10px 20px;
font-size: 16px;
background-color: #3498db;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
#welcomePage button:hover {
background-color: #2980b9;
}
/* Loader Animation */
.loader {
border: 2px solid #f3f3f3;
border-top: 2px solid #ffffff;
border-right: 2px solid #ffffff;
border-bottom: 2px solid #ffffff;
border-left: 2px solid #3498db;
border-radius: 50%;
width: 14px;
height: 14px;
animation: spin 1s linear infinite;
display: inline-block;
vertical-align: middle;
margin-left: 8px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Markdown styles */
.simplified-text {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
line-height: 1.6;
color: #2c3e50;
}
.simplified-text h1,
.simplified-text h2,
.simplified-text h3,
.simplified-text h4,
.simplified-text h5,
.simplified-text h6 {
margin-top: 1.5em;
margin-bottom: 0.5em;
line-height: 1.2;
}
.simplified-text p {
margin-bottom: 1.5em;
}
.simplified-text ul,
.simplified-text ol {
margin-left: 20px;
margin-bottom: 1em;
}
.simplified-text li {
margin-bottom: 0.5em;
}
.simplified-text code {
background: #f8f8f8;
padding: 2px 4px;
border-radius: 3px;
font-family: monospace;
}
.simplified-text blockquote {
border-left: 3px solid #ddd;
margin-left: 0;
padding-left: 1em;
color: #717ed4;
}
.simplified-text pre {
background: #f8f8f8;
padding: 1em;
border-radius: 3px;
overflow-x: auto;
}