-
Notifications
You must be signed in to change notification settings - Fork 379
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
8a8db51
commit eca2a2b
Showing
8 changed files
with
422 additions
and
35 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 |
---|---|---|
@@ -0,0 +1,212 @@ | ||
body { | ||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | ||
margin: 0; | ||
padding: 0; | ||
width: 100vw; | ||
height: 100vh; | ||
position: absolute; | ||
display: grid; | ||
justify-items: center; | ||
align-items: center; | ||
color: #ffffff; | ||
} | ||
|
||
h1, h2, h3, h4, h5, h6 { | ||
margin: 8px 0; | ||
} | ||
|
||
p { | ||
margin: 0; | ||
} | ||
|
||
.spacer { | ||
flex: 1; | ||
} | ||
|
||
.toolbar { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
right: 0; | ||
height: 60px; | ||
display: grid; | ||
align-items: center; | ||
background-color: #3d3d3d; | ||
color: white; | ||
font-weight: 600; | ||
justify-items: center; | ||
} | ||
|
||
.toolbar img { | ||
margin: 0 16px; | ||
} | ||
|
||
.content { | ||
display: flex; | ||
margin: 82px auto 32px; | ||
padding: 0 16px; | ||
max-width: 960px; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
svg.material-icons { | ||
height: 24px; | ||
width: auto; | ||
} | ||
|
||
svg.material-icons:not(:last-child) { | ||
margin-right: 8px; | ||
} | ||
|
||
.card svg.material-icons path { | ||
fill: #888; | ||
} | ||
|
||
.card-container { | ||
display: flex; | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
margin-top: 16px; | ||
} | ||
|
||
.card { | ||
all: unset; | ||
border-radius: 4px; | ||
border: 1px solid #eee; | ||
background-color: #fafafa; | ||
height: 40px; | ||
width: 200px; | ||
margin: 0 8px 16px; | ||
padding: 16px; | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: center; | ||
align-items: center; | ||
transition: all 0.2s ease-in-out; | ||
line-height: 24px; | ||
} | ||
|
||
.card-container .card:not(:last-child) { | ||
margin-right: 0; | ||
} | ||
|
||
.card.card-small { | ||
height: 16px; | ||
width: 168px; | ||
} | ||
|
||
.card-container .card:not(.highlight-card) { | ||
cursor: pointer; | ||
} | ||
|
||
.card-container .card:not(.highlight-card):hover { | ||
transform: translateY(-3px); | ||
box-shadow: 0 4px 17px rgba(0, 0, 0, 0.35); | ||
} | ||
|
||
.card-container .card:not(.highlight-card):hover .material-icons path { | ||
fill: rgb(105, 103, 103); | ||
} | ||
|
||
.card.highlight-card { | ||
background-color: #1976d2; | ||
color: white; | ||
font-weight: 600; | ||
border: none; | ||
width: auto; | ||
min-width: 30%; | ||
position: relative; | ||
} | ||
|
||
.card.card.highlight-card span { | ||
margin-left: 60px; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: #ffffff; | ||
} | ||
|
||
.circle-link:hover { | ||
transform: translateY(-0.25rem); | ||
box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
footer { | ||
margin-top: 8px; | ||
display: flex; | ||
align-items: center; | ||
line-height: 20px; | ||
} | ||
|
||
footer a { | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
/* Responsive Styles */ | ||
|
||
@media screen and (max-width: 767px) { | ||
.card-container>*:not(.circle-link), .terminal { | ||
width: 100%; | ||
} | ||
.card:not(.highlight-card) { | ||
height: 16px; | ||
margin: 8px 0; | ||
} | ||
.card.highlight-card span { | ||
margin-left: 72px; | ||
} | ||
svg#rocket-smoke { | ||
right: 120px; | ||
transform: rotate(-5deg); | ||
} | ||
} | ||
|
||
@media screen and (max-width: 575px) { | ||
svg#rocket-smoke { | ||
display: none; | ||
visibility: hidden; | ||
} | ||
} | ||
|
||
pre { | ||
margin: 0; | ||
font-size: 14px; | ||
} | ||
|
||
span { | ||
display: inline-block; | ||
line-height: 20px; | ||
} | ||
|
||
span.highlight { | ||
background: #ed67ffd8; | ||
} | ||
|
||
span.begin { | ||
border-top-left-radius: 5px; | ||
border-bottom-left-radius: 5px; | ||
} | ||
|
||
span.end { | ||
border-top-right-radius: 5px; | ||
border-bottom-right-radius: 5px; | ||
} | ||
|
||
pre.merge-end>span:last-child { | ||
border-bottom-right-radius: 0; | ||
} | ||
|
||
pre.merge-end+pre>span:last-child { | ||
border-top-right-radius: 0; | ||
} | ||
|
||
pre.merge-begin>span:first-child { | ||
border-bottom-left-radius: 0; | ||
} | ||
|
||
pre.merge-begin+pre>span:first-child { | ||
border-top-left-radius: 0; | ||
} |
Oops, something went wrong.