-
Notifications
You must be signed in to change notification settings - Fork 0
/
pxcel.css
94 lines (84 loc) · 1.3 KB
/
pxcel.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
@import url(http://fonts.googleapis.com/css?family=Droid+Sans:400,700);
@import url(html5boiler.css);
body {
margin: 0;
-moz-user-select: none;
-webkit-user-select: none;
font-family: 'Droid Sans', sans-serif;
}
h1 {
font-size: 12px;
text-align: center;
}
#container {
width: 404px;
padding: 10px 100px;
margin: 0 auto;
color: gray;
text-decoration: none;
position: relative;
}
#paletteContainer {
position: absolute;
width: 90px;
left: 0;
/*margin-right: 10px;*/
}
#canvasContainer {
border: 1px solid #ccc;
padding: 1px;
height: 400px;
float: left;
margin-right: 5px;
}
#canvas {
cursor: pointer;
height: 400px;
width: 400px;
}
#previews {
width: 40px;
position: absolute;
left: 514px;
}
canvas {
-webkit-tap-highlight-color: transparent;
}
#previews .preview {
padding: 1px;
border: 1px solid #ccc;
position: absolute;
top: 0;
left: 0;
}
#previews .zoom1 {
width: 16px;
top: 46px;
}
#previews .zoom2 {
width: 32px;
}
#controls {
padding-top: 10px;
clear: both;
}
#settings {
float: right;
}
#settings a {
display: inline-block;
background-color: white;
border: 1px solid #ccc;
padding: 3px 5px;
color: gray;
text-decoration: none;
font-size: 11px;
}
#settings a:hover {
background-color: gray;
color: white;
}
#share {
float: left;
}
@import url(html5helper.css);