55 lines
898 B
CSS
55 lines
898 B
CSS
/* Scrollbar Styles */
|
|
::-webkit-scrollbar {
|
|
width: 12px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #f1f1f1;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: #888;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background-color: #555;
|
|
}
|
|
|
|
html {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: #888 #f1f1f1;
|
|
}
|
|
|
|
/* Textarea Styles */
|
|
textarea {
|
|
width: 100%;
|
|
height: 600px;
|
|
padding: 10px;
|
|
font-size: 14px;
|
|
line-height: 1.5;
|
|
background-color: #f9f9f9;
|
|
border: 1px solid #ccc;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
textarea:hover {
|
|
background-color: #f0f0f0;
|
|
}
|
|
|
|
/* XML List Item Styles */
|
|
.xml-list-item {
|
|
padding: 10px;
|
|
background-color: #ffffff;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.xml-list-item:hover {
|
|
background-color: #e9ecef;
|
|
cursor: pointer;
|
|
}
|
|
|
|
/* Button Styles */
|
|
.btn {
|
|
margin-top: 20px;
|
|
} |