Difference between revisions of "Team:USTC/CSS/mobile"

Line 19: Line 19:
 
a:focus,
 
a:focus,
 
a:visited {
 
a:visited {
    color: inherit;
 
 
     text-decoration: none;
 
     text-decoration: none;
 
     transition: all 0.3s;
 
     transition: all 0.3s;

Revision as of 14:10, 16 October 2018

html {

   scroll-behavior: smooth;

} body {

   font-family: 'TW Cen MT Regular';
   background: #fafafa;

}

p {

   font-family: 'Segoe UI Symbol Regular';
   font-size: 1.1em;
   font-weight: 300;
   line-height: 1.7em;
   color: #999;

}

a, a:hover, a:focus, a:visited {

   text-decoration: none;
   transition: all 0.3s;

}

.navbar {

   padding: 15px 10px;
   background: #fff;
   border: none;
   border-radius: 0;
   margin-bottom: 40px;
   box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);

}

.navbar-btn {

   box-shadow: none;
   outline: none !important;
   border: none;

}

.line {

   width: 100%;
   height: 1px;
   border-bottom: 1px dashed #ddd;
   margin: 40px 0;

}

  1. sidebar {
   width: 250px;
   position: fixed;
   top: 0;
   left: -250px;
   height: 100vh;
   z-index: 2000;
   background: #70a2c5;
   color: #fff;
   transition: all 0.3s;
   overflow-y: scroll;
   box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
   text-align: center;

}

  1. sidebar.active {
   left: 0;

}

  1. dismiss {
   font-size: 1.5em;
   width: 30px;
   height: 25px;
   line-height: 35px;
   text-align: center;
   position: absolute;
   top: 10px;
   right: 5px;
   cursor: pointer;
   -webkit-transition: all 0.3s;
   -o-transition: all 0.3s;
   transition: all 0.3s;

}

  1. dismiss:hover {
   background: #fff;
   color: #7386D5; /**/

}

.overlay {

   display: none;
   position: fixed;
   top:0;
   left:0;
   width: 100vw;
   height: 100vh;
   background: rgba(0, 0, 0, 0.7);
   z-index: 1999;
   opacity: 0;
   transition: all 0.5s ease-in-out;

} .overlay.active {

   display: block;
   opacity: 1;

}

  1. sidebar ul.components {
   padding: 20px 0;

}

  1. sidebar ul p {
   color: #fff;
   padding: 10px;

}

  1. sidebar ul li a {
   padding: 10px;
   font-size: 1.1em;
   display: block;

}

  1. sidebar ul li a:hover {
   color: #76b0d8;
   background: #fff;

}

  1. sidebar ul li.active>a,

a[aria-expanded="true"] {

   color: #fff;
   background: #6094b7;

}

a[data-toggle="collapse"] {

   position: relative;

}

.dropdown-toggle::after {

   display: block;
   position: absolute;
   top: 50%;
   right: 20px;
   transform: translateY(-50%);

}

ul ul a {

   padding-left: 10px !important;
   background: #6094b7;

}

  1. content {
   width: 100%;
   padding: 20px;
   min-height: 100vh;
   transition: all 0.3s;
   position: absolute;
   top: 0;
   right: 0;

}

.nav-item .active {

   text-decoration: underline;

}