added profile page, action and level list
parent
3a999c9be7
commit
0d96caa5b0
@ -1,25 +1,18 @@
|
||||
@import '../../../styles/mixins.sass'
|
||||
@import '../../../styles/vars.sass'
|
||||
|
||||
#headerbar
|
||||
@include gridPosition(1, 2, 1, 4)
|
||||
#profile
|
||||
background-color: $cSecondaryBackground
|
||||
grid-template: 3% 94% 3% / 10% 80% 10%
|
||||
display: grid
|
||||
grid-template: 100% /30% 10% 10% 10% 10% 10% 10% 10%
|
||||
background-color: $cHeadPrimaryBackground
|
||||
color: $cHeadFontColor
|
||||
min-height: 100vh
|
||||
max-height: 100vh
|
||||
|
||||
#chatcontainer
|
||||
@include gridPosition(2, 3, 1, 2)
|
||||
background-color: $cBoxBodyBackground
|
||||
#profilecontainer
|
||||
@include gridPosition(2, 2,2,2)
|
||||
//grid-template: 15% 15% 15% 15% 15% 15% / 100%
|
||||
background-color: $cPrimaryBackground
|
||||
padding: 1em
|
||||
|
||||
#feedcontainer
|
||||
@include gridPosition(2, 3, 2, 3)
|
||||
display: grid
|
||||
grid-template: 10% 90% /100%
|
||||
background-color: $cSecondaryBackground
|
||||
|
||||
#socialcontainer
|
||||
@include gridPosition(2, 3, 3, 4)
|
||||
display: grid
|
||||
grid-template: 50% 50% /100%
|
||||
background-color: $cBoxBodyBackground
|
||||
th
|
||||
text-align: left
|
@ -0,0 +1,11 @@
|
||||
export class Levellist{
|
||||
levels: {level: number, name: string, points: number}[] = [
|
||||
{level: 0, name: "Green Horn",points: 0},
|
||||
{level: 1, name: "Good Willed",points: 100 },
|
||||
{level: 2, name: "Helper", points: 200 },
|
||||
{level: 3, name: "World Saver", points: 300 },
|
||||
{level: 4, name: "Hero of the Green Country", points: 400 },
|
||||
{level: 5, name: "Champion of the Earth", points: 500 },
|
||||
{level: 6, name: "Intergallactic Superhero", points: 600 },
|
||||
];
|
||||
}
|
Loading…
Reference in New Issue