diff options
| author | George Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-06-12 01:12:30 +0300 |
|---|---|---|
| committer | George Halkiadakis <gchalkiadakis@sklavenitis.co.gr> | 2023-06-12 01:12:30 +0300 |
| commit | 5375e22de976b74f5f04d800014c30d9c66f0fe5 (patch) | |
| tree | 3f9d79b898c4bbb392c2a4ec5ec65c0fde5c6f01 /public/assets/css | |
| parent | 0b0076b2ece062f248b7c048d6bb28abbe9174a5 (diff) | |
| download | gyraf1gov-5375e22de976b74f5f04d800014c30d9c66f0fe5.tar.gz gyraf1gov-5375e22de976b74f5f04d800014c30d9c66f0fe5.tar.bz2 gyraf1gov-5375e22de976b74f5f04d800014c30d9c66f0fe5.zip | |
official Reliese Candidate; themes added; routes organized; fine tuning
Diffstat (limited to 'public/assets/css')
| -rw-r--r-- | public/assets/css/class.css | 5 | ||||
| -rw-r--r-- | public/assets/css/themes/fall-09.css | 8 | ||||
| -rw-r--r-- | public/assets/css/themes/spring-09.css | 2 | ||||
| -rw-r--r-- | public/assets/css/themes/winter-03.css | 13 | ||||
| -rw-r--r-- | public/assets/css/themes/winter-08.css | 11 | ||||
| -rw-r--r-- | public/assets/css/themes/winter-10.css | 25 |
6 files changed, 62 insertions, 2 deletions
diff --git a/public/assets/css/class.css b/public/assets/css/class.css index 6c0c1bf..7aa3a2a 100644 --- a/public/assets/css/class.css +++ b/public/assets/css/class.css @@ -25,6 +25,7 @@ /* layer backgrounds */ --form-layer-bgr: #dddb; /* form layer background */ --backlayer-bgr: transparent; + --clear-read-bgr: #fff5; /* select2 */ --select2-arrow-top: 10px; @@ -350,6 +351,8 @@ input.form-control-sm { height: var(--form-input-height); } } - .btn-xs { height: 24px; padding: 1px 8px; font-size: 14px; } + +.clear-read p { padding: 8px; border-radius: 6px; } +.clear-read p:hover, .clear-read p:active { background: var(--clear-read-bgr); }
\ No newline at end of file diff --git a/public/assets/css/themes/fall-09.css b/public/assets/css/themes/fall-09.css new file mode 100644 index 0000000..05681ef --- /dev/null +++ b/public/assets/css/themes/fall-09.css @@ -0,0 +1,8 @@ +:root { + --background-image: url(/assets/media/fall-09.webp); + --form-layer-bgr: #cccc; + --bs-heading-color: #657; + --menu-hover-bgr: #fff0dc; + --info-text-color: #112; + --img-credit-hover-color: #334; +} diff --git a/public/assets/css/themes/spring-09.css b/public/assets/css/themes/spring-09.css index 97fe4bb..39c3ed3 100644 --- a/public/assets/css/themes/spring-09.css +++ b/public/assets/css/themes/spring-09.css @@ -1,7 +1,7 @@ :root { --background-image: url(/assets/media/spring-09.webp); --bs-heading-color: #230; - --menu-hover-bgr: #bee; + --menu-hover-bgr: #d6f899; --info-text-color: #334; --img-credit-hover-color: #334; } diff --git a/public/assets/css/themes/winter-03.css b/public/assets/css/themes/winter-03.css new file mode 100644 index 0000000..b8e9df7 --- /dev/null +++ b/public/assets/css/themes/winter-03.css @@ -0,0 +1,13 @@ +:root { + --background-image: url(/assets/media/winter-03.webp); + --bs-heading-color: #035; + --menu-hover-bgr: #cef; + --info-text-color: #223; + + --img-credit-hover-color: #334; + --img-credit-bgr: transparent; + --img-credit-color: #9aa; +} + +.central-form form label { color: #313; } +tbody, td, tfoot, th, thead, tr { border-color: #def7; }
\ No newline at end of file diff --git a/public/assets/css/themes/winter-08.css b/public/assets/css/themes/winter-08.css new file mode 100644 index 0000000..c589e34 --- /dev/null +++ b/public/assets/css/themes/winter-08.css @@ -0,0 +1,11 @@ +:root { + --background-image: url(/assets/media/winter-08.webp); + --bs-heading-color: #035; + --menu-hover-bgr: #cef; + --info-text-color: #223; + + --img-credit-hover-color: #334; +} + +.central-form form label { color: #313; } +tbody, td, tfoot, th, thead, tr { border-color: #def7; }
\ No newline at end of file diff --git a/public/assets/css/themes/winter-10.css b/public/assets/css/themes/winter-10.css new file mode 100644 index 0000000..0673bd0 --- /dev/null +++ b/public/assets/css/themes/winter-10.css @@ -0,0 +1,25 @@ +/* dark theme */ +:root { + --background-image: url(/assets/media/winter-10.webp); + --light-grey-shade: 1px 5px 7px #2227; + --form-layer-bgr: #878b; + --clear-read-bgr: transparent; + + --table-row-bgr: #eee2; + --table-odd-row-bgr: #fff3; + --table-head-bgr: #fff5; + --table-row-hover-bgr: #0137; + + --bs-heading-color: #dcb; + --info-text-color: #c8b5a3; + --menu-hover-bgr: #fcc; + + --img-credit-hover-color: #334; + --img-credit-bgr: transparent; + --img-credit-color: #9aa; +} + +.central-form form label { color: #fed; } + +tbody, td, tfoot, th, thead, tr { border-color: transparent; } +table.dt-table tr > td, table.dt-table tr > th { color: #fff; } |
