forked from dillonzq/LoveIt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(search): add local search (dillonzq#231)
* feat(search): add local search * docs: add docs for search
- Loading branch information
Showing
92 changed files
with
4,823 additions
and
1,194 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
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 |
---|---|---|
|
@@ -14,11 +14,3 @@ | |
} | ||
} | ||
} | ||
|
||
.footer { | ||
height: 2rem; | ||
width: 100%; | ||
text-align: center; | ||
line-height: 1.5rem; | ||
padding-top: 2rem; | ||
} |
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,5 @@ | ||
@mixin blur { | ||
.blur & { | ||
@include filter(blur(1.5px)); | ||
} | ||
} |
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,69 @@ | ||
@mixin border-radius($value) { | ||
-webkit-border-radius: $value; | ||
-moz-border-radius: $value; | ||
border-radius: $value; | ||
} | ||
|
||
@mixin box-shadow($value) { | ||
-webkit-box-shadow: $value; | ||
box-shadow: $value; | ||
} | ||
|
||
@mixin transition($values...) { | ||
-webkit-transition: $values; | ||
-moz-transition: $values; | ||
-o-transition: $values; | ||
transition: $values; | ||
} | ||
|
||
@mixin transform($value) { | ||
-webkit-transform: $value; | ||
-moz-transform: $value; | ||
-ms-transform: $value; | ||
-o-transform: $value; | ||
transform: $value; | ||
} | ||
|
||
@mixin filter($value) { | ||
-webkit-filter: $value; | ||
-moz-filter: $value; | ||
-ms-filter: $value; | ||
filter: $value; | ||
} | ||
|
||
@mixin flex($value) { | ||
-webkit-flex: $value; | ||
flex: $value; | ||
} | ||
|
||
@mixin box($orient) { | ||
display: -moz-box; | ||
display: -webkit-box; | ||
display: box; | ||
|
||
-moz-box-orient: $orient; | ||
-webkit-box-orient: $orient; | ||
box-orient: $orient; | ||
} | ||
|
||
@mixin placeholder($color) { | ||
input::-webkit-input-placeholder{ | ||
color: $color; | ||
} | ||
|
||
input:-moz-placeholder{ | ||
color: $color; | ||
} | ||
|
||
input::-moz-placeholder{ | ||
color: $color; | ||
} | ||
|
||
input:-ms-input-placeholder{ | ||
color: $color; | ||
} | ||
|
||
input::placeholder { | ||
color: $color; | ||
} | ||
} |
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,4 @@ | ||
@import "_compatibility"; | ||
@import "_link"; | ||
@import "_blur"; | ||
@import "_summary"; |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#content-404 { | ||
font-size: 1.8rem; | ||
line-height: 3rem; | ||
transform: translateY(30vh); | ||
@include transform(translateY(30vh)); | ||
text-align: center; | ||
} |
Oops, something went wrong.