-
Notifications
You must be signed in to change notification settings - Fork 3
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
09e6b99
commit 966a947
Showing
20 changed files
with
2,167 additions
and
121 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@font-face { | ||
font-family: "Museo Sans"; | ||
src: url('museo-sans-500.ttf') format('truetype'); | ||
font-weight: 500; | ||
} | ||
|
||
@font-face { | ||
font-family: "Museo Sans"; | ||
src: url('museo-sans-400.ttf') format('truetype'); | ||
font-weight: 400; | ||
} | ||
|
||
@font-face { | ||
font-family: "Museo Sans"; | ||
src: url('museo-sans-300.ttf') format('truetype'); | ||
font-weight: 300; | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
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,36 +1,32 @@ | ||
a { | ||
font-family: Museo Sans, "Museo Sans", "Arial", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Helvetica Neue", "sans-serif"; | ||
font-weight: 500; | ||
text-decoration: none; | ||
|
||
&::after { | ||
content: ">" | ||
} | ||
|
||
font-size: 15.6px; | ||
padding: 0 6px 1px; | ||
margin-top: 1px; | ||
background-color: #f6f6f6; | ||
border-radius: 3px; | ||
font-weight: 600; | ||
color: #555; | ||
transition: all .2s ease; | ||
// border 1px solid #EEE | ||
box-sizing: border-box; | ||
|
||
&:hover { | ||
color: white; | ||
background: #4682b4; | ||
} | ||
|
||
} | ||
|
||
.p-space { | ||
display: flex; | ||
flex-wrap: nowrap; | ||
justify-content: space-between; | ||
} | ||
|
||
ul { | ||
padding-left: 1em; | ||
a { | ||
font-family: "Museo Sans", "Arial", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Roboto", "Oxygen", "Helvetica Neue", "sans-serif"; | ||
font-weight: 500; | ||
text-decoration: none; | ||
|
||
font-size: 15.6px; | ||
padding: 0 6px 1px; | ||
margin-top: 1px; | ||
background-color: #f6f6f6; | ||
border-radius: 3px; | ||
font-weight: 600; | ||
color: #555; | ||
transition: all .2s ease; | ||
// border 1px solid #EEE | ||
box-sizing: border-box; | ||
|
||
&:hover { | ||
color: white; | ||
background: #4682b4; | ||
} | ||
|
||
} | ||
|
||
ul { | ||
padding-left: 1em; | ||
} | ||
} |
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,13 +1,6 @@ | ||
.content { | ||
position: relative; | ||
// size: 1024px auto; | ||
width: 100%; | ||
height: 100%; | ||
// margin: 55px auto; | ||
box-shadow: 0 0 15px silver; | ||
border-radius: 5px; | ||
transition: all .2s ease-out; | ||
|
||
overflow: auto; | ||
|
||
} |
Oops, something went wrong.