Skip to content
This repository was archived by the owner on Jan 11, 2020. It is now read-only.

Commit be6e2d5

Browse files
anupm12Anupam-dagar
authored andcommitted
List issues from all projects fixes #245 (#330)
* Typing animation to hello world fixes #271 * branch even * List all issues from all projects fixes #245 * Solved conflicting classes
1 parent 8cb711a commit be6e2d5

File tree

4 files changed

+1083
-1
lines changed

4 files changed

+1083
-1
lines changed

css/main.css

Lines changed: 120 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -409,7 +409,6 @@ input:checked + .slider:before {
409409
font-size:20px;
410410
}
411411

412-
}
413412

414413
@media screen and (max-width: 991px) {
415414
.navbar-brand{
@@ -506,3 +505,123 @@ input:checked + .slider:before {
506505

507506
}
508507

508+
/* list all issues */
509+
510+
/* on click overlay starts */
511+
.overlay {
512+
height: 100%;
513+
width: 0;
514+
position: fixed; /* Stay in place */
515+
z-index: 1; /* Sit on top */
516+
left: 0;
517+
top: 0;
518+
background-color: #fff;
519+
overflow-x: hidden; /* Disable horizontal scroll */
520+
transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
521+
}
522+
523+
/* Position the content inside the overlay */
524+
.overlay-content {
525+
position: relative;
526+
top: 25%; /* 25% from the top */
527+
width: 100%; /* 100% width */
528+
text-align: center; /* Centered text/links */
529+
margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
530+
}
531+
532+
/* The navigation links inside the overlay */
533+
.overlay a {
534+
padding: 8px;
535+
text-decoration: none;
536+
font-size: 36px;
537+
color: #818181;
538+
display: inline; /* Display block instead of inline */
539+
transition: 0.3s; /* Transition effects on hover (color) */
540+
}
541+
542+
/* Position the close button (top right corner) */
543+
.overlay .closebtn {
544+
position: absolute;
545+
top: 20px;
546+
right: 45px;
547+
font-size: 60px;
548+
}
549+
550+
/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
551+
@media screen and (max-height: 450px) {
552+
.overlay a {font-size: 20px}
553+
.overlay .closebtn {
554+
font-size: 40px;
555+
top: 15px;
556+
right: 35px;
557+
}
558+
}
559+
/* on click overlay ends */
560+
561+
562+
/* repository buttons */
563+
.row-c {
564+
margin: 0px !important;
565+
padding: 0px !important;
566+
}
567+
568+
/* .col {
569+
margin: 0px !important;
570+
padding: 0px !important;
571+
} */
572+
573+
.center-c {
574+
display: flex;
575+
align-items: center;
576+
justify-content: center;
577+
}
578+
579+
.issue-title {
580+
background-color: inherit;
581+
color: #000;
582+
padding: 0px 0px 20px 15px;
583+
}
584+
585+
.issue-btn-section {
586+
background-color: #fff;
587+
}
588+
589+
.issue-btn-section .btn {
590+
margin: 0.5rem 0rem 0.5rem 0rem;
591+
height: 2rem;
592+
width: 100%;
593+
padding: 0px 3px 0px 3px;
594+
}
595+
596+
597+
/* overlay content styling */
598+
.card-col {
599+
display: flex;
600+
align-items: center;
601+
justify-content: center;
602+
padding-bottom: 2.5rem;
603+
}
604+
605+
.card-c {
606+
border-radius: 1rem !important;
607+
}
608+
609+
.card-title-c {
610+
font-size: 2rem !important;
611+
}
612+
613+
.card-subtitle-c {
614+
font-size: 1.5rem !important;
615+
}
616+
617+
.card-text-c {
618+
font-size: 1.3rem !important;
619+
}
620+
621+
.btn-c {
622+
padding: 0rem .3rem 0rem .3rem;
623+
}
624+
625+
.card-link-c {
626+
align-items: left;
627+
}

0 commit comments

Comments
 (0)