summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_tutorial.scss
blob: fa93e46bf0125be864afc7be96e8de06821baff8 (plain)
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
.tip-backdrop {
    background: rgba(black, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
}

.tip-overlay {
    width: 350px;
    max-width: 90%;
    position:absolute;
    background-color: #fff;
    @include border-radius(3px);
    padding: 20px;
    z-index: 1000;
    h4 {
        font-size: em(16px);
        font-weight: 600;
        margin: 5px 0 15px;
    }
    p {
        font-size: 13px;
        line-height: 1.6;
        strong {
            font-weight: 600;
        }
    }
    .btn {
        background: #cccccc;
        color: #fff;
        @include border-radius(3px);
        border: none;
        margin-bottom: 10px;
        &:hover, &:active, &:focus {
            color: #fff;
            border: none;
            background: #bbb;
        }
    }
    .tip-opt {
        font-size: 12px;
        span {
            @include opacity(0.5);
        }
    }
    .tutorial__circles {
        margin: 1.5em 0px -1.7em -4px;
        .circle {
            width: 7px;
            height: 7px;
            margin: 0 4px;
            &.active {
                background: #000;
                @include opacity(0.4);
            }
        }
    }
}

.tip-button {
    z-index: 998;
    right: -10px;
    top: -10px;
    position: relative;
    cursor: pointer;
}

.tip-div {
    position:absolute;
    top:0px;
    right:0px;
}

.tutorial-steps__container {
    text-align: center;
    width: 100%;
    display: table;
    .tutorial__content {
        display: table-cell;
        vertical-align: middle;
        padding-bottom: 100px;
        padding: 0 40px;
        .tutorial__steps {
            max-width: 310px;
            min-height: 420px;
            text-align: left;
            display: inline-block;
        }
    }
    h1 {
        font-size: em(40px);
        margin: -20px 0 30px;
        font-weight: 600;
    }
    h3 {
        font-size: em(24px);
        margin-bottom: 30px;
        font-weight: 600;
    }
}

.tutorial__circles {
    margin: 2em 0;
    .circle {
        width: 9px;
        height: 9px;
        @include border-radius(9px);
        @include opacity(0.1);
        background: #000;
        display: inline-block;
        margin: 0 5px;
        &.active {
            background: $primary-color;
            @include opacity(1);
        }
    }
}