123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- import styled from "styled-components";
- export const Headers = styled.div`
- .ant-affix{
- z-index: 999;
- .nav-wrapper{
- background: rgba(255,255,255,.95);
- box-shadow: 0 1px 40px -8px rgba(0,0,0,.5);
- }
- }
- .search-form--modal {
- -webkit-transition: visibility .25s ease,opacity .25s ease;
- -moz-transition: visibility .25s ease,opacity .25s ease;
- -ms-transition: visibility .25s ease,opacity .25s ease;
- -o-transition: visibility .25s ease,opacity .25s ease;
- transition: visibility .25s ease,opacity .25s ease;
- overflow: hidden;
- z-index: 999;
- position: fixed;
- top: 0;
- right: 0;
- left: 0;
- bottom: 0;
- background: #fff;
- visibility: hidden;
- opacity: 0;
- }
- .search-form--modal .search-form__inner {
- max-width: 640px;
- padding: 0 20px;
- margin: auto;
- text-align: left;
- position: absolute;
- width: 100%;
- left: 0;
- right: 0;
- height: 285px;
- top: 0;
- bottom: 0;
- }
- .search-form .box {
- position: relative;
- }
- .search-form--modal .search-form__inner p {
- padding-left: 24px;
- color: #404040;
- font-size: 15px;
- line-height: 1.5;
- margin:15px 0 22px 0;
- }
- .search-form i {
- font-size: 32px;
- font-size: 2rem;
- line-height: 1;
- color: #ddd;
- position: absolute;
- bottom: 10px;
- margin-top: -16px;
- left: 16px;
- }
- .search-form input {
- font-size: 24px;
- font-size: 1.5rem;
- background: #fff;
- padding: 12px 24px 12px 64px;
- width: 100%;
- outline: none;
- border-radius: 50px;
- color: #666;
- border: 1px solid #ccc;
- }
- .search-form .search_close {
- position: absolute;
- width: 35px;
- height: 35px;
- background: 0 0;
- top: 20px;
- right: 15px;
- cursor: url(${require('../../statics/images/ayuda.cur')}),auto;
- }
- .search_close:before, .search_close:after {
- background-color: #222;
- position: absolute;
- content: "";
- width: 30px;
- height: 2px;
- top: 17px;
- left: 2px;
- }
- .search_close:before {
- transform: rotate(-45deg);
- -webkit-transform: rotate(-45deg);
- }
- .search_close:after {
- transform: rotate(45deg);
- -webkit-transform: rotate(45deg);
- }
- .search-form.is-visible{
- visibility: visible;
- opacity: .99;
- animation: elastic .5s;
- background-image: url(https://cdn.jsdelivr.net/gh/moezx/cdn@3.2.1/img/other/iloli.gif);
- background-repeat: no-repeat;
- background-position: bottom right;
- }
- @keyframes elastic {
- 0% {
- transform: scale(0)
- }
-
- 55% {
- transform: scale(1)
- }
-
- 70% {
- transform: scale(.98)
- }
-
- 100% {
- transform: scale(1)
- }
- }
- @media (min-width: 768px){
- &:hover .nav-wrapper{
- background: rgba(255,255,255,.95);
- box-shadow: 0 1px 40px -8px rgba(0,0,0,.5);
- }
- }
- @media(max-width:768px){
- .search-form.is-visible{
- background-size: 30%;
- }
- .search-form--modal .search-form__inner p{
- padding-left: 10px;
- font-size: 14px;
- }
- .search-form i{
- font-size: 22px;
- bottom: 11px;
- }
- .search-form input{
- padding: 10px 10px 10px 45px;
- font-size: 18px;
- }
- }
- `;
- export const NavWrapper = styled.div`
- width: 100%;
- height: 75px;
- position:fixed;
- top:0;
- padding:0 30px
- z-index:999;
- transition: all .4s ease;
- @media (max-width: 768px){
- height: 50px;
- padding:0 15px
- }
- `;
- export const NavLeft = styled.div`
- float:left;
- height:75px;
- line-height:75px;
- max-width:120px;
- a{
- color: #464646;
- font-size: 20px;
- font-weight: 800;
- }
- i{
- font-size:22px;
- color:#666666;
- cursor: url(${require('../../statics/images/ayuda.cur')}),auto;
- display:none;
- }
- i:hover{
- color:#fe9600;
- }
- a:hover{
- color:#fe9600;
- }
- @media (max-width: 768px){
- height:50px;
- line-height:50px;
- a{
- display:none;
- }
- i{
- display: inline-block;
- }
- }
- `;
- export const NavRight = styled.div`
- float:right;
- height:75px;
- .flex-items{
- height:75px;
- }
- @media (max-width: 768px){
- height:50px;
- .flex-items{
- height:50px;
- }
- }
- `;
- export const Nav = styled.ul`
- height:75px;
- @media (max-width: 768px){
- display:none;
- }
- `;
- export const NavItem = styled.li`
- padding:0 15px;
- .nav-item{
- display:block;
- color: #666666;
- font-size:16px;
- height:40px;
- line-height:40px;
- position: relative;
- cursor: url(${require('../../statics/images/ayuda.cur')}),auto;
- }
- .nav-item i{
- margin-right:5px;
- }
- .nav-item:after{
- content: "";
- display: block;
- position: absolute;
- bottom: -17px;
- height: 6px;
- background-color: #fe9600;
- width: 0px;
- transition: width .25s ease-in-out;
- }
- &:hover .nav-item{
- color:#fe9600;
- }
- &:hover .nav-item:after{
- width:100%;
- }
- .NavDropdown ul{
- padding:10px;
- text-align: center;
- box-shadow: 0 1px 40px -8px rgba(0,0,0,.5);
- }
- .NavDropdown ul li:hover{
- background:none;
- }
- .NavDropdown ul li:hover a{
- color:#fe9600;
- }
- .NavDropdown ul:before{
- content: "";
- position: absolute;
- top: -20px;
- left: 50%;
- margin-left: -10px;
- border-width: 10px;
- border-style: solid;
- border-color: transparent transparent #fff transparent;
- }
- `;
- export const IconBox = styled.div`
- i{
- font-size:24px;
- margin-left:20px;
- color:#666666;
- cursor: url(${require('../../statics/images/ayuda.cur')}),auto !important;
- }
- i:hover{
- color:#fe9600;
- }
- img{
- width: 24px;
- height: 24px;
- border-radius: 50%;
- margin-left:20px;
- }
- `;
- export const Mask = styled.div`
- position: fixed;
- background-color: rgba(0, 0, 0, 0.5);
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- z-index: 998;
- &.hidden{
- display:none;
- }
- &.show{
- display:block;
- }
- `;
- export const MoNav = styled.div`
- position: fixed;
- left: 0;
- bottom: 0;
- top: 0;
- background-color: #ffffff;
- width: 55%;
- z-index: 999;
- transition-duration: .5s;
- overflow-y: scroll;
- -webkit-transform: translateX(-100%) translateY(0px);
- transform: translateX(-100%) translateY(0px);
- &.open{
- transform: translateX(0px) translateY(0px);
- -webkit-transform: translateX(0px) translateY(0px);
- }
- .m-avatar {
- width:100%;
- height: auto;
- padding: 30px 0 20px;
- text-align: center;
- }
- .m-avatar img {
- width: 90px;
- height: 90px;
- max-width: 90px;
- border-radius: 100%;
- }
- .name{
- margin-bottom:10px;
- padding:0 15px;
- text-align: center;
- font-size: 13px;
- color: #333;
- }
- .info{
- margin-bottom:10px;
- padding:0 15px 15px 15px;
- text-align: center;
- font-size: 13px;
- color: #333;
- position: relative;
- }
- .menu{
- position: relative;
- &:after{
- position: absolute;
- right:0px;
- top: 0;
- left: 0px;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color:#f1f1f1;
- }
- .item{
- position: relative;
- padding:10px 15px;
- color: #333;
- font-size: 14px;
- span{
- margin-left:5px;
- }
- i{
- font-size: 12px;
- }
- &:after{
- position: absolute;
- right:0px;
- bottom: 0;
- left:0px;
- height: 1px;
- content: '';
- -webkit-transform: scaleY(.5);
- transform: scaleY(.5);
- background-color:#f1f1f1;
- }
- }
- }
- .sub-menu{
- padding-left:15px;
- .item{
- padding:5px 10px;
- font-size: 13px;
- }
- }
- `;
|