-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyles.css
More file actions
59 lines (50 loc) · 863 Bytes
/
Copy pathstyles.css
File metadata and controls
59 lines (50 loc) · 863 Bytes
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
/* Custom CSS for R Markdown presentations */
/* Main slide styling */
.title-slide {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
/* Code blocks */
pre {
background-color: #f8f9fa;
border: 1px solid #e9ecef;
border-radius: 4px;
padding: 15px;
font-size: 14px;
}
/* Highlighted text */
strong {
color: #e74c3c;
}
/* Lists */
ul li {
margin-bottom: 8px;
}
/* Blockquotes for prompts */
blockquote {
background-color: #e8f4f8;
border-left: 4px solid #3498db;
padding: 15px;
margin: 15px 0;
font-style: italic;
}
/* Emoji and icons */
.emoji {
font-size: 1.2em;
}
/* Task headers */
h2 {
color: #2c3e50;
border-bottom: 2px solid #3498db;
padding-bottom: 5px;
}
/* Success indicators */
.success {
color: #27ae60;
font-weight: bold;
}
/* Warning text */
.warning {
color: #e67e22;
font-weight: bold;
}