-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (64 loc) · 2.12 KB
/
style.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
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
@charset "utf-8";
/* CSS Document */
#grille canvas {
width:32px;
height:32px;
padding:0;
margin:0;
display:inline-block;
float:left;
border:1px dotted black;
/*margin-right:-1px;
margin-bottom:-1px;*/
}
#grille canvas.bios {
background:url("./graphics/interface/icons/32x32/bios.png") no-repeat center center;
}
#grille canvas.cooler {
background:url("./graphics/interface/icons/32x32/cooler.png") no-repeat center center;
}
#grille canvas.ddr_memory {
background:url("./graphics/interface/icons/32x32/ddr_memory.png") no-repeat center center;
}
#grille canvas.motherboard {
background:url("./graphics/interface/icons/32x32/motherboard.png") no-repeat center center;
}
#grille canvas.network_adapter {
background:url("./graphics/interface/icons/32x32/network_adapter.png") no-repeat center center;
}
#grille canvas.pci {
background:url("./graphics/interface/icons/32x32/pci.png") no-repeat center center;
}
#grille canvas.processor {
background:url("./graphics/interface/icons/32x32/processor.png") no-repeat center center;
}
#grille canvas.flag_blue {
background:url("./graphics/interface/icons/32x32/flag_blue.png") no-repeat center center;
}
#grille canvas.flag_green {
background:url("./graphics/interface/icons/32x32/flag_green.png") no-repeat center center;
}
#grille canvas.flag_orange {
background:url("./graphics/interface/icons/32x32/flag_orange.png") no-repeat center center;
}
#grille canvas.flag_pink {
background:url("./graphics/interface/icons/32x32/flag_pink.png") no-repeat center center;
}
#grille canvas.flag_purple {
background:url("./graphics/interface/icons/32x32/flag_purple.png") no-repeat center center;
}
#grille canvas.flag_red {
background:url("./graphics/interface/icons/32x32/flag_red.png") no-repeat center center;
}
#grille canvas.flag_finish {
background:url("./graphics/interface/icons/32x32/flag_finish.png") no-repeat center center;
}
#grille canvas.selected {
border:1px solid blue;
}
#grille canvas.green {
background-color:green;
}
#grille canvas.red {
background-color:red;
}