Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit a000732

Browse files
committed
Third Update
0 parents  commit a000732

Some content is hidden

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

59 files changed

+61455
-0
lines changed

assets/css/core.css

Lines changed: 235 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,235 @@
1+
2+
3+
4+
.desnav{
5+
background-color: #8000ff;
6+
}
7+
8+
.nav-link{
9+
display: block;
10+
padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
11+
font-size: var(--bs-nav-link-font-size);
12+
font-weight: var(--bs-nav-link-font-weight);
13+
color: white;
14+
text-decoration: none;
15+
background: none;
16+
border: 0;
17+
18+
margin:auto;
19+
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
20+
21+
font-family: 'Alegreya Sans SC';
22+
font-weight: bold;
23+
24+
}
25+
26+
.txtcol{
27+
font-family: 'Alegreya Sans SC' !important;
28+
font-weight: bold !important;
29+
color:white !important;
30+
}
31+
32+
.navbar-toggler {
33+
padding: var(--bs-navbar-toggler-padding-y) var(--bs-navbar-toggler-padding-x);
34+
font-size: var(--bs-navbar-toggler-font-size);
35+
line-height: 1;
36+
color: white;
37+
background-color: transparent;
38+
border: var(--bs-border-width) solid var(--bs-navbar-toggler-border-color);
39+
border-radius: var(--bs-navbar-toggler-border-radius);
40+
transition: var(--bs-navbar-toggler-transition);
41+
}
42+
43+
.nav-link:hover{
44+
color:rgba(255, 251, 0, 0.801) !important;
45+
border-top-style: none !important;
46+
border-bottom-style: solid !important;
47+
border-right-style: none !important;
48+
border-left-style: none !important;
49+
border-width: 0.15rem !important;
50+
border-color: yellow !important;
51+
52+
padding-right: 1rem !important;
53+
padding-left: 1rem !important;
54+
transition: all 0.3s ease-in-out;
55+
}
56+
57+
a.nav-link.active{
58+
color:rgba(255, 251, 0, 0.801) !important;
59+
border-top-style: none !important;
60+
border-bottom-style: solid !important;
61+
border-right-style: none !important;
62+
border-left-style: none !important;
63+
border-width: 0.15rem !important;
64+
border-color: yellow !important;
65+
66+
padding-right: 1rem !important;
67+
padding-left: 1rem !important;
68+
}
69+
70+
.desbac{
71+
background-color: #2c2a2a !important;
72+
min-height: 169vh !important;
73+
overflow-y: scroll;
74+
-ms-overflow-style: none; /* IE and Edge */
75+
scrollbar-width: none; /* Firefox */
76+
}
77+
78+
.desbac::-webkit-scrollbar {
79+
display: none;
80+
}
81+
82+
83+
84+
.welc{
85+
position: absolute;
86+
top: 13%;
87+
left: 26%;
88+
width: 48%;
89+
height: 10%;
90+
background: linear-gradient(to right, rgb(120, 235, 255), rgb(20, 24, 243), rgb(154, 26, 240) );
91+
/* margin: inherit; */
92+
border-radius: 0.4rem;
93+
animation: anim 2s linear infinite;
94+
filter: blur(4rem);
95+
}
96+
@keyframes anim {
97+
0%{
98+
filter : hue-rotate(0deg);
99+
}
100+
50%{
101+
filter : hue-rotate(360deg);
102+
}
103+
100%{
104+
filter : hue-rotate(0deg);
105+
}
106+
107+
}
108+
109+
.welctxt{
110+
position: absolute;
111+
top: 13.5%;
112+
left: 26.6%;
113+
width: 47%;
114+
height: 9%;
115+
background: #2c2a2a !important;
116+
/* margin: inherit; */
117+
border-radius: 0.4rem;
118+
text-align: center;
119+
}
120+
121+
.welctxt p{
122+
padding-top: 1.2rem;
123+
font-family: 'Alegreya Sans SC';
124+
color: white;
125+
font-size: 1.3rem !important;
126+
}
127+
128+
.release{
129+
130+
width:50% !important;
131+
min-height: 22vh !important;
132+
133+
134+
}
135+
136+
.release2{
137+
border-style: solid;
138+
border-color: rgb(149, 255, 250);
139+
border-width: 0.2rem;
140+
border-radius: 0.4rem;
141+
142+
width:75% !important;
143+
min-height: 40vh !important;
144+
background-color: #2c2a2a ;
145+
color: rgb(255, 255, 255);
146+
padding-right: 2rem;
147+
padding-top: 1rem;
148+
149+
word-spacing: 0.3rem;
150+
151+
word-break: break-word;
152+
overflow-y:scroll;
153+
font-family: 'Alegreya Sans SC';
154+
155+
156+
-ms-overflow-style: none; /* IE and Edge */
157+
scrollbar-width: none; /* Firefox */
158+
159+
160+
161+
animation: anim2 2s linear infinite;
162+
163+
164+
165+
}
166+
@keyframes anim2{
167+
0%{
168+
color:yellow;
169+
border-color: yellow;
170+
box-shadow: 0px 10px 75px 0px rgb(114, 114, 247);
171+
172+
}
173+
50%{
174+
color:rgb(3, 142, 255);
175+
border-color: rgb(3, 142, 255);
176+
box-shadow: 0px 10px 40px 0px rgba(195, 195, 248, 0.514);
177+
178+
}
179+
100%{
180+
color: rgb(161, 241, 115);
181+
border-color: rgb(161, 241, 115) ;
182+
box-shadow: 0px 10px 75px 0px rgb(114, 114, 247);
183+
184+
}
185+
}
186+
187+
188+
.release2::-webkit-scrollbar {
189+
display: none;
190+
}
191+
192+
.release3{
193+
194+
195+
196+
width:100% !important;
197+
min-height: 10vh !important;
198+
background-color: #8000ff ;
199+
color: rgb(255, 255, 255);
200+
201+
padding-top: 1rem;
202+
203+
word-spacing: 0.3rem;
204+
205+
word-break: break-word;
206+
207+
font-family: 'Alegreya Sans SC';
208+
font-size: 1rem;
209+
}
210+
211+
.loader{
212+
display: flex;
213+
width: 100% !important;
214+
height: 100vh !important;
215+
background-color: #202020db;
216+
position: absolute;
217+
top: 0%;
218+
219+
}
220+
221+
.loader2{
222+
display: none;
223+
width: 100% !important;
224+
height: 100vh !important;
225+
background-color: #202020db;
226+
position: absolute;
227+
top: 0%;
228+
229+
}
230+
231+
.imdes{
232+
width: 20vw !important;
233+
height: 20vh !important;
234+
object-fit: contain !important;
235+
}

assets/css/core2.css

Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
.maincont{
2+
3+
height: 100vh !important;
4+
background-color: #2c2a2a;
5+
overflow-y: scroll;
6+
-ms-overflow-style: none; /* IE and Edge */
7+
scrollbar-width: none; /* Firefox */
8+
}
9+
.maincont::-webkit-scrollbar {
10+
display: none;
11+
}
12+
13+
14+
.coldes{
15+
min-width: 28% !important;
16+
height: 50vh !important;
17+
background-color: rgba(94, 94, 94, 0);
18+
overflow-y: scroll;
19+
color :white;
20+
border-color: black;
21+
border-style: solid;
22+
border-radius: 0.6rem;
23+
word-break: break-word;
24+
-ms-overflow-style: none; /* IE and Edge */
25+
scrollbar-width: none; /* Firefox */
26+
text-align: center;
27+
}
28+
29+
.coldes2{
30+
min-width: 28% !important;
31+
height: 50vh !important;
32+
background-color: rgba(66, 66, 66, 0);
33+
overflow-y: scroll;
34+
word-break: break-word;
35+
color:white;
36+
border-color: black;
37+
border-style: solid;
38+
border-radius: 0.6rem;
39+
-ms-overflow-style: none; /* IE and Edge */
40+
scrollbar-width: none; /* Firefox */
41+
42+
}
43+
44+
.coldes3{
45+
min-width: 50% !important;
46+
height: 50vh !important;
47+
margin-left: 2rem;
48+
background-color: aliceblue;
49+
50+
word-break: break-word;
51+
52+
}
53+
.coldes::-webkit-scrollbar {
54+
display: none;
55+
}
56+
57+
.coldes2::-webkit-scrollbar {
58+
display: none;
59+
}
60+
61+
textarea{
62+
height:46vh !important;
63+
background-color: #d7ffb3;
64+
font-weight: 0.4rem;
65+
color: rgb(0, 0, 0);
66+
resize: none;
67+
border-style: none;
68+
69+
}
70+
71+
72+
#content{
73+
background-color: black;
74+
color:rgb(207, 247, 115);
75+
height: 46vh !important;
76+
77+
padding: 5px;
78+
overflow-y: scroll;
79+
-ms-overflow-style: none; /* IE and Edge */
80+
scrollbar-width: none; /* Firefox */
81+
word-break: break-word;
82+
}
83+
#content::-webkit-scrollbar {
84+
display: none;
85+
}
86+
87+
88+
#preview-frame {
89+
width: 100% !important;
90+
height: 49vh !important;
91+
border: none;
92+
overflow-y: scroll;
93+
background-color: #d7ffb3;
94+
-ms-overflow-style: none; /* IE and Edge */
95+
scrollbar-width: none; /* Firefox */
96+
word-break: break-all !important;
97+
98+
}
99+
#preview-frame::-webkit-scrollbar {
100+
display: none;
101+
}
102+
103+
.famfon{
104+
font-family: 'Alegreya Sans SC';
105+
}
106+
107+
.prevmain{
108+
109+
min-height: 100vh !important;
110+
overflow-y: scroll;
111+
overflow-x : scroll;
112+
-ms-overflow-style: none; /* IE and Edge */
113+
scrollbar-width: none; /* Firefox */
114+
background-color: #2c2a2a !important;
115+
word-break: break-word;
116+
color : white;
117+
font-family: 'Alegreya Sans SC';
118+
}
119+
120+
.prevmain::-webkit-scrollbar {
121+
display: none;
122+
}
123+
124+
#preview-frame2{
125+
background-color: #d7ffb3;
126+
word-break: break-word !important;
127+
resize:both;
128+
}

0 commit comments

Comments
 (0)