File size: 2,303 Bytes
c1d0017
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
/* General Styles */
.header_dl,
.header_outputs_dl {
    font-family: cursive;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.header_dl {
    color: #AC8FA5;
    margin-bottom: 15px;
}
.header_outputs_dl {
    color: #0083C0;
}

hr {
    border-color: grey;
    background-color: grey;
    opacity: 0.25;
    width: 1000px;
}

/* Element text style */
.widget-html {
    font-family: cursive;
    font-size: 14px;
    color: white !important;
    user-select: none;
}


/* Container style */
.container_dl {
    position: relative;
    flex-direction: column;
    align-items: center;
    background-color: #232323;
    width: 1200px;
    height: auto;
    margin: 40px 10px 10px 10px;
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease-in-out;
    overflow: visible;
}
.container_dl::after {
    position: absolute;
    top: 5px;
    right: 10px;
    content: "ANXETY";
    font-weight: bold;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.2);
}

.result_output_dl {
    flex-wrap: wrap;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    background-color: #1F1F1F;
    width: 95%;
    padding: 10px 15px;
    overflow: visible;
}
.outputs_dl {
    flex-grow: 1;
    flex-wrap: wrap;
    background-color: #181818;
    padding: 10px 15px;
    border-radius: 15px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.3);
    color: #C1C1C1;
    margin: 8px;
    transition: all 0.15s ease-in-out;
}

/* good use of space */
.extension {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}


/* Animation of elements */

.container_dl,
.outputs_dl {
    animation: showedResult 1s;
}
.items_dl {
    animation: showedText 1s;
}

@keyframes showedResult {
    0% {
        transform: translate3d(0, 15%, 0);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes showedText {
    0% {
        transform: translate3d(-30%, 0, 0);
        opacity: 0;
    }
    100% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}