Skip to content
Snippets Groups Projects
App.scss 1.48 KiB
Newer Older
  • Learn to ignore specific revisions
  • @import "assets/scss/custom";
    
    danieldeng2's avatar
    danieldeng2 committed
    @import "~bootstrap/dist/css/bootstrap.min.css";
    
    
    body {
      margin: 0;
    
      font-family: "IBM Plex Sans", sans-serif !important;
    
      -webkit-font-smoothing: antialiased;
    
      -moz-osx-font-smoothing: grayscale;
      -webkit-overflow-scrolling: touch;
      overflow-y: scroll;
    
      font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    
        monospace;
    
    danieldeng2's avatar
    danieldeng2 committed
    }
    
    
    danieldeng2's avatar
    danieldeng2 committed
    
    :root {
    	--primary-color: #{$gray-100};
    	--font-color: #{$black};
    	--bg-color: #{$white};
    }
    
    [data-theme="dark"] {
    	--primary-color: #{$gray-900};
    	--font-color: #{$white};
    	--bg-color: #{$black};
    }
    
    
    .btn-primary.focus,
    .btn-primary:focus {
      color: #000;
      background-color: #f8f9fa;
      border-color: #0062cc;
      box-shadow: none;
    
      margin-bottom: 0.625rem;
    
    danieldeng2's avatar
    danieldeng2 committed
      color: var(--font-color);
      background: var(--primary-color);
    
      font-size: 1.05rem;
      letter-spacing: 0;
      border-width: 0rem;
      line-height: 1.375rem;
      height: 2.25rem;
      border-radius: 0.5rem !important;
      text-align: left;
      transition: 0.2s background;
      -webkit-transition: 0.2s background;
      -moz-transition: 0.2s background;
      display: flex;
      width: 100%;
      justify-content: space-between;
      align-items: center;
    }
    
    .btn-primary.active,
    .btn-primary:active {
      color: #fff;
      background: #000 !important;
      font-weight: 500;
      text-align: left;
      border-width: 0rem;
      height: 2.25rem;
      line-height: 1.375rem;
    }
    
    .btn-primary:hover {
    
    danieldeng2's avatar
    danieldeng2 committed
      background: #dee2e6;
    
      border-color: #fff;
      color: #000;
    }
    
    .modal-backdrop {
      z-index: 9000;