blob: fddeb46dfe7f4c03e53a72e2f1fb738d9a0e65b8 (
plain)
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
|
body {
background-color: #fff;
width: 80%;
margin: 0 auto;
font-family: sans-serif;
font-size: 0.9em;
}
h1 {
display: block;
border-bottom: 1px solid black;
font-size: 1.4em;
}
fieldset {
width: 90%;
margin: 1em auto;
border: 1px solid #bbb;
}
legend {
color: #222;
}
#uploaded {
text-align: center;
float: left;
border: 1px solid #ccc;
width: 28%;
}
#results {
margin-left: 32%;
}
div.color {
height: 3em;
border: 1px solid white;
-moz-border-radius: 1em;
}
span.color {
font-weight: bold;
}
#youricon {
min-height: 200px;
}
#youricon div {
text-align: center;
}
.icon {
display: block;
width: 100px;
min-height: 120px;
background-color: black;
border: 1px solid #ccc;
-moz-border-radius: 1em;
text-align: center;
font-family: sans-serif;
padding: 10px;
margin: 0 auto;
color: white;
}
.icon object {
width: 80px;
height: 80px;
overflow: hidden;
}
.icon p {
margin: 10px auto;
font-size: 1.1em;
}
|