-
Notifications
You must be signed in to change notification settings - Fork 572
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
3c78385
commit e4168e9
Showing
14 changed files
with
3,785 additions
and
4,307 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
.btn-primary { | ||
display: inline-block; | ||
padding: 5px 8px; | ||
background: $red-normal; | ||
border-bottom: 4px solid $red-dark; | ||
border-right: 4px solid $red-dark; | ||
border-top-right-radius: 5px; | ||
border-bottom-left-radius: 5px; | ||
border-top-left-radius: 5px; | ||
border-bottom-right-radius: 5px; | ||
font-weight: 600; | ||
font-size: 16px; | ||
position: relative; | ||
height: 34px; | ||
line-height: 20px; | ||
outline-width: 0px; | ||
vertical-align: middle; | ||
color: $white; | ||
} | ||
|
||
.btn-primary:hover { | ||
background: $red-light; | ||
} | ||
|
||
.btn-primary:active { | ||
background: $red-dark2; | ||
} | ||
|
||
.btn-primary:disabled { | ||
background: $red-normal; | ||
opacity: 0.4; | ||
} | ||
|
||
.btn-outline { | ||
color: $gray-dark; | ||
background: none; | ||
vertical-align: middle; | ||
border-width: 0px; | ||
padding: 8px 6px!important; | ||
} | ||
|
||
.btn-outline:hover { | ||
color: $white; | ||
background: $red-normal; | ||
border-width: 0px; | ||
} | ||
|
||
.btn-outline:disabled { | ||
color: $white; | ||
background: none; | ||
border-width: 0px; | ||
} | ||
|
||
.reactions-popover summary { | ||
padding: 8px 10px!important; | ||
} |
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,4 @@ | ||
body, .markdown-body, .textarea { | ||
font-family: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Source Han Sans CN', 'Source Han Serif', 'Songti SC', serif; | ||
font-size: 16px!important; | ||
} |
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,4 @@ | ||
@import "./variables"; | ||
@import "../../index"; | ||
@import "./syntax"; | ||
@import "./button.scss"; |
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,43 @@ | ||
.timeline summary:hover { | ||
color: $red-light; | ||
} | ||
|
||
.timeline a { | ||
text-decoration: none; | ||
} | ||
|
||
.markdown-body a { | ||
color: $red-light; | ||
} | ||
|
||
.markdown-body pre, code { | ||
font-size: 75%!important; | ||
} | ||
|
||
.markdown-info svg { | ||
vertical-align: -4px!important; | ||
padding-left: 2px; | ||
} | ||
|
||
.timeline-comment button { | ||
font-size: 14px; | ||
} | ||
|
||
.timeline-comment textarea { | ||
font-size: 16px; | ||
line-height: 24px; | ||
} | ||
|
||
.comment-footer { | ||
border-width: 0; | ||
line-height: 25px; | ||
height: 40px!important; | ||
} | ||
|
||
.timeline-header em { | ||
display: none; | ||
} | ||
|
||
.timeline-header .text-link { | ||
font-style: italic; | ||
} |
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 @@ | ||
@import "github-syntax-light/lib/github-light"; |
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,6 @@ | ||
@import "./variables"; | ||
@import "../../utterances"; | ||
@import "./syntax"; | ||
@import "./button.scss"; | ||
@import "./font.scss"; | ||
@import "./misc.scss" |
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,19 @@ | ||
$white: #ffffff; | ||
$black: #000000; | ||
$gray: #eeeeee; | ||
$gray-dark: #999999; | ||
$red-dark: #5E0001; | ||
$red-dark2: #940002; | ||
$red-normal: #B40203; | ||
$red-light: #C80004; | ||
|
||
$bg-white: $white; | ||
$bg-gray: $white; | ||
$bg-gray-light: $white; | ||
$border-gray: $gray; | ||
$border-gray-dark: $gray; | ||
$text-gray: $black; | ||
$text-gray-dark: $black; | ||
$button-normal: $red-normal; | ||
$button-hover: $red-light; | ||
$button-pressed: $red-dark; |
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,2 +1,2 @@ | ||
// export const UTTERANCES_API = 'http://localhost:7000'; | ||
export const UTTERANCES_API = 'https://api.utteranc.es'; | ||
export const UTTERANCES_API = 'https://utterances-oauth.allenfrostline.workers.dev'; |
Oops, something went wrong.