-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
125 lines (111 loc) · 1.81 KB
/
style.css
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-color: #1F1B24;
}
.container {
width: 100vw;
height: 100vh;
display: flex;
overflow: clip;
}
.encode-wrapper {
width: 50%;
height: 100%;
margin: 1rem;
}
.decode-wrapper {
width: 50%;
height: 100%;
margin: 1rem;
}
.input {
margin-bottom: 1rem;
width: 100%;
font-size: 1.2rem;
padding: 0.2rem 0.5rem;
resize: none;
}
.btn {
display: block;
margin: auto;
padding: 0.5rem;
font-size: 1.3rem;
}
.container h5 {
color: white;
margin-top: 1rem;
font-size: 1.3rem;
font-family: Calibri;
}
#encoded-text {
width: 100%;
height: 50%;
background-color: #534B5E;
color: #E6E5E8;
padding: 0.5rem 1rem;
font-size: 2rem;
font-family: Calibri;
word-wrap: break-word;
overflow-y: scroll;
}
#encoded-text::-webkit-scrollbar {
display: none;
}
#compare {
font-size: 1rem;
color: hotpink;
}
#huffman-tree {
width: 100%;
height: 12%;
background-color: #534B5E;
color: #03DAC5;
overflow-y: scroll;
scrollbar-color: aliceblue #282830;
}
#decoded-text {
width: 100%;
height: 45%;
padding: 0.2rem 1rem;
background-color: #534B5E;
color: rgb(90, 249, 90);
font-size: 1.3rem;
font-family: Calibri;
word-wrap: break-word;
overflow-y: scroll;
}
#decoded-text::-webkit-scrollbar {
display: none;
}
#sc {
position: fixed;
bottom: 1rem;
right: 4rem;
font-size: 2rem;
text-decoration: none;
color: #FF0266;
font-family: Calibri;
}
#sc:hover {
color: #E6E5E8;
}
#toast {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background-color: #333;
color: #E6E5E8;
font-size: 1.3rem;
padding: 10px 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
transition: opacity 0.5s ease-in-out;
}
.hide {
opacity: 0;
}