2013-08-25 22:20:07 +00:00
|
|
|
@import "nib/vendor"
|
2013-04-09 17:20:59 +00:00
|
|
|
|
|
|
|
|
// Vendor Includes - include first so we can override
|
2013-09-06 19:39:18 +00:00
|
|
|
// Import only styles that do not have urls to images! Include them directly in the page!
|
|
|
|
|
@import "../bower_components/bootstrap-datepicker/css/datepicker.css"
|
|
|
|
|
@import "../bower_components/angular-ui/build/angular-ui.min.css"
|
|
|
|
|
@import "../bower_components/bootstrap/docs/assets/css/bootstrap-responsive.css"
|
2013-09-10 22:31:26 +00:00
|
|
|
@import "../bower_components/bootstrap-tour/build/css/bootstrap-tour.min.css"
|
2013-10-30 18:13:21 +00:00
|
|
|
@import "../bower_components/angular-loading-bar/build/loading-bar.css"
|
2013-04-09 17:20:59 +00:00
|
|
|
|
|
|
|
|
// Custom includes
|
2013-08-25 15:47:10 +00:00
|
|
|
@import "./tasks.styl"
|
|
|
|
|
@import "./avatar.styl"
|
|
|
|
|
@import "./customizer.styl"
|
|
|
|
|
@import "./items.styl"
|
|
|
|
|
@import "./inventory.styl"
|
|
|
|
|
@import "./alerts.styl"
|
|
|
|
|
@import "./helpers.styl"
|
|
|
|
|
@import "./responsive.styl"
|
|
|
|
|
@import "./header.styl"
|
|
|
|
|
@import "./filters.styl"
|
|
|
|
|
@import "./scrollbars.styl"
|
|
|
|
|
@import "./game-pane.styl"
|
|
|
|
|
@import "./npcs.styl"
|
|
|
|
|
@import "./challenges.styl"
|
2013-05-02 12:17:04 +00:00
|
|
|
|
2013-03-06 05:49:02 +00:00
|
|
|
// fix exploding to very wide for some reason
|
|
|
|
|
.datepicker
|
|
|
|
|
width: 210px
|
|
|
|
|
|
2012-06-26 15:25:24 +00:00
|
|
|
html,body,p,h1,ul,li,table,tr,th,td
|
|
|
|
|
margin: 0
|
|
|
|
|
padding: 0
|
2013-02-08 18:29:09 +00:00
|
|
|
|
2013-03-06 05:49:02 +00:00
|
|
|
*
|
|
|
|
|
-webkit-box-sizing: border-box
|
|
|
|
|
-moz-box-sizing: border-box
|
|
|
|
|
box-sizing: border-box
|
|
|
|
|
|
2013-03-19 03:42:03 +00:00
|
|
|
* { font-family: "Lato", sans-serif }
|
|
|
|
|
|
2013-03-06 05:49:02 +00:00
|
|
|
hr
|
|
|
|
|
border-top: 0
|
|
|
|
|
border-bottom: 1px solid #ddd
|
|
|
|
|
border-color: rgba(0,0,0,0.1)
|
|
|
|
|
|
|
|
|
|
|
2012-09-03 03:42:48 +00:00
|
|
|
/* Footer
|
|
|
|
|
-------------------------------------------------- */
|
2012-07-30 21:26:06 +00:00
|
|
|
|
2012-09-03 03:42:48 +00:00
|
|
|
/* Bootstrap website boilerplate */
|
|
|
|
|
.footer {
|
|
|
|
|
padding: 70px 0;
|
|
|
|
|
border-top: 1px solid #e5e5e5;
|
|
|
|
|
background-color: #f5f5f5;
|
|
|
|
|
}
|
|
|
|
|
.footer p {
|
|
|
|
|
margin-bottom: 0;
|
|
|
|
|
color: #777;
|
|
|
|
|
}
|
|
|
|
|
.footer-links {
|
|
|
|
|
margin: 10px 0;
|
|
|
|
|
}
|
|
|
|
|
.footer-links li {
|
|
|
|
|
display: inline;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Customizations to make footer sticky */
|
2013-03-19 03:42:03 +00:00
|
|
|
/*html, body {height: 100%;}*/
|
2013-03-18 20:48:47 +00:00
|
|
|
#wrap
|
|
|
|
|
min-height: 100%
|
|
|
|
|
z-index:-1
|
2013-03-19 03:42:03 +00:00
|
|
|
#main
|
2013-02-08 18:29:09 +00:00
|
|
|
padding-bottom: 250px; /* don't know why this works, sticky footers are weird */
|
2012-09-19 13:48:22 +00:00
|
|
|
|
2013-03-05 20:01:52 +00:00
|
|
|
@media (max-width: 600px) {
|
2013-02-10 21:38:37 +00:00
|
|
|
#wrap {
|
|
|
|
|
margin-top: 0
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-11 18:19:09 +00:00
|
|
|
/* Gems
|
2013-02-08 18:29:09 +00:00
|
|
|
-------------------------------------------------- */
|
2013-05-12 09:15:31 +00:00
|
|
|
/* Adaptation of GH's social-count for Gems */
|
2012-09-19 13:48:22 +00:00
|
|
|
|
2013-05-11 18:19:09 +00:00
|
|
|
.gem-cost
|
2012-09-19 13:48:22 +00:00
|
|
|
border: 1px solid #D4D4D4;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
padding: 6px 7px 5px;
|
|
|
|
|
line-height: 20px;
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
color: #333;
|
|
|
|
|
background-color: #FAFAFA;
|
|
|
|
|
position: relative;
|
|
|
|
|
|
2013-05-11 18:19:09 +00:00
|
|
|
.gem-cost::before
|
2012-09-19 13:48:22 +00:00
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
border: 6px solid #D4D4D4;
|
|
|
|
|
border-color: transparent #D4D4D4 transparent transparent;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 100%;
|
|
|
|
|
margin-right: 0;
|
|
|
|
|
top: 50%;
|
|
|
|
|
margin-top: -6px;
|
|
|
|
|
|
2013-05-11 18:19:09 +00:00
|
|
|
.gem-cost::after
|
2012-09-19 13:48:22 +00:00
|
|
|
content: "";
|
|
|
|
|
display: block;
|
|
|
|
|
width: 0;
|
|
|
|
|
height: 0;
|
|
|
|
|
border: 6px solid #FAFAFA;
|
|
|
|
|
border-color: transparent #FAFAFA transparent transparent;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 100%;
|
|
|
|
|
margin-right: -1px;
|
|
|
|
|
top: 50%;
|
2013-01-17 01:53:17 +00:00
|
|
|
margin-top: -6px;
|
2013-02-08 18:04:31 +00:00
|
|
|
|
2013-02-08 18:29:09 +00:00
|
|
|
/* Misc
|
|
|
|
|
-------------------------------------------------- */
|
2013-02-08 18:04:31 +00:00
|
|
|
|
2013-03-18 22:30:25 +00:00
|
|
|
.modal
|
|
|
|
|
whitespace: normal
|
|
|
|
|
|
2013-02-09 21:22:39 +00:00
|
|
|
.notification-character
|
2013-02-08 18:29:09 +00:00
|
|
|
float:left
|
2013-02-08 18:04:31 +00:00
|
|
|
|
2013-02-09 21:22:39 +00:00
|
|
|
.notification-message
|
|
|
|
|
display: inline-block;
|
|
|
|
|
padding-right: 1em
|
|
|
|
|
line-height: 3
|
|
|
|
|
|
|
|
|
|
.notification-action
|
|
|
|
|
vertical-align: baseline
|
2013-02-08 18:29:09 +00:00
|
|
|
#reset-modal
|
2013-02-16 17:02:55 +00:00
|
|
|
z-index:1500
|
|
|
|
|
#notification-area
|
|
|
|
|
position: fixed;
|
2013-02-16 17:04:40 +00:00
|
|
|
top: 0;
|
|
|
|
|
right: 0px;
|
2013-09-18 15:02:17 +00:00
|
|
|
z-index: 1061;
|
2013-05-02 15:48:24 +00:00
|
|
|
|
|
|
|
|
.modal-body
|
2013-05-06 13:01:43 +00:00
|
|
|
margin: 10px
|
2013-05-15 10:42:35 +00:00
|
|
|
|
2013-05-15 11:23:18 +00:00
|
|
|
|
|
|
|
|
// TODO this is supposed to go in avatar.styl, but stylus is breaking if I even touch that file
|
2013-05-15 10:42:35 +00:00
|
|
|
.profile-modal-header
|
|
|
|
|
width:560px
|
|
|
|
|
margin: 0px auto
|
|
|
|
|
|
|
|
|
|
.avatar-level
|
|
|
|
|
position absolute
|
|
|
|
|
bottom 0px
|
|
|
|
|
right 0px
|
|
|
|
|
background-color #dfe9ea
|
|
|
|
|
padding 1px 3px 1px 3px
|
2013-05-15 11:23:18 +00:00
|
|
|
|
2013-08-25 22:20:07 +00:00
|
|
|
a
|
2013-09-08 10:13:55 +00:00
|
|
|
cursor: pointer
|
|
|
|
|
|
|
|
|
|
#modalMember p
|
2013-09-11 18:36:57 +00:00
|
|
|
word-wrap: break-word
|
|
|
|
|
|
|
|
|
|
.btn
|
2013-10-12 23:47:49 +00:00
|
|
|
margin-right: 5px
|
|
|
|
|
|
2013-10-22 23:33:06 +00:00
|
|
|
.modal-indented-list
|
2013-10-12 23:47:49 +00:00
|
|
|
margin-left: 10px;
|
|
|
|
|
padding-left: 10px;
|