wizard.less 2.34 KB
Newer Older
Dányi Bence committed
1
#modal{
Dányi Bence committed
2
    top: 0;
Dányi Bence committed
3 4 5
    position: absolute;
    width: 100%;
    height: 100%;
Dányi Bence committed
6
    z-index: 999;
Dányi Bence committed
7 8
}
#shadow{
Dányi Bence committed
9
    position: fixed;
Dányi Bence committed
10 11 12 13 14
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
}
#modal-container{
15
    min-width: 500px;
Dányi Bence committed
16 17 18 19 20
    position: fixed;
    left:50%;
    top:50%;
    margin-left: -270px;
    margin-top: -200px;
21
    min-height: 50px;
Dányi Bence committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
    background-color: #fff;
    border-radius: 4px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.4);
    border: 1px solid #333;
    .container{
        max-height: 400px;
        overflow: auto;
    }
    ul{
        list-style: none;
    }
}
.wizard{
    li{
        border-bottom: 1px dotted #999;
    }
    label{
40
        display: inline-block;
41
        padding: 3px;
42
        margin: 10px 5px;
Dányi Bence committed
43 44 45 46 47 48
    }
    h2{
        margin: 10px 0;
    }
    .progress{
        text-align: center;
49
        position: relative;
50 51
        width: 100%;
        height: 15px;
Dányi Bence committed
52 53 54
        .bar{
            height: 20px;
            background-color: rgb(102, 196, 0);
Dányi Bence committed
55
            border-right: 1px solid rgb(70, 134, 0);
Dányi Bence committed
56 57 58 59 60 61 62 63 64
        }
        .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;
        }
65
        h3 {
66
            width: 100%;
67 68
            position: absolute;
        }
Dányi Bence committed
69
    }
Őry Máté committed
70
    input[type=text], input[type=number], select {
Dányi Bence committed
71 72
        display: block;
        float: right;
Őry Máté committed
73 74 75 76
        margin-top: 8px;
    }
    input[type=number] {
        width: 4em;
Dányi Bence committed
77 78 79 80 81 82
    }
    textarea{
        float: right;
        text-align: right;
    }
    nav{
Dányi Bence committed
83
        margin-top: 15px;
Dányi Bence committed
84 85 86 87 88 89 90 91 92 93 94 95 96
        a{
            text-decoration: underline;
            display: block;
        }
        .prev{
            float: left;
        }
        .next{
            float: right;
        }
    }
    ul.radio{
        float: right;
97 98 99 100
        label {
            float: left;
            margin: 0;
        }
Dányi Bence committed
101 102 103 104 105
    }
    .radio{
        li{
            float: left;
            padding: 5px;
106
            margin: 5px 3px;
Dányi Bence committed
107 108
            border-bottom: none !important;
        }
109 110 111
    }
    .size-summary {
        margin: 10px;
Dányi Bence committed
112 113
    }
}
114 115 116 117 118 119

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