Skip to content

Commit 623ce19

Browse files
committed
6/4/22-8.00pm
1 parent 4003a6f commit 623ce19

46 files changed

Lines changed: 29501 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Assets/css.css

Lines changed: 165 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,165 @@
1+
/* Sticky footer styles
2+
-------------------------------------------------- */
3+
4+
html {
5+
position: static;
6+
min-height: 100%;
7+
width: 100%;
8+
}
9+
10+
body {
11+
margin-bottom: 60px;
12+
width: 100%;
13+
overflow-x: hidden;
14+
/* Margin bottom by footer height */
15+
}
16+
17+
.title {
18+
position: relative;
19+
top: -30px;
20+
width: 100%;
21+
height: 60px;
22+
line-height: 70px;
23+
z-index: 1000;
24+
}
25+
26+
li {
27+
right: 100px;
28+
}
29+
30+
.footer {
31+
position: relative;
32+
bottom: 0px;
33+
width: 100%;
34+
text-align: center;
35+
height: 50px;
36+
/* Set the fixed height of the footer here */
37+
line-height: 50px;
38+
/* Vertically center the text there */
39+
background-color: #212121;
40+
}
41+
42+
.modal-lg {
43+
width: 90%;
44+
height: 78%;
45+
}
46+
47+
.tab-pane {
48+
width: 0%;
49+
height: 0%;
50+
}
51+
52+
.in {
53+
width: 98%;
54+
height: 95%;
55+
}
56+
57+
.tab-content {
58+
width: 100%;
59+
height: 100%;
60+
}
61+
62+
.nav-pills {
63+
display: flex;
64+
justify-content: center;
65+
}
66+
67+
pre {
68+
left: center;
69+
right: center;
70+
margin-left: auto;
71+
margin-right: auto;
72+
box-shadow: rgb(24, 24, 24) 0px 10px 10px 10px;
73+
padding: 5px 5px 5px 15px;
74+
background-color: rgb(24, 24, 24);
75+
border-color: rgb(24, 24, 24);
76+
color: white;
77+
text-align: left;
78+
white-space: pre-line;
79+
}
80+
81+
.nav-item {
82+
cursor: pointer;
83+
}
84+
85+
.navbar-brand {
86+
cursor: default;
87+
}
88+
89+
.active {
90+
cursor: not-allowed;
91+
}
92+
93+
.tab-pane {
94+
cursor: pointer;
95+
}
96+
97+
.output {
98+
float: right;
99+
}
100+
101+
#saving {
102+
visibility: hidden;
103+
min-width: 250px;
104+
margin-left: -125px;
105+
background-color: #333;
106+
color: #fff;
107+
text-align: center;
108+
border-radius: 2px;
109+
padding: 16px;
110+
position: fixed;
111+
z-index: 1;
112+
left: 50%;
113+
bottom: 30px;
114+
font-size: 17px;
115+
}
116+
117+
#saving.show {
118+
visibility: visible;
119+
-webkit-animation: fadein 0.6s, fadeout 0.6s 2.0s;
120+
animation: fadein 0.6s, fadeout 0.6s 2.0s;
121+
}
122+
123+
@-webkit-keyframes fadein {
124+
from {
125+
bottom: 0;
126+
opacity: 0;
127+
}
128+
to {
129+
bottom: 30px;
130+
opacity: 1;
131+
}
132+
}
133+
134+
@keyframes fadein {
135+
from {
136+
bottom: 0;
137+
opacity: 0;
138+
}
139+
to {
140+
bottom: 30px;
141+
opacity: 1;
142+
}
143+
}
144+
145+
@-webkit-keyframes fadeout {
146+
from {
147+
bottom: 30px;
148+
opacity: 1;
149+
}
150+
to {
151+
bottom: 0;
152+
opacity: 0;
153+
}
154+
}
155+
156+
@keyframes fadeout {
157+
from {
158+
bottom: 30px;
159+
opacity: 1;
160+
}
161+
to {
162+
bottom: 0;
163+
opacity: 0;
164+
}
165+
}

Assets/css/atom-one-dark.css

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
pre code.hljs {
2+
display: block;
3+
overflow-x: auto;
4+
padding: 1em
5+
}
6+
7+
code.hljs {
8+
padding: 3px 5px
9+
}
10+
11+
.hljs {
12+
color: #abb2bf;
13+
background: #282c34
14+
}
15+
16+
.hljs-comment,
17+
.hljs-quote {
18+
color: #5c6370;
19+
font-style: italic
20+
}
21+
22+
.hljs-doctag,
23+
.hljs-formula,
24+
.hljs-keyword {
25+
color: #c678dd
26+
}
27+
28+
.hljs-deletion,
29+
.hljs-name,
30+
.hljs-section,
31+
.hljs-selector-tag,
32+
.hljs-subst {
33+
color: #e06c75
34+
}
35+
36+
.hljs-literal {
37+
color: #56b6c2
38+
}
39+
40+
.hljs-addition,
41+
.hljs-attribute,
42+
.hljs-meta .hljs-string,
43+
.hljs-regexp,
44+
.hljs-string {
45+
color: #98c379
46+
}
47+
48+
.hljs-attr,
49+
.hljs-number,
50+
.hljs-selector-attr,
51+
.hljs-selector-class,
52+
.hljs-selector-pseudo,
53+
.hljs-template-variable,
54+
.hljs-type,
55+
.hljs-variable {
56+
color: #d19a66
57+
}
58+
59+
.hljs-bullet,
60+
.hljs-link,
61+
.hljs-meta,
62+
.hljs-selector-id,
63+
.hljs-symbol,
64+
.hljs-title {
65+
color: #61aeee
66+
}
67+
68+
.hljs-built_in,
69+
.hljs-class .hljs-title,
70+
.hljs-title.class_ {
71+
color: #e6c07b
72+
}
73+
74+
.hljs-emphasis {
75+
font-style: italic
76+
}
77+
78+
.hljs-strong {
79+
font-weight: 700
80+
}
81+
82+
.hljs-link {
83+
text-decoration: underline
84+
}

0 commit comments

Comments
 (0)