Skip to content
app.scss 1.91 KiB
Newer Older
wangqinghua's avatar
wangqinghua committed
// http://ionicframework.com/docs/theming/
@import "../theme/ionic";
@import "../theme/style";
@import "../theme/tab.icon";
@import "../assets/iconfont/iconfont";
// App Global Sass
// --------------------------------------------------
// Put style rules here that you want to apply globally. These
// styles are for the entire app and not just one component.
// Additionally, this file can be also used as an entry point
// to import other Sass files to be included in the output CSS.
//
// Shared Sass variables, which can be used to adjust Ionic's
// default Sass variables, belong in "theme/variables.scss".
//
// To declare rules for a specific mode, create a child rule
// for the .md, .ios, or .wp mode classes. The mode class is
// automatically applied to the <body> element in the app.
html, body, p {
  margin: 0;
}

.space {
  height: 10px;
  background-color: #f2f2f2;
}
wangqinghua's avatar
wangqinghua committed

wangqinghua's avatar
wangqinghua committed
.splash {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;

  img {
    width: 100%;
    height: 100%;
  }
}
wangqinghua's avatar
wangqinghua committed

.list-footer-page {
wangqinghua's avatar
wangqinghua committed
  text-align: center;
  padding: 20px;
  color: #999999;
}
wangqinghua's avatar
wangqinghua committed

wangqinghua's avatar
wangqinghua committed
.submit-btn {
  height: 40px;
  margin: 20px 10% 15px 10%;
  width: 80%;
  color: #fff;
  font-size: 15px;
  position: relative;
  text-align: center;
  white-space: nowrap;
  border-radius: 3px;
  border: 1px solid #5991CA;
  background-color: #5991CA;
}
wangqinghua's avatar
wangqinghua committed

.badge-ios {
  background-color: #ff5722;
}

.has-icon .tab-badge {
  right: calc(50% - 25px);
}
wangqinghua's avatar
wangqinghua committed

.action-sheet-wrapper {
  .action-sheet-container {
    padding: 0;

    .action-sheet-group {
      border-radius: 0px;

      .action-sheet-button {
        color: #444444;
        min-height: 50px;
        padding: 10px;
        font-size: 1.8rem;
      }
    }

    .action-sheet-group.action-sheet-group-cancel {
      margin-bottom: 0;

      .action-sheet-button {
        color: #333333;
        font-weight: 500;
      }
    }
  }
}