Started repositioning buttons.Can't remove box-shadow from panel
This commit is contained in:
parent
d0f3aeec91
commit
74f692072e
3 changed files with 22 additions and 13 deletions
|
@ -4,6 +4,15 @@
|
||||||
#main-account-view
|
#main-account-view
|
||||||
#account-links
|
#account-links
|
||||||
width: 300px
|
width: 300px
|
||||||
|
.panel
|
||||||
|
background-color: rgba(240,229,199,0)
|
||||||
|
margin-bottom: 150px
|
||||||
|
.panel-default
|
||||||
|
box-shadow: none
|
||||||
|
border: none
|
||||||
|
|
||||||
#account-links .btn
|
#account-links .btn
|
||||||
width: 100%
|
width: 100%
|
||||||
|
margin-bottom: 10%
|
||||||
|
margin-left: 10%
|
||||||
|
position: relative
|
|
@ -11,17 +11,17 @@ block content
|
||||||
a(href="/")
|
a(href="/")
|
||||||
span.glyphicon.glyphicon-home
|
span.glyphicon.glyphicon-home
|
||||||
li.active(data-i18n="nav.account")
|
li.active(data-i18n="nav.account")
|
||||||
|
#account-link.panel.panel-default
|
||||||
#account-links.panel.panel-default
|
div.row
|
||||||
.panel-heading(data-i18n="nav.account")
|
#account-links
|
||||||
ul.list-group
|
a.btn.btn-lg.btn-primary(href="/user/#{me.getSlugOrID()}", data-i18n="nav.profile")
|
||||||
li.list-group-item
|
div.row
|
||||||
a.btn.btn-lg.btn-primary(href="/user/#{me.getSlugOrID()}", data-i18n="nav.profile")
|
#account-links
|
||||||
li.list-group-item
|
|
||||||
a.btn.btn-lg.btn-primary(href="/account/settings", data-i18n="play.settings")
|
a.btn.btn-lg.btn-primary(href="/account/settings", data-i18n="play.settings")
|
||||||
li.list-group-item
|
div.row
|
||||||
|
#account-links
|
||||||
a.btn.btn-lg.btn-primary(href="/account/payments", data-i18n="account.payments")
|
a.btn.btn-lg.btn-primary(href="/account/payments", data-i18n="account.payments")
|
||||||
li.list-group-item
|
div.col-md-4
|
||||||
|
#account-links
|
||||||
a.btn.btn-lg.btn-primary(href="/account/subscription", data-i18n="account.subscription")
|
a.btn.btn-lg.btn-primary(href="/account/subscription", data-i18n="account.subscription")
|
||||||
li.list-group-item
|
|
||||||
a.btn.btn-lg.btn-primary(href="/account/prepaid", data-i18n="account.prepaid_codes") Prepaid Codes
|
a.btn.btn-lg.btn-primary(href="/account/prepaid", data-i18n="account.prepaid_codes") Prepaid Codes
|
||||||
|
|
|
@ -48,7 +48,7 @@ exports.config =
|
||||||
usePolling: true
|
usePolling: true
|
||||||
|
|
||||||
server:
|
server:
|
||||||
command: 'nodemon .'
|
command: "#{if process.platform is 'win32' then 'node_modules\\.bin\\nodemon.cmd' else 'nodemon'} ."
|
||||||
|
|
||||||
files:
|
files:
|
||||||
javascripts:
|
javascripts:
|
||||||
|
|
Reference in a new issue