adminHomePage.less 3.26 KB
Newer Older
eddie.woo's avatar
eddie.woo committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
@import "app-resources/css/admin-theme.less";

.admin-home-page {
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    padding: 0px 15% 0px 5%;

    .center-title {
        height: 20%;
        text-align: center;
        font-family: 'Microsoft YaHei Bold', 'Microsoft YaHei Regular', 'Microsoft YaHei';
        padding: 5%;
    }

    .import-title {
        font-size: 14px;
        margin: 0 auto;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .modules {
        padding: 60px;
        margin: auto;
        width: 100%;
        height: 40%;

        .active {
            background-color: @color-light-gray-f2;
        }

        .first-module {
            width: 32%;
            display: inline-block;
            text-align: center;
            vertical-align: middle;
            padding: 40px;

            .menu-wrapper {
                .img {
                    padding: 10px;
                }
            }
        }
        /* .menu-width{
        	width: 160px;
        }*/
        .popover.bottom > .arrow:after {
            border-bottom-color: @color-light-gray-e4;
        }

        .popover {
            background-color: @color-light-gray-e4;
        }

        a {
            text-decoration: none;
        }
    }

    .second-menu-wrapper {
        .second-menu {
            display: inline-block;
            padding: 30px;
            text-align: center;
            vertical-align: middle;
            max-width: 600px;

            i {
                font-size: 26px;
                color: @color-orange4;
            }

            a {
                text-decoration: none;
                color: black;
            }

            .circle {
                height: 50px;
                width: 50px;
                border-radius: 50%;
                padding: 12px;
                display: inline-block;
                background-color: white;
                margin-bottom: 20px;
            }
        }
    }

    .modal-footer {
        padding-left: 104px;
    }


    #importBasicData {
        z-index:9999;

        label {
            font-weight: normal;
            width: 103px;
        }

        .col-sm-3, .col-sm-6 {
            padding-left: 0px;
        }

        .form-group {
            margin-left: -16px;
        }

        .import-result {
            overflow: auto;
            max-height: 240px;
            font-size: 13px;
            word-wrap: normal;
            white-space: nowrap;
            text-align: left;
            line-height: 25px;
            border: 1px solid #d4d4d4;
            border-radius: 5px;
        }

        .glyphicon.spinning {
            animation: spin 1s infinite linear;
            -webkit-animation: spin2 1s infinite linear;
        }

        .import-progress {
            margin-left: 30px;
            vertical-align: middle;
            font-size:26px;
        }

        @keyframes spin {
            from {
                transform: scale(1) rotate(0deg);
            }

            to {
                transform: scale(1) rotate(360deg);
            }
        }

        @-webkit-keyframes spin2 {
            from {
                -webkit-transform: rotate(0deg);
            }

            to {
                -webkit-transform: rotate(360deg);
            }
        }
    }
}