Newton-Editor/src/app/editor/tabs/tabs.component.css

26 lines
392 B
CSS
Raw Normal View History

2025-06-05 05:07:21 +00:00
.tab,
.title,
.close-button {
color: rgba(255, 255, 255, 0.64);
}
.tab:hover {
cursor: pointer;
}
.title {
margin-left: 2em;
margin-right: 2em;
font-size: 4em;
}
.close-button {
background: rgba(116, 0, 0, 0.64);
border-style: solid;
border-color: rgba(0, 0, 0, 0.64);
border-width: 1px;
}
.close-button:hover {
background: rgba(256, 0, 0, 0.64);
}