Files
DemonEditor/app/ui/style.css

58 lines
866 B
CSS
Raw Normal View History

#digit-entry {
2020-04-10 23:09:17 +03:00
border-color: Red;
2019-10-29 13:39:11 +03:00
}
#status-bar-button {
2021-02-23 11:10:06 +03:00
padding: 1px;
margin: 1px;
}
paned > separator {
background-repeat: no-repeat;
background-position: center;
background-size: 2px 24px;
2019-10-29 13:39:11 +03:00
}
2020-04-10 23:09:17 +03:00
2020-11-26 13:28:16 +03:00
.red-button {
2020-11-21 15:09:32 +03:00
background-image: none;
2020-11-26 13:28:16 +03:00
background-color: red;
}
.green-button {
2020-11-21 15:09:32 +03:00
background-image: none;
2020-11-26 13:28:16 +03:00
background-color: green;
}
.yellow-button {
2020-11-21 15:09:32 +03:00
background-image: none;
2020-11-26 13:28:16 +03:00
background-color: yellow;
}
.blue-button {
2020-11-21 15:09:32 +03:00
background-image: none;
2020-11-26 13:28:16 +03:00
background-color: blue;
}
2020-11-19 15:01:07 +03:00
.time-entry {
padding: 0px;
margin: 0px;
}
2020-04-22 09:53:06 +03:00
.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;
2020-11-21 15:09:32 +03:00
border-left-width: 0;
2020-04-22 09:53:06 +03:00
}
.group :not(:first-child):not(:last-child) {
border-radius: 0;
border-left-width: 0;
2020-11-21 15:09:32 +03:00
border-right-width: 1px;
2020-04-22 09:53:06 +03:00
}