source: gs3-installations/eurovision-lod/trunk/interfaces/eurovision/style/core-extra.css

Last change on this file was 37668, checked in by davidb, 13 months ago

Additional tweak

File size: 4.3 KB
Line 
1
2/* Add any new CSS you require for the interface here! */
3
4
5:root {
6 /* --cc-btn-primary-bg: #459e00; */
7 --cc-btn-primary-bg: hsl(284, 84%, 20%);
8
9 /* --cc-btn-primary-hover-bg: #67b021; */
10 --cc-btn-primary-hover-bg: hsl(295, 92%, 30%);
11}
12
13
14:root {
15 --gs-primary-fg: #ffffff;
16 --gs-primary-bg: hsl(284, 84%, 20%);
17 --gs-primary-border: hsl(284, 88%, 35%);
18 --gs-primary-hover-bg: hsl(295, 92%, 30%);
19 --gs-secondary-bg: hsla(295, 47%, 24%, 0.7); /* original was without the 0.7 */
20
21 --gs-primary-text-fg: var(--gs-primary-fg);
22 --gs-tab-bg: var(--gs-primary-bg);
23
24
25
26
27 --gs-bg: #fff;
28 --gs-text:#2d4156;
29
30 --gs-btn-primary-bg: #459e00;
31 --gs-btn-primary-text: var(--cc-bg);
32 --gs-btn-primary-hover-bg: #255500;
33 --gs-btn-secondary-bg: #eaeff2;
34 --gs-btn-secondary-text: var(--cc-text);
35 --XX-overlay-bg: rgba(4, 6, 8, .85);
36}
37
38/*
39#container {
40 max-width: 1200px;
41}
42
43#topArea {
44 max-width: 1200px;
45}
46*/
47
48
49
50/* Basic HTML elements */
51
52/*
53body {
54 font-family: "Open Sans", sans-serif;
55 color: #2D3748;
56
57 font-style: normal;
58 font-weight: 300;
59 font-size: 16px;
60 line-height: 1.6;
61
62 background-color: whitesmoke;
63}
64
65h1, h2, h3, h4 {
66 font-weight: normal;
67 padding-top: 4px;
68 padding-bottom: 4px;
69}
70*/
71
72/* JQuery-UI CSS */
73
74
75/*
76.ui-widget-header {
77 background-image: url("images/intermuse-header-banner.png");
78 background-color: rgb(100,100,100);
79 background-size: cover;
80 background-repeat: no-repeat;
81}
82*/
83
84
85.ui-widget-header {
86 border: 1px solid #d4ccb0;
87 background-image: none;
88 background-color: var(--gs-primary-bg);
89 color: #ffffff;
90 font-weight: bold;
91}
92
93/*
94.ui-widget {
95 font-family: "Open Sans", sans-serif;
96}
97
98.ui-widget input,
99.ui-widget select,
100.ui-widget textarea,
101.ui-widget button {
102 font-family: "Open Sans", sans-serif;
103}
104*/
105
106.ui-widget.ui-widget-content {
107 border: 1px solid #c5c5c5;
108}
109.ui-widget-content {
110 border: 1px solid #dddddd;
111 background: #ffffff;
112 color: #2d3748;
113}
114/*
115.ui-widget-content a {
116 color: #2d3748;
117}
118.ui-widget-header {
119 border: 1px solid #5a5a5a;
120 background: #404040;
121 color: #2d3748;
122 font-weight: bold;
123}
124.ui-widget-header a {
125 color: #2d3748;
126}
127
128*/
129
130
131/* Based on: https://stackoverflow.com/questions/17838380/styling-jquery-ui-autocomplete */
132
133.ui-menu .ui-menu-item {
134 background:white;
135 color: black;
136 font-size:80%;
137}
138
139
140
141.ui-state-default,
142.ui-widget-content .ui-state-default,
143.ui-widget-header .ui-state-default,
144.ui-button,
145html .ui-button.ui-state-disabled:hover,
146html .ui-button.ui-state-disabled:active {
147 border: 1px solid var(--gs-primary-border);
148 background-image: none;
149 /*background-image: url(images/ui-icons_eeeeee_256x240.png); */
150 background-color: var(--gs-primary-bg);
151 font-weight: bold;
152 color: var(--gs-primary-text-fg);
153}
154
155
156.ui-state-hover,
157.ui-widget-content .ui-state-hover,
158.ui-widget-header .ui-state-hover,
159.ui-state-focus,
160.ui-widget-content .ui-state-focus,
161.ui-widget-header .ui-state-focus,
162.ui-button:hover,
163.ui-button:focus {
164 border: 1px solid var(--gs-primary-border);
165 background-image: none;
166 /*background-image: url(images/ui-icons_eeeeee_256x240.png); */
167 background-color: var(--gs-primary-hover-bg);
168}
169
170.ui-state-active,
171.ui-widget-content .ui-state-active,
172.ui-widget-header .ui-state-active,
173a.ui-button:active,
174.ui-button:active,
175.ui-button.ui-state-active:hover {
176 border: 1px solid var(--gs-primary-text-fg); /* flash border same colour as text */
177 background-color: var(--gs-primary-hover-bg);
178 background-image: none;
179 /*background-image: url(images/ui-icons_eeeeee_256x240.png); */
180 font-weight: bold;
181 color: var(--gs-primary-text-fg);
182}
183
184
185.ui-state-active a,
186.ui-state-active a:link,
187.ui-state-active a:visited {
188 color: var(--gs-primary-text-fg);
189 background-color: var(--gs-primary-hover);
190}
191
192
193/*
194jquery-ui main theme is different image, and tingediwth green :
195
196 background-image: url(images/ui-icons_8DC262_256x240.png);
197
198.ui-state-active .ui-icon, .ui-button:active .ui-icon {
199 background-image: url(images/ui-icons_eeeeee_256x240.png);
200}
201*/
202
203
204#usercommentlink a, #usercommentlogoutlink a {
205 color: var(--gs-primary-bg);
206}
207
208
209.navList {
210 background-color: var(--gs-primary-bg);
211}
212
213
214/* overriding eurovision custom.css */
Note: See TracBrowser for help on using the repository browser.