-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
155 lines (129 loc) · 2.37 KB
/
styles.css
File metadata and controls
155 lines (129 loc) · 2.37 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #2b2b2b;
color: #ffffff;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
}
#content h1 {
font-size: 2.5em;
margin-bottom: 0.5em;
font-weight: 600;
text-align: center;
}
#content h2 {
font-size: 2em;
margin-top: 1.5em;
margin-bottom: 0.5em;
font-weight: 600;
text-align: left;
}
#content h3 {
font-size: 1.5em;
margin-top: 1.2em;
margin-bottom: 0.5em;
font-weight: 600;
text-align: left;
}
#content p {
margin-bottom: 1em;
}
#content a {
color: #66b3ff;
text-decoration: none;
}
#content a:hover {
text-decoration: underline;
}
#content ul, #content ol {
margin-left: 2em;
margin-bottom: 1em;
}
#content li {
margin-bottom: 0.5em;
}
#content pre {
background-color: #1e1e1e;
padding: 1em;
border-radius: 5px;
overflow-x: auto;
margin-bottom: 1em;
}
#content code {
background-color: #1e1e1e;
padding: 0.2em 0.4em;
border-radius: 3px;
font-family: 'Monaco', 'Courier New', monospace;
font-size: 0.9em;
}
#content pre code {
padding: 0;
background-color: transparent;
}
#content blockquote {
border-left: 4px solid #66b3ff;
padding-left: 1em;
margin-left: 0;
margin-bottom: 1em;
font-style: italic;
color: #cccccc;
}
#content hr {
border: none;
border-top: 1px solid #444444;
margin: 2em 0;
}
#content table {
border-collapse: collapse;
width: 100%;
margin-bottom: 1em;
}
#content th, #content td {
border: 1px solid #444444;
padding: 0.5em;
text-align: left;
}
#content th {
background-color: #1e1e1e;
font-weight: 600;
}
/* Rhysics simulation index styles */
.back-link {
margin-bottom: 1.5rem;
}
.back-link a {
color: #66b3ff;
text-decoration: none;
}
.back-link a:hover {
text-decoration: underline;
}
.link-list {
list-style: none;
margin-top: 1rem;
padding: 0;
}
.link-list li {
margin-bottom: 0.75rem;
}
.link-list a {
color: #66b3ff;
text-decoration: none;
font-size: 1.1rem;
}
.link-list a:hover {
text-decoration: underline;
}
.subtitle {
color: #aaa;
margin-top: 0.5rem;
}