| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- .login-container{
- //background-image:url('/image/seec_background.png');
- background-color: white;
- background-size: cover;
- background-attachment:fixed;
- background-position: center center;
- background-repeat: no-repeat;
- padding: 0;
- height: 100%;
- width: 100%;
- position: relative;
- }
- .login-card{
- width: 30%;
- float: right;
- top: 100px;
- position: relative;
- right: 20%;
- margin-bottom: 100px;
- z-index: 2;
- &__title{
- color: $focus-color;
- text-align: center;
- }
- &__item{
- width: 80%;
- margin-top: 20px;
- margin-left: 10%;
- }
- &__short-item{
- width: 42%;
- margin-top: 20px;
- margin-left: 10%;
- display: inline-block;
- }
- &__bottom{
- margin-top: 10px;
- margin-bottom: 10px;
- width: 80%;
- margin-left: 10%;
- text-align: center;
- & a{
- text-decoration: none;
- &:hover{
- text-decoration: underline;
- }
- }
- }
- &__link{
- color: $focus-color;
- }
- &__canvas{
- float: right;
- width: 33%;
- margin-right: 10%;
- display: inline-block;
- vertical-align: top;
- margin-top: 20px;
- text-align: right;
- }
- &__right-link{
- float: right;
- color: $common-color;
- &:hover{
- color: $focus-color;
- }
- }
- &__right-button{
- float: right;
- padding-left: auto;
- padding-right: auto;
- margin-right: 10%;
- width: 35%;
- text-align: center;
- margin-top: 20px;
- }
- &__logo{
- width: 20%;
- position: fixed;
- top: 200px;
- left: 15%;
- }
- }
|