Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
malwaredllc
GitHub Repository: malwaredllc/byob
Path: blob/master/web-gui/buildyourownbotnet/assets/css/custom.css
1293 views
1
@font-face{
2
font-family: protomolecule;
3
src: url('/assets/fonts/Protomolecule-Light.otf');
4
font-weight: bold;
5
}
6
7
@font-face{
8
font-family: titillium;
9
src: url('/assets/fonts/TitilliumWeb-Light.ttf');
10
/* font-weight: bold;
11
*/}
12
13
h1 {
14
font-family: titillium;
15
color: black;
16
font-weight: bold;
17
}
18
19
h3 {
20
padding: 10px;
21
color: white;
22
}
23
24
a {
25
color: gray;
26
}
27
28
a:hover {
29
color: #4497fc;
30
}
31
32
i {
33
font-size: large;
34
}
35
36
.tile-title .icon i {
37
color: #c9c9c9;
38
}
39
40
.tile-title:hover > .icon i {
41
margin: 0;
42
padding: 0;
43
line-height: 1;
44
color: #4497fc; /*#aa1e28;*/
45
transform: scale(1.1);
46
}
47
48
49
.protomolecule {
50
font-family: protomolecule;
51
color: white
52
}
53
54
.titillium {
55
font-family: titillium;
56
color: white;
57
}
58
59
.module-panel-link {
60
color: grey;
61
font-weight: bold;
62
}
63
64
.module-panel-link:hover {
65
color: teal;
66
}
67
68
.session-row-icon:hover {
69
transform: scale(1.1);
70
cursor: pointer;
71
color: gray;
72
}
73
74
.enum-button {
75
background-color: transparent;
76
padding-left: 20px;
77
padding-right: 20px;
78
padding-top: 20px;
79
padding-bottom: 17px;
80
border: 1px solid transparent;
81
border-radius: 2px
82
}
83
84
.terminal-button {
85
background-color: white;
86
/* padding-left: 20px;
87
padding-right: 20px;
88
padding-top: 20px;
89
padding-bottom: 17px;*/
90
font-size: large;
91
border: 1px solid transparent;
92
border-radius: 2px
93
}
94
95
.terminal-button:hover {
96
/* border: 1px solid grey;*/
97
color: black;
98
cursor: pointer;
99
font-size: large;
100
}
101
102
.remove-session-button {
103
background-color: red;
104
padding-left: 20px;
105
padding-right: 20px;
106
padding-top: 20px;
107
padding-bottom: 17px;
108
border: 1px solid transparent;
109
border-radius: 2px
110
}
111
112
.remove-session-button:hover {
113
/* border: 1px solid grey;*/
114
cursor: pointer;
115
}
116
117
118
#myVideo {
119
position: fixed;
120
right: 0;
121
bottom: 0;
122
min-width: 100%;
123
min-height: 100%;
124
}
125
126
.fullscreen-bg::before {
127
position: absolute;
128
top: 0;
129
right: 0;
130
bottom: 0;
131
left: 0;
132
content: '';
133
134
/* Any overlay color that you want, here I use black with 25% opacity */
135
/* background-color: rgba(0,0,0,0.0);*/
136
}
137
138
.signup {
139
font-family: titillium;
140
font-size: 15px;
141
color: white; /*#aa1e28;*/
142
background-color: black;
143
border: 2px solid white; /*#aa1e28;*/
144
text-align: center;
145
vertical-align: middle;
146
border-radius: 5px;
147
padding-left: 20px;
148
padding-right: 20px;
149
padding-top: 10px;
150
padding-bottom: 10px;
151
}
152
153
.signup > i {
154
color: #4497fc;
155
}
156
157
.signup:hover {
158
color: white;
159
cursor: pointer;
160
border-color: grey;
161
}
162
163
.vertical-center {
164
margin: 0;
165
position: absolute;
166
top: 50%;
167
-ms-transform: translateY(-50%);
168
transform: translateY(-50%);
169
}
170
171
nav .navbar-brand
172
{
173
/* size for brand */
174
font-size: xx-large;
175
}
176
177
178
nav {
179
float: left;
180
background-color: transparent;
181
position: fixed;
182
right: 0;
183
left: 0;
184
z-index: 1;
185
height:200px;
186
font-size: 15px;
187
font-family: titillium;
188
}
189
190
.navbar-collapse > span {
191
font-size: 15px;
192
}
193
194
.navbar-right > i {
195
font-size: 24px;
196
}
197
198
.profile-info > span {
199
font-size: 15px;
200
color: white;
201
}
202
203
.profile-info > img {
204
width: 30;
205
height: 30;
206
}
207
208
209
/* The navbar */
210
.topnav {
211
overflow: hidden;
212
background-color: transparent;
213
}
214
215
.topnav a {
216
float: left;
217
color: #ececec;
218
text-align: center;
219
padding: 14px 16px;
220
text-decoration: none;
221
font-size: 12px;
222
}
223
224
.topnav a:hover {
225
color: white;
226
}
227
228
.topnav-right {
229
float: right;
230
}
231
232
/* The sticky class is added to the navbar with JS when it reaches its scroll position */
233
.sticky {
234
position: fixed;
235
top: 0;
236
width: 100%;
237
}
238
239
/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
240
.sticky + .content {
241
padding-top: 60px;
242
}
243
244
main img
245
{
246
/* constrain images on small screens */
247
max-width: 100%;
248
}
249
250
table {
251
background-color: #333;
252
opacity: 1.0;
253
border-collapse: collapse;
254
width: 100%;
255
color: white;
256
}
257
258
259
tr:hover {background-color:#333333;}
260
261
td {
262
text-align: center;
263
vertical-align: middle;
264
}
265
266
.parallax {
267
background-image: -webkit-linear-gradient(top,
268
rgba(0,0,0,0.9) 0%,
269
rgba(0,0,0,0) 20%,
270
rgba(0,0,0,0) 80%,
271
rgba(0,0,0,0.9) 100%
272
),
273
-webkit-linear-gradient(left,
274
rgba(0,0,0,0.9) 0%,
275
rgba(0,0,0,0) 20%,
276
rgba(0,0,0,0) 80%,
277
rgba(0,0,0,0.9) 100%
278
),
279
url(/assets/images/AdobeStock_239170812.jpg);
280
281
background-image: -moz-linear-gradient(top,
282
rgba(0,0,0,0.9) 0%,
283
rgba(0,0,0,0) 20%,
284
rgba(0,0,0,0) 80%,
285
rgba(0,0,0,0.9) 100%
286
),
287
-moz-linear-gradient(left,
288
rgba(0,0,0,0.9) 0%,
289
rgba(0,0,0,0) 20%,
290
rgba(0,0,0,0) 80%,
291
rgba(0,0,0,0.9) 100%
292
),
293
url(/assets/images/AdobeStock_239170812.jpg);
294
295
background-image: -o-linear-gradient(top,
296
rgba(0,0,0,0.9) 0%,
297
rgba(0,0,0,0) 20%,
298
rgba(0,0,0,0) 80%,
299
rgba(0,0,0,0.9) 100%
300
),
301
-o-linear-gradient(left,
302
rgba(0,0,0,0.9) 0%,
303
rgba(0,0,0,0) 20%,
304
rgba(0,0,0,0) 80%,
305
rgba(0,0,0,0.9) 100%
306
),
307
url(/assets/images/AdobeStock_239170812.jpg);
308
309
background-image: linear-gradient(top,
310
rgba(0,0,0,0.9) 0%,
311
rgba(0,0,0,0) 20%,
312
rgba(0,0,0,0) 80%,
313
rgba(0,0,0,0.9) 100%
314
),
315
linear-gradient(left,
316
rgba(0,0,0,0.9) 0%,
317
rgba(0,0,0,0) 20%,
318
rgba(0,0,0,0) 80%,
319
rgba(0,0,0,0.9) 100%
320
),
321
url(/assets/images/AdobeStock_239170812.jpg);
322
323
height: 500px;
324
z-index: 0;
325
background-attachment: fixed;
326
background-position: center;
327
background-repeat: no-repeat;
328
background-size: cover;
329
}
330
331
.parallax-login {
332
background-image: -webkit-linear-gradient(top,
333
rgba(0,0,0,0.9) 0%,
334
rgba(0,0,0,0) 20%,
335
rgba(0,0,0,0) 80%,
336
rgba(0,0,0,0.9) 100%
337
),
338
-webkit-linear-gradient(left,
339
rgba(0,0,0,0.9) 0%,
340
rgba(0,0,0,0) 20%,
341
rgba(0,0,0,0) 80%,
342
rgba(0,0,0,0.9) 100%
343
),
344
url(/assets/images/AdobeStock_239170812.jpg);
345
346
background-image: -moz-linear-gradient(top,
347
rgba(0,0,0,0.9) 0%,
348
rgba(0,0,0,0) 20%,
349
rgba(0,0,0,0) 80%,
350
rgba(0,0,0,0.9) 100%
351
),
352
-moz-linear-gradient(left,
353
rgba(0,0,0,0.9) 0%,
354
rgba(0,0,0,0) 20%,
355
rgba(0,0,0,0) 80%,
356
rgba(0,0,0,0.9) 100%
357
),
358
url(/assets/images/AdobeStock_239170812.jpg);
359
360
background-image: -o-linear-gradient(top,
361
rgba(0,0,0,0.9) 0%,
362
rgba(0,0,0,0) 20%,
363
rgba(0,0,0,0) 80%,
364
rgba(0,0,0,0.9) 100%
365
),
366
-o-linear-gradient(left,
367
rgba(0,0,0,0.9) 0%,
368
rgba(0,0,0,0) 20%,
369
rgba(0,0,0,0) 80%,
370
rgba(0,0,0,0.9) 100%
371
),
372
url(/assets/images/AdobeStock_239170812.jpg);
373
374
background-image: linear-gradient(top,
375
rgba(0,0,0,0.9) 0%,
376
rgba(0,0,0,0) 20%,
377
rgba(0,0,0,0) 80%,
378
rgba(0,0,0,0.9) 100%
379
),
380
linear-gradient(left,
381
rgba(0,0,0,0.9) 0%,
382
rgba(0,0,0,0) 20%,
383
rgba(0,0,0,0) 80%,
384
rgba(0,0,0,0.9) 100%
385
),
386
url(/assets/images/AdobeStock_239170812.jpg);
387
388
height: 100%;
389
z-index: 0;
390
background-attachment: fixed;
391
background-position: center;
392
background-repeat: no-repeat;
393
background-size: cover;
394
}
395
396
.black-canvas {
397
height: 500px;
398
z-index: 0;
399
background-attachment: fixed;
400
background-position: center;
401
background-repeat: no-repeat;
402
background-size: cover;
403
}
404
405
.collapsible {
406
background-color: #777;
407
color: white;
408
cursor: pointer;
409
padding: 18px;
410
width: 40%;
411
border: none;
412
text-align: left;
413
outline: none;
414
font-size: 15px;
415
}
416
417
.active, .collapsible:hover {
418
background-color: #555;
419
}
420
421
422
.collapsible-online {
423
background-color: #5AD386;
424
color: white;
425
cursor: pointer;
426
padding: 18px;
427
width: 40%;
428
border: none;
429
text-align: left;
430
outline: none;
431
font-size: 15px;
432
}
433
434
.collapsible-online-active, .collapsible-online:hover {
435
background-color: #2CAE5B;
436
}
437
438
/*.collapsible:after {
439
content: '\02795';
440
font-size: 13px;
441
color: white;
442
float: right;
443
margin-left: 5px;
444
}
445
446
.active:after {
447
content: "\2796";
448
}
449
*/
450
451
/*.content {
452
padding: 0 18px;
453
max-height: 0;
454
display: none;
455
overflow: hidden;
456
transition: max-height 0.2s ease-out;
457
background-color: #f1f1f1;
458
}
459
*/
460
.session-button {
461
background-color: #2A2A2A;
462
color: white;
463
cursor: pointer;
464
padding: 18px;
465
width: 33%;
466
border: none;
467
/* position: relative;
468
left: -20px;*/
469
text-align: center;
470
outline: none;
471
font-size: 15px;
472
}
473
474
.session-active, .session-button:hover {
475
background-color:#000000;
476
}
477
478
479
.tasks-button {
480
background-color: DodgerBlue;
481
color: white;
482
cursor: pointer;
483
padding: 18px;
484
width: 33%;
485
/* position: relative;
486
left: 20px;*/
487
border: none;
488
text-align: center;
489
outline: none;
490
font-size: 15px;
491
}
492
493
.tasks-active, .tasks-button:hover {
494
background-color: RoyalBlue;
495
}
496
497
498
.remove-button {
499
background-color: #F96161;
500
color: white;
501
cursor: pointer;
502
padding: 18px;
503
width: 33%;
504
border: none;
505
/* position: relative;
506
left: -20px;*/
507
text-align: center;
508
outline: none;
509
font-size: 15px;
510
}
511
512
.download {
513
background-color: #A16ED1;
514
color: white;
515
cursor: pointer;
516
padding: 18px;
517
border: none;
518
text-align: center;
519
outline: none;
520
font-size: 15px;
521
}
522
523
.terminal-command {
524
position: absolute;
525
left: 10px;
526
}
527
528
.terminal-output {
529
align-items: left;
530
}
531
532
.cmd-cursor-line {
533
text-align: left;
534
}
535
536
537
.download-button {
538
background-color: DodgerBlue;
539
border: none;
540
color: white;
541
padding: 12px 30px;
542
cursor: pointer;
543
font-size: 20px;
544
}
545
546
/* Darker background on mouse-over */
547
.download-button:hover {
548
background-color: RoyalBlue;
549
}
550
551
.buttonload {
552
background-color: #4CAF50; /* Green background */
553
border: none; /* Remove borders */
554
color: white; /* White text */
555
padding: 12px 16px; /* Some padding */
556
font-size: 16px /* Set a font size */
557
}
558
559
/* Darker background on mouse-over */
560
.buttonload:hover {
561
background-color: #2B9D30;
562
}
563
564
.content-section {
565
background: transparent;
566
padding: 10px 20px;
567
/* border: 1px solid #dddddd; */
568
border-radius: 3px;
569
margin-bottom: 20px;
570
}
571
572
.tile-entry:hover {
573
background-color: #272C32;
574
}
575
576
body {
577
background-color: black;
578
}
579
580
.large-header {
581
position: relative;
582
width: 100%;
583
background: transparent;
584
overflow: hidden;
585
background-size: cover;
586
background-position: center center;
587
z-index: 1;
588
}
589
590
@media screen and (min-width: 1140px) {
591
.main-title {
592
position: absolute;
593
margin: 0;
594
padding: 0;
595
margin-left:auto;
596
margin-right:auto;
597
color: #f9f1e9;
598
text-align: center;
599
top: 250px;
600
left: 30%;
601
-webkit-transform: translate3d(-50%,-50%,0);
602
transform: translate(-50%,-50%,0);
603
}
604
}
605
606
@media screen and (max-width: 1140px) {
607
.main-title {
608
position: absolute;
609
margin: 0;
610
padding: 0;
611
margin-left:auto;
612
margin-right:auto;
613
color: #f9f1e9;
614
text-align: center;
615
top: 250px;
616
left: 50%;
617
-webkit-transform: translate3d(-50%,-50%,0);
618
transform: translate(-50%,-50%,0);
619
}
620
}
621
622
.user-counter {
623
position: absolute;
624
margin: 0;
625
padding: 0;
626
color: #f9f1e9;
627
text-align: left;
628
/* top: 350px;
629
left: 100px;*/
630
-webkit-transform: translate3d(-50%,-50%,0);
631
transform: translate(-50%,-50%,0);
632
633
font-size: 24px;
634
line-height: 31px;
635
font-weight: 600;
636
font-family: titillium;
637
padding: 9px 14px;
638
padding-right: 7px;
639
}
640
641
.user-counter-label {
642
position: absolute;
643
margin: 0;
644
color: #f9f1e9;
645
text-align: left;
646
/* top: 350px;
647
left: 220px;*/
648
-webkit-transform: translate3d(-50%,-50%,0);
649
transform: translate(-50%,-50%,0);
650
font-size: 24px;
651
line-height: 31px;
652
font-family: titillium;
653
padding: 9px 14px;
654
padding-right: 7px;
655
}
656
657
658
.bot-counter {
659
position: absolute;
660
margin: 0;
661
padding: 0;
662
color: #f9f1e9;
663
text-align: left;
664
/* top: 375px;
665
left: 100px;*/
666
-webkit-transform: translate3d(-50%,-50%,0);
667
transform: translate(-50%,-50%,0);
668
669
font-size: 24px;
670
line-height: 31px;
671
font-weight: 600;
672
font-family: titillium;
673
padding: 9px 14px;
674
padding-right: 7px;
675
}
676
677
.bot-counter-label {
678
position: absolute;
679
margin: 0;
680
color: #f9f1e9;
681
text-align: left;
682
/* top: 375px;
683
left: 188px;*/
684
-webkit-transform: translate3d(-50%,-50%,0);
685
transform: translate(-50%,-50%,0);
686
font-size: 24px;
687
line-height: 31px;
688
font-family: titillium;
689
padding: 9px 14px;
690
padding-right: 7px;
691
}
692
.demo-1 .main-title{
693
/* text-transform: uppercase;*/
694
font-size: 36px;
695
line-height: 31px;
696
letter-spacing: 4px;
697
font-weight: 600;
698
border: solid 4px #fff;
699
padding: 9px 14px;
700
padding-right: 7px;
701
}
702
703
.tile-title .title > p {
704
font-size: 15px;
705
}
706
707
.tile-title .title > h3 {
708
font-size: 24px;
709
}
710
711
.tile-title:hover {
712
cursor:pointer;
713
}
714
715
#payloads-info > li {
716
font-size: 15px;
717
}
718
719
.panel-title {
720
font-size: 18px !important;
721
}
722
723
#module-info > li {
724
font-size: 12px;
725
}
726
727
#module-description {
728
padding: 5px;
729
font-size: 15px;
730
}
731
732
#module-platforms {
733
padding: 5px;
734
font-size: 15px;
735
}
736
737
#execute-button {
738
padding: 10px;
739
}
740
741
.entypo-download:hover {
742
color: black !important;
743
}
744
745
.responsive {
746
width: 100%;
747
height: auto;
748
}
749
750
.modal-backdrop {
751
z-index: -1;
752
}
753
754
.navbar > li:active {
755
background-color: white;
756
color: black;
757
}
758
759
@media screen and (max-width: 1140px) {
760
#vertical-carousel {
761
display: none;
762
visibility: hidden;
763
clear: both;
764
}
765
}
766
767
.carousel__item-body > p {
768
font-size: 15px;
769
}
770
771
.carousel__item-body > p.title {
772
font-size: 30px !important;
773
line-height: 20px !important;
774
padding-top: 10px;
775
font-weight: bold;
776
}
777
778
hr {
779
border-color: #4497fc;
780
}
781
782
.join-discord {
783
color: white;
784
font-size: 24px;
785
}
786
787
.join-discord:hover {
788
cursor: pointer;
789
}
790
791
.join-discord:hover > img {
792
margin: 0;
793
padding: 0;
794
line-height: 1;
795
transform: scale(1.1);
796
}
797
798
.label {
799
font-size: 18px !important;
800
color: white !important;
801
}
802
803
@media screen and (min-width: 1060px) {
804
#counters-row {
805
height: 300px !important;
806
transform: translate(7%, -25%) !important;
807
}
808
#forks-chart {
809
position: relative !important;
810
left: 0 !important;
811
transform: translateX(250%) !important;
812
}
813
#downloads-chart {
814
position: relative !important;
815
right: 0 !important;
816
transform: translateX(500%) !important;
817
}
818
}
819
820
@media screen and (max-width: 1060px) {
821
#counters-row {
822
height: 750px !important;
823
}
824
#stars-chart {
825
position: absolute !important;
826
left: 27% !important;
827
transform: translateY(-100px);
828
}
829
#forks-chart {
830
position: absolute !important;
831
left: 27% !important;
832
transform: translateY(150px);
833
}
834
#downloads-chart {
835
position: absolute !important;
836
left: 27% !important;
837
transform: translateY(400px);
838
}
839
}
840
841
@media screen and (max-width: 1060px) {
842
#toc {
843
visibility: false;
844
display: none;
845
}
846
}
847
848
@media screen and (min-width: 1060px) {
849
#toc {
850
visibility: true;
851
width: 300px;
852
}
853
}
854