-
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
84115ef
commit 7b0527d
Showing
98 changed files
with
1,828 additions
and
1,535 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ testem.log | |
yarn-error.log | ||
*.key | ||
*.crt | ||
*.css | ||
settings*.json | ||
|
||
# e2e | ||
|
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,33 @@ | ||
lb-about h2 { | ||
font-size: 2em; | ||
} | ||
|
||
lb-about p { | ||
margin: 2px 10px; | ||
} | ||
|
||
lb-about span { | ||
display: inline-block; | ||
width: 220px; | ||
} | ||
|
||
lb-about a { | ||
text-decoration: underline; | ||
} | ||
|
||
lb-about img { | ||
-webkit-clip-path: circle(50% at 50% 50%); | ||
clip-path: circle(50% at 50% 50%); | ||
height: 100px; | ||
} | ||
|
||
lb-about .contributor { | ||
display: inline-block; | ||
margin: 10px; | ||
} | ||
|
||
lb-about .contributor p { | ||
font-size: 12px; | ||
margin: 10px 0; | ||
text-align: center; | ||
} |
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
Empty file.
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,10 +1,6 @@ | ||
import {Component} from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'lb-app', | ||
styleUrls: ['./app.component.css'], | ||
template: `<router-outlet></router-outlet>` | ||
}) | ||
@Component({selector: 'lb-app', template: `<router-outlet></router-outlet>`}) | ||
|
||
export class AppComponent { | ||
} |
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,36 @@ | ||
:host { | ||
display: flex; | ||
} | ||
|
||
:host > div { | ||
position: absolute; | ||
width: 74px; | ||
} | ||
|
||
.ability { | ||
display: block; | ||
height: 36px; | ||
padding: 2px; | ||
} | ||
|
||
.ability:not(.ult) { | ||
margin-left: 5px; | ||
} | ||
|
||
.ability.ult { | ||
height: 46px; | ||
padding: 2px; | ||
} | ||
|
||
.x.axis.level-line text, | ||
.x.axis.level-text line { | ||
display: none; | ||
} | ||
|
||
.x.axis .domain { | ||
stroke: none; | ||
} | ||
|
||
.x.axis.level-line > g:first-of-type > line { | ||
display: none; | ||
} |
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,76 @@ | ||
.content { | ||
background-color: #fff; | ||
} | ||
|
||
.title { | ||
display: flex; | ||
height: 80px; | ||
margin-top: -80px; | ||
padding-left: 30px; | ||
|
||
img { | ||
height: 80px; | ||
width: 80px; | ||
} | ||
|
||
h2 { | ||
font-size: 1.8em; | ||
margin: 32px 0 0 12px; | ||
} | ||
} | ||
|
||
lb-preview lb-item p.gold, | ||
lb-item-slot lb-item p.gold { | ||
background-color: rgba(0,0,0,.7); | ||
border-bottom-left-radius: 5px; | ||
border-top-right-radius: 5px; | ||
min-width: 0; | ||
padding: 0 2px; | ||
position: absolute; | ||
} | ||
|
||
lb-preview lb-item p.gold { | ||
margin: 30px 0 0 0; | ||
} | ||
|
||
lb-item-slot lb-item p.gold { | ||
margin: 31px 0 0 0; | ||
} | ||
|
||
/* media */ | ||
|
||
@media (max-width: 1300px) { | ||
.title { | ||
height: 60px; | ||
margin-top: -60px; | ||
|
||
img { | ||
height: 60px; | ||
width: 60px; | ||
} | ||
|
||
h2 { | ||
font-size: 1.4em; | ||
margin: 20px 0 0 10px; | ||
} | ||
} | ||
} | ||
|
||
@media (max-width: 850px) { | ||
.title h2 { | ||
display: none; | ||
} | ||
} | ||
|
||
@media (max-width: 575px) { | ||
.title { | ||
background-color: #ddd; | ||
margin-top: 0; | ||
padding: 0; | ||
|
||
h2 { | ||
display: inherit; | ||
font-size: 1.6em; | ||
} | ||
} | ||
} |
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
Oops, something went wrong.