-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
151 lines (115 loc) · 4.11 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
@charset "utf-8";
/* CSS Document */
#grille {
display:block;
padding:0;
margin:0;
background-color:#CCC;
border:3px solid #999;
position:fixed;
top:100px;
left:50%;
}
#grille span {
width:32px;
height:32px;
padding:0;
margin:0;
display:block;
background:url("./graphics/interface/case.png") no-repeat top left;
position:absolute;
}
#grille span.selected {
background-color:blue;
}
#grille span.green {
background-color:green;
}
#grille span.red {
background-color:red;
}
#grille span[type="maxi"] {
background:url("./graphics/interface/case_maxi.png") no-repeat top left;
}
#grille span[type="hyper"] {
background:url("./graphics/interface/case_hyper.png") no-repeat top left;
}
#grille span canvas {
width:32px;
height:32px;
padding:0;
margin:0;
display:inline-block;
position:absolute;
top:0;
left:0;
}
#grille span.bios canvas {
background:url("./graphics/interface/icons/32x32/bios.png") no-repeat center center;
}
#grille span.cooler canvas {
background:url("./graphics/interface/icons/32x32/cooler.png") no-repeat center center;
}
#grille span.ddr_memory canvas {
background:url("./graphics/interface/icons/32x32/ddr_memory.png") no-repeat center center;
}
#grille span.motherboard canvas {
background:url("./graphics/interface/icons/32x32/motherboard.png") no-repeat center center;
}
#grille span.network_adapter canvas {
background:url("./graphics/interface/icons/32x32/network_adapter.png") no-repeat center center;
}
#grille span.pci canvas {
background:url("./graphics/interface/icons/32x32/pci.png") no-repeat center center;
}
#grille span.processor canvas {
background:url("./graphics/interface/icons/32x32/processor.png") no-repeat center center;
}
#grille span.flag_blue canvas {
background:url("./graphics/interface/icons/32x32/flag_blue.png") no-repeat center center;
}
#grille span.flag_green canvas {
background:url("./graphics/interface/icons/32x32/flag_green.png") no-repeat center center;
}
#grille span.flag_orange canvas {
background:url("./graphics/interface/icons/32x32/flag_orange.png") no-repeat center center;
}
#grille span.flag_pink canvas {
background:url("./graphics/interface/icons/32x32/flag_pink.png") no-repeat center center;
}
#grille span.flag_purple canvas {
background:url("./graphics/interface/icons/32x32/flag_purple.png") no-repeat center center;
}
#grille span.flag_red canvas {
background:url("./graphics/interface/icons/32x32/flag_red.png") no-repeat center center;
}
#grille span.flag_finish canvas {
background:url("./graphics/interface/icons/32x32/flag_finish.png") no-repeat center center;
}
#grille span.bullet_black canvas {
background:url("./graphics/interface/icons/32x32/bullet_black.png") no-repeat center center;
}
#grille span.bullet_blue canvas {
background:url("./graphics/interface/icons/32x32/bullet_blue.png") no-repeat center center;
}
#grille span.bullet_green canvas {
background:url("./graphics/interface/icons/32x32/bullet_green.png") no-repeat center center;
}
#grille span.bullet_orange canvas {
background:url("./graphics/interface/icons/32x32/bullet_orange.png") no-repeat center center;
}
#grille span.bullet_pink canvas {
background:url("./graphics/interface/icons/32x32/bullet_pink.png") no-repeat center center;
}
#grille span.bullet_purple canvas {
background:url("./graphics/interface/icons/32x32/bullet_purple.png") no-repeat center center;
}
#grille span.bullet_red canvas {
background:url("./graphics/interface/icons/32x32/bullet_red.png") no-repeat center center;
}
#grille span.bullet_white canvas {
background:url("./graphics/interface/icons/32x32/bullet_white.png") no-repeat center center;
}
#grille span.bullet_yellow canvas {
background:url("./graphics/interface/icons/32x32/bullet_yellow.png") no-repeat center center;
}