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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
.bg-primary, .bg-dark {
background-color: #1289A7 !important;
background-color: #0652DD !important;
background-color: #142639 !important;
background-image: linear-gradient(359deg, #1289A7 -70%, #142639 100%);
}
a, .page-link {
color: #142639;
color: #406485;
color: #142639;
color: #12CBC4;
color: #0fb9b1;
color: #1289A7 ;
}
a:hover, .page-link:hover {
color: #0fb9b1;
color: #12CBC4;
}
a.u:hover, .page-link:hover {
text-decoration-style: dotted;
}
.navbar-light {
color: #424242 !important;
}
.btn-secondary {
background-color: #406485 !important;
background-color: #778ca3 !important;
background-color: #d1d8e0 !important;
border: 1px solid #d1d8e0 !important;
color: #142639 !important;
}
.btn-outline-success {
/*
color: #1289A7 !important;
border: 1px solid #1289A7 !important;
*/
color: #ddd !important;
border: 1px solid #8a98a2 !important;
background-image: linear-gradient(20deg, #1289A7 -100%, #142639 100%);
}
}
.btn-outline-success:hover {
color: #fff !important;
border: 1px solid #fff !important;
background-color: #142639 !important;
}
.text-primary {
color: #142639 !important;
}
.btn-primary {
color: #142639 !important;
background-color: #1289A7 !important;
border: 1px solid #142639 !important;
}
.btn-secondary:hover {
background-color: #d1d8e0 !important;
color: #142639 !important;
box-shadow: 1px 1px 2px 1px #142639 !important;
/*
border: 1px solid #142639 !important;
*/
}
.btn-rss{
background-color: #F89838 !important;
border: 1px solid #F89838 !important;
color: white !important;
}
.btn-rss:hover {
/*
border: 1px solid #142639 !important;
box-shadow: 0 0 3px 1px #F89838 !important;
box-shadow: !important;
*/
color: #142639 !important;
box-shadow: 1px 1px 2px 1px #142639, 0 0 3px 1px #F89838 !important;
}
.form-control {
background-image: linear-gradient(0deg,#009688 2px,rgba(0,150,136,0) 0),linear-gradient(0deg,#1289A7 1px,transparent 0);
}
#front_search_help, #front_search_form::placeholder, #front_search_form {
color: white;
opacity: 0.7;
}
|