mirror of
https://github.com/DYefremov/DemonEditor.git
synced 2025-12-30 20:39:42 +01:00
62 lines
900 B
CSS
62 lines
900 B
CSS
#digit-entry {
|
|
border-color: Red;
|
|
}
|
|
|
|
#status-bar-button {
|
|
padding: 1px;
|
|
margin: 1px;
|
|
}
|
|
|
|
paned > separator {
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
background-size: 2px 24px;
|
|
}
|
|
|
|
.control-box {
|
|
padding: 5px;
|
|
}
|
|
|
|
.red-button {
|
|
background-image: none;
|
|
background-color: red;
|
|
}
|
|
|
|
.green-button {
|
|
background-image: none;
|
|
background-color: green;
|
|
}
|
|
|
|
.yellow-button {
|
|
background-image: none;
|
|
background-color: yellow;
|
|
}
|
|
|
|
.blue-button {
|
|
background-image: none;
|
|
background-color: blue;
|
|
}
|
|
|
|
.time-entry {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
}
|
|
|
|
.group {}
|
|
|
|
.group :first-child {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
.group :last-child {
|
|
border-top-left-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
border-left-width: 0;
|
|
}
|
|
|
|
.group :not(:first-child):not(:last-child) {
|
|
border-radius: 0;
|
|
border-left-width: 0;
|
|
border-right-width: 1px;
|
|
} |