forked from cripi-interface-development/dz2-css
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterface2.css
More file actions
51 lines (39 loc) · 992 Bytes
/
interface2.css
File metadata and controls
51 lines (39 loc) · 992 Bytes
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
.buhonline-block a img{
background-color: red;
}
img[alt="Бухгалтерия Онлайн"] {
background-color: red;
}
img[src="./ЗАО ПФ СКБ Контур _files/buhonline-logo.gif"] {
background-color: red;
}
img[title="Бухгалтерия Онлайн"] {
background-color: red;
}
img[src^="./ЗАО ПФ СКБ Контур _files/buhonline-logo"] {
background-color: red;
}
img[src$="buhonline-logo.gif"] {
background-color: red;
}
img[src*="buhonline-logo"] {
background-color: red;
}
a[href="http://www.buhonline.ru/"] :first-child {
background-color: red;
}
.fresh-news + .buhonline-block a img {
background-color: red;
}
.buhonline-block a > img {
background-color: red;
}
.right-col- :nth-child(even) a img {
background-color: red;
}
.right-col- :last-child a img {
background-color: red;
}
.right-col- :nth-of-type(2) a img {
background-color: red;
}