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

Commit 670513e

Browse files
anupm12prateek76
authored andcommitted
Ribbon covers hamburger menu fixes #359 (#360)
* Add hover effect to footer icon fixes #344 * Changed the hover effect also added it to the participant card * Changed transition time and transition scale * Added sticky github icon instead of ribbon fixes #359 * Added ribbon back * Fixed responsive issue and vertical scroll * Solved few more conflicts
1 parent 43ac063 commit 670513e

File tree

2 files changed

+791
-794
lines changed

2 files changed

+791
-794
lines changed

css/main.css

Lines changed: 74 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,31 @@
44
* Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-4-col-portfolio/blob/master/LICENSE)
55
*/
66

7-
body{
8-
overflow-x:hidden;
7+
8+
html,body
9+
{
10+
width: 100%;
11+
height: 100%;
12+
margin: 0px;
13+
padding: 0px;
14+
overflow-x: hidden;
915
}
1016

1117

12-
.overlapissue
13-
{
14-
15-
z-index:1;!important
18+
.overlapissue{
19+
z-index: 1 !important;
1620
}
1721

1822

1923

2024
.header {
2125
position: fixed;
2226
top: 79px;
23-
2427
width: 100%;
2528
background-color: #f1f1f1;
2629
}
2730

2831

29-
3032
.progress-container {
3133
width: 100%;
3234
height: 5px;
@@ -40,12 +42,6 @@ body{
4042
}
4143

4244

43-
44-
body {
45-
margin: 0;
46-
padding: 0;
47-
}
48-
4945
#mainNav {
5046
padding: 1em 0;
5147

@@ -694,4 +690,68 @@ input:checked + .slider:before {
694690
.fas:hover {
695691
transform: scale(1.2);
696692
transition-duration: 0.4s;
693+
}
694+
695+
696+
/* sticky github */
697+
.sticky-container{
698+
padding: 0px;
699+
margin: 0px;
700+
position: fixed;
701+
right: -100px;
702+
top: 200px;
703+
width: 192px;
704+
}
705+
706+
.sticky li{
707+
text-align: left;
708+
list-style-type: none;
709+
background-color: #343A40;
710+
color: #efefef;
711+
height: 40px;
712+
border-top-left-radius: 10px;
713+
border-bottom-left-radius: 10px;
714+
-webkit-transition: all 0.40s ease-in-out;
715+
-moz-transition: all 0.40s ease-in-out;
716+
-o-transition: all 0.40s ease-in-out;
717+
transition: all 0.40s ease-in-out;
718+
cursor: pointer;
719+
}
720+
721+
.sticky li:hover{
722+
margin-left: -30px;
723+
}
724+
725+
.sticky li a{
726+
text-decoration: none;
727+
color: white;
728+
font-size: 20px;
729+
}
730+
731+
.fab-c {
732+
margin: 10px !important;
733+
}
734+
735+
/* .fab-c:hover {
736+
transition: none;
737+
transform: none;
738+
} */
739+
740+
.sticky-github {
741+
display: none;
742+
}
743+
744+
@media screen and (max-width: 991px) {
745+
.github-fork-ribbon {
746+
display: none !important;
747+
}
748+
749+
.sticky-github {
750+
display: inline;
751+
}
752+
}
753+
754+
.border-heading {
755+
display: block;
756+
border-bottom: 2px solid gray;
697757
}

0 commit comments

Comments
 (0)