wizard.less 2.46 KB
Newer Older
1 2 3 4 5 6
#modal{
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 999;
Bence Dányi committed
7 8 9 10 11
    p,dl
    {
        margin:0;
        padding:5px;
    }
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
}
#shadow{
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
}
#modal-container{
    min-width: 500px;
    position: fixed;
    left:50%;
    top:100px;
    margin-left: -270px;
    margin-top: 0;
    min-height: 50px;
    background-color: #fff;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
    border: 1px solid #333;
    max-height: 60%;
    overflow: auto;
    .container{
        overflow: auto;
        border-radius: 2px;
        border: 1px solid #888;
        background-color: #ccc;

    }
    ul{
        list-style: none;
        li:first-child .summary {
            border: none;
        }
    }
}
.wizard{
    li{
        border-bottom: 1px dotted #999;
    }
    label{
        display: inline-block;
        padding: 3px;
        margin: 10px 5px;
    }
    h2{
        margin: 10px 0;
    }
    .progress{
        text-align: center;
        position: relative;
        width: 100%;
        height: 15px;
        .bar{
            height: 20px;
            background-color: rgb(102, 196, 0);
            border-right: 1px solid rgb(70, 134, 0);
        }
        .bar-container{
            border: 1px solid #666;
            box-shadow: 0 0 20px rgba(0,0,0,0.2);
            border-radius: 4px;
            height: 20px;
            position: absolute;
            width: 500px;
        }
        h3 {
            width: 100%;
            position: absolute;
        }
    }
    input[type=text], input[type=number], select {
        display: block;
        float: right;
        margin-top: 8px;
    }
    input[type=number] {
        width: 4em;
    }
    textarea{
        float: right;
        text-align: right;
    }
    nav{
        margin-top: 15px;
        a{
            text-decoration: underline;
            display: block;
        }
        .prev{
            float: left;
        }
        .next{
            float: right;
        }
    }
    ul.radio{
        float: right;
        label {
            float: left;
            margin: 0;
        }
    }
    .radio{
        li{
            float: left;
            padding: 5px;
            margin: 5px 3px;
            border-bottom: none !important;
        }
    }
    .size-summary {
        margin: 10px;
    }
}

#new-template-name {
    input {
        margin: 10px 5px;
    }
}