-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathuser.example.css
62 lines (56 loc) · 1.4 KB
/
user.example.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
This is an example of data/user.css file to change colors from Blue to Teal.
Example color palettes available here: https://material.io/guidelines/style/color.html#color-color-palette
- Base color: #009688
- Focus color: #00796B
- Active color: #004D40
*/
div.awesomplete > ul > li[aria-selected=true],
.button-primary,
[type="radio"]:checked + label:after,
[type="radio"].with-gap:checked + label:after,
[type=checkbox].filled-in:checked + label:after,
.switch label input[type=checkbox]:checked + .lever:after,
.header-main {
background-color: #009688;
}
.button-primary:hover, .button-primary:focus{
background-color: #00796B;
}
.button-primary:active{
background-color: #004D40;
}
a,
label.active {
color: #009688;
}
a:hover, a:focus {
color: #00796B;
}
a:active {
color: #004D40;
}
input[type=text]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=password]:focus,
textarea:focus {
border-color: #009688;
box-shadow: 0 1px 0 #009688;
outline: none;
}
input.input-big:focus{
box-shadow: none;
}
select:focus,
[type="radio"]:checked + label:after,
[type="radio"].with-gap:checked + label:before,
[type="radio"].with-gap:checked + label:after,
[type="checkbox"]:checked + label:before,
[type="checkbox"] :indeterminate + label:before,
[type=checkbox].filled-in:checked + label:after {
border-color: #009688;
}
.subheader{
background-color: #00796B;
}