File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /* Reset and base styles */
2+ body {
3+ margin : 0 ;
4+ padding : 0 ;
5+ background-color : # 0f1117 ;
6+ color : # e0e0e0 ;
7+ font-family : 'Courier New' , Courier, monospace;
8+ line-height : 1.6 ;
9+ }
10+
11+ a {
12+ color : # 00ffcc ;
13+ text-decoration : none;
14+ }
15+
16+ a : hover {
17+ text-decoration : underline;
18+ }
19+
20+ header {
21+ background-color : # 1a1c23 ;
22+ padding : 20px ;
23+ text-align : center;
24+ border-bottom : 2px solid # 00ffcc ;
25+ }
26+
27+ header h1 {
28+ margin : 0 ;
29+ font-size : 2.5em ;
30+ color : # 00ffcc ;
31+ }
32+
33+ nav {
34+ margin-top : 10px ;
35+ }
36+
37+ nav a {
38+ margin : 0 15px ;
39+ font-weight : bold;
40+ }
41+
42+ main {
43+ padding : 40px 20px ;
44+ max-width : 800px ;
45+ margin : auto;
46+ }
47+
48+ section {
49+ margin-bottom : 40px ;
50+ }
51+
52+ section h2 {
53+ color : # 00ffcc ;
54+ border-bottom : 1px solid # 00ffcc ;
55+ padding-bottom : 5px ;
56+ }
57+
58+ footer {
59+ background-color : # 1a1c23 ;
60+ text-align : center;
61+ padding : 20px ;
62+ border-top : 2px solid # 00ffcc ;
63+ font-size : 0.9em ;
64+ color : # 888 ;
65+ }
66+
67+ /* Terminal-style code block */
68+ pre {
69+ background-color : # 1e1e1e ;
70+ color : # 00ffcc ;
71+ padding : 15px ;
72+ border-radius : 5px ;
73+ overflow-x : auto;
74+ box-shadow : 0 0 10px # 00ffcc33 ;
75+ }
76+
77+ / * Button
You can’t perform that action at this time.
0 commit comments