-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
90 lines (84 loc) · 1.9 KB
/
Copy pathmain.css
File metadata and controls
90 lines (84 loc) · 1.9 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
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: rgb(35 39 47);
color: rgb(246 247 249);
width:70%;
max-width: fit-content;
margin-left: auto;
margin-right: auto;
}
.CodeMirror {
border: 1px solid #ccc;
height: auto;
}
.CodeMirror-scroll {
min-height: 400px; /* Increased default size */
max-height: 80vh; /* Increased maximum height */
}
#output {
border: 1px solid #ccc;
padding: 10px;
margin-top: 10px;
background-color: #f0f0f0;
}
a{
color: rgb(88 196 220);
}
ul{
list-style-type: none;
padding-left:0;
}
code{
background-color: #16181d;
font-family: 'Courier New', Courier, monospace;
color: #d63384;
padding: 2px 4px;
border-radius: 3px;
border: 1px solid #ccc;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
white-space: nowrap;
}
pre {
background-color: #16181d;
color: #d63384; /* Text color */
padding: 10px; /* Padding around the code */
border-radius: 3px; /* Rounded corners */
border: 1px solid #ccc; /* Optional border */
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); /* Subtle shadow */
overflow-x: auto; /* Enable horizontal scrolling if needed */
white-space: pre; /* Preserve whitespace and line breaks */
}
#output{
background-color: #16181d;
}
#navMenu *{
padding-left: 5px;
font-size: 18px;
text-decoration: none;
}
#navMenu{
margin-bottom: 20px;
background-color: rgb(35 39 47);
padding: 10px;
}
#navMenu a {
margin: 0 10px;
text-decoration: none;
color: rgb(88 196 220);
}
.nav-button {
margin: 0 5px;
padding: 5px 10px;
border: 1px solid rgb(88 196 220);
background-color: rgb(35 39 47);
color: rgb(88 196 220);
cursor: pointer;
}
.nav-button:hover {
background-color: black;
}
#navMenu .current {
font-weight: bold;
color: #dc3545; /* Change color for current page */
}