-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
161cd26
commit c61a370
Showing
7 changed files
with
98 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<h2>Open Issues</h2> | ||
|
||
<div class="open-issues"> | ||
<div class="open-issues-section open-issues-section--beginner"> | ||
<div class="open-issues-section__content"> | ||
<div class="open-issues-section__title"> | ||
Beginner Friendly | ||
</div> | ||
<ul class="issues"></ul> | ||
</div> | ||
</div> | ||
<div class="open-issues-section open-issues-section--help-wanted"> | ||
<div class="open-issues-section__content"> | ||
<div class="open-issues-section__title"> | ||
Help Wanted | ||
</div> | ||
<ul class="issues"></ul> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,63 @@ | ||
.openIssues { | ||
.open-issues { | ||
@include flexbox; | ||
@include flex-direction(column); | ||
background: #F9F9F9; | ||
margin-bottom: 48px; | ||
|
||
@media (min-width: $screen-md-min) { | ||
@include flex-direction(row); | ||
} | ||
|
||
h2 { | ||
font-size: 2rem; | ||
margin: 0; | ||
} | ||
|
||
ul { | ||
list-style:none; | ||
padding-left:0; | ||
|
||
li { | ||
margin-bottom: 10px; | ||
|
||
a { | ||
color: #323330; | ||
} | ||
|
||
span.issueNumber { | ||
background-color: #f5da55; | ||
padding: 3px 5px; | ||
margin-right: 5px; | ||
display:inline-block; | ||
min-width: 48px; | ||
text-align:right; | ||
} | ||
} | ||
} | ||
} | ||
list-style: none; | ||
padding-left: 0; | ||
} | ||
} | ||
|
||
.open-issues-section { | ||
@include align-self(stretch); | ||
@include flex(1); | ||
@include flexbox; | ||
margin: 12px; | ||
|
||
&__content { | ||
@include flex(1); | ||
background: #FFF; | ||
padding: 24px; | ||
} | ||
|
||
&__title { | ||
border-bottom: 1px solid #EEE; | ||
font-size: 2rem; | ||
font-weight: 700; | ||
padding-bottom: 9px; | ||
} | ||
} | ||
|
||
.issue { | ||
margin: 12px 0; | ||
|
||
a { | ||
@include align-items(flex-start); | ||
@include flexbox; | ||
color: #323330; | ||
} | ||
|
||
&__number { | ||
background-color: #f5da55; | ||
display: inline-block; | ||
margin-right: 8px; | ||
min-width: 48px; | ||
padding: 3px 5px; | ||
text-align: right; | ||
} | ||
|
||
&__title { | ||
padding-top: 3px; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters