-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml-encoder-and-decoder-tool.css
More file actions
49 lines (40 loc) · 1.22 KB
/
Copy pathhtml-encoder-and-decoder-tool.css
File metadata and controls
49 lines (40 loc) · 1.22 KB
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
/* HTML Encoder and Decoder Tool */
/* developed by Tawhidur Rahman Dear, https://www.tawhidurrahmandear.com */
/* Live Preview available at https://www.devilhunter.net/p/html-encoder-and-decoder-tool.html */
/* Styles */
/* HTML Encoder and Decoder Tool Styles */
/* Button Styles */
.html-encoder-and-decoder-tool_button {
padding: 15px 20px;
background-color: #6600FF;
color: #ffffff;
font-size: 15px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.5s ease;
}
.html-encoder-and-decoder-tool_button:hover {
background-color: #e0ccff;
color: #000000;
transition: background-color 0.5s ease;
}
/* Textarea Styles */
.html-encoder-and-decoder-tool_textarea {
font-family: "Roboto Mono", "Source Code Pro", Consolas, Monaco, "Courier New", Courier, "Liberation Mono", monospace;
font-size: 14px;
width: 100%;
height: 400px;
padding: 25px;
margin-top: 20px;
border: 1px solid #6600FF;
border-radius: 5px;
font-size: 14px;
background-color: #EEF3FA;
resize: none;
box-sizing: border-box;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
white-space: pre-wrap;
word-wrap: break-word;
overflow-x: hidden;
}