summaryrefslogtreecommitdiff
path: root/addons/survey/static/src/scss/survey_reports.scss
blob: 2cdb5a0a89c883a0b9071f9b357feef2044531a4 (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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
@font-face {
    font-family: certification-cursive;
    src: url(/survey/static/src/fonts/MrDeHaviland-Regular.ttf);
}
@font-face {
    font-family: certification-serif;
    src: url(/survey/static/src/fonts/ETHOS-REGULAR.OTF);
}
@font-face {
    font-family: certification-modern;
    src: url(/survey/static/src/fonts/Oswald-Light.ttf);
}

#o_survey_certification.certification-wrapper {
    width: 250mm;
    height: 280mm;
    display: flex;
    background-size: 100% 100%;
    background-color: #875A7B;

    &.blue {
        background-color: #4761e2;
    }

    &.gold {
        background-color: #af881a;
    }

    .certification {
        position: relative;
        width: 100%;
        height: 100%;

        .test-entry {
            top: 0px;
            left: 0px;
            position: absolute;
            content: '';
            height: 610px;
            width: 860px;
            background: url(/survey/static/src/img/watermark.png) no-repeat;
            background-size: 100% 100%;
            background-position: center;
        }
    }

    &.classic {
        padding: 5mm;
        background-image: url(/survey/static/src/img/certification_bg_classic_default.jpg);
        color: #3e2e3a;

        &.blue {
            background-image: url(/survey/static/src/img/certification_bg_classic_blue.jpg);
            color: #272d4f;
        }

        &.gold {
            background-image: url(/survey/static/src/img/certification_bg_classic_gold.jpg);
            color: #5A4721;
        }

        .certification {
            padding: 20mm;
            font-family: certification-serif, serif;
            font-family: Times;
            text-align: center;
            color: inherit;

            .certification-name-label {
                padding: 5mm 0 8mm;
            }

            .certification-name {
                font-size: 45pt;
                line-height: 0.9;
                text-transform: uppercase;
                letter-spacing: 0.2mm;
            }

            .user-name {
                padding-bottom: 6mm;
                padding-top: 3mm;
                font-family: certification-cursive, cursive;
                letter-spacing: -0.2mm;
                word-spacing: 0.2mm;
                font-size: 60pt;
            }

            hr {
                border-color: inherit;
                margin: 15mm auto;
                opacity: 0.6;
                width: 50mm;

                &.small {
                    margin: 2mm auto;
                }
            }

            .certification-description, .certification-date {
                padding: 5mm 40mm 10mm;
            }

            .certificate-signature {
                position: absolute;
                bottom: 10mm;
                right: 10mm;
                left: 10mm;
                font-size: 14pt;

                img {
                    max-width: 40mm;
                    max-height: 40mm;
                }
            }
        }
    }

    &.modern {
        background-image: url(/survey/static/src/img/certification_bg_modern.png);

        .certification {
            padding-left: 40mm;
            padding-right: 40mm;
            font-family: certification-modern, sans-serif;
            color: #223541;

            .certification-bg-dark {
                display: inline-block;
                background-color: #223541;
                background: rgba(34, 53, 65, 0.1);
            }

            .certification-top {
                .certification-bg-dark {
                    margin-bottom: 10mm;
                    padding: 20mm 6mm 5mm;
                    text-align: center;
                    width: 56mm;
                }

                .certification-company-wrapper {
                    padding: 1mm 2mm;

                    img {
                        max-width: 40mm;
                        max-height: 30mm;
                    }
                }

                .certification-name {
                    text-transform: uppercase;
                    font-size: 40pt;
                    line-height: 0.9;
                }
            }

            .certification-bottom {
                padding: 60mm 0 10mm;
                font-size: 16pt;

                .user-name {
                    margin-bottom: 20mm;
                    font-family: certification-cursive, cursive;
                    font-size: 50pt;
                }

                .certification-bottom-group {
                    position: absolute;
                    bottom: 0;
                    right: 40mm;
                    left: 40mm;
                    top: 220mm;

                    > div {
                        display: inline-block;
                        height: 100%;
                        float: left;
                        bottom: 0;
                        top: 0;
                    }

                    .certification-bg-dark {
                        width: 56mm;
                        max-height: 100%;
                    }

                    .certification-date {
                        padding-right: 30mm;
                        padding-left: 15mm;
                    }
                }
            }
        }
    }
}