mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-04 05:44:32 +01:00
054d124afe
Many thanks to all the other developers who made this possible, especially Shoelace
27 lines
560 B
Markdown
27 lines
560 B
Markdown
## Styling
|
|
|
|
Our overall styling is a combination of our site-wide style (pixelegg), etemplate2.css
|
|
and [Shoelace](https://shoelace.style/) styles
|
|
|
|
Some handy excerpts:
|
|
|
|
### Global CSS variables
|
|
|
|
```css
|
|
:root {
|
|
--primary-background-color: #4177a2;
|
|
--highlight-background-color: rgba(153, 204, 255, .4);
|
|
|
|
--label-color: #000000;
|
|
/* For fixed width labels - use class 'et2-label-fixed'*/
|
|
--label-width: 8em;
|
|
|
|
--input-border-color: #E6E6E6;
|
|
--input-text-color: #26537C;
|
|
|
|
--warning-color: rgba(255, 204, 0, .5);
|
|
--error-color: rgba(204, 0, 51, .5);
|
|
|
|
}
|
|
```
|