-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
128 lines (117 loc) · 2.74 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
html,body {
width:100%;
height:100%;
overflow:hidden;
background:#000;
font-family:Jolly Lodger;
}
* {
margin:0;
padding:0;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
canvas {
position:absolute;
left:0px;
top:35px;
right:0px;
bottom:0px;
}
header {
position:absolute;
left:0px;
top:0px;
right:0px;
height:35px;
background:#666;
overflow:hidden;
background-color:#030303;
background-image: -moz-linear-gradient(top , #030303, #999999 0px,#000000 45px);
background-image: -webkit-linear-gradient(top , #030303, #999999 0px,#000000 45px);
background-image: -o-linear-gradient(top , #030303, #999999 0px,#000000 45px);
background-image: -ms-linear-gradient(top , #030303, #999999 0px,#000000 45px);
background-image: linear-gradient(top , #030303, #999999 0px,#000000 45px)
}
header h1 {
position:absolute;
top:12px;
left:10px;
line-height:10px;
color: #ffffff;
font-weight:bold;
font-size: 23px;
letter-spacing:2px;
text-shadow:0px 0px 0 rgb(202,202,202),1px 1px 0 rgb(158,158,158), 2px 2px 0 rgb(115,115,115),3px 3px 2px rgba(0,0,0,0.4),3px 3px 1px rgba(0,0,0,0.5),0px 0px 2px rgba(0,0,0,.2);
-webkit-transform: rotate(-3deg);
-moz-transform: rotate(-3deg);
-o-transform: rotate(-3deg);
writing-mode: lr-tb;
}
header #tools {
display:block;
height:100%;
position:absolute;
top:0px;
right:30px;
bottom:0px;
}
header #tools a,
header #tools div {
display:inline-block;
text-decoration:none;
color:#000;
overflow:hidden;
margin-top:8px;
}
header #tools .color{
border:1px black solid;
height:15px;
width:15px;
text-indent:-9999px;
margin-right:10px;
border-radius:3px;
-moz-box-shadow: inset -1px -1px 1px #888;
-webkit-box-shadow: inset -1px -1px 1px #333;
box-shadow: inset -1px -1px 5px #000;
}
header #tools select {
opacity:0.3;
position:absolute;
left:-90px;
top:7px;
}
header #tools input {
opacity:0.4;
height:14px;
margin-right:5px;
width:80px;
}
header #tools #alpharange {
width:50px;
}
header #tools #save {
line-height:18px;
font-size:25px;
text-shadow:0px 0px 0 rgb(202,202,202),1px 1px 0 rgb(158,158,158), 2px 2px 0 rgb(115,115,115),3px 3px 2px rgba(0,0,0,0.4),3px 3px 1px rgba(0,0,0,0.5),0px 0px 2px rgba(0,0,0,.2);
-webkit-transform: rotate(-3deg);
-moz-transform: rotate(-3deg);
-o-transform: rotate(-3deg);
writing-mode: lr-tb;
position:absolute;
right:-35px;
margin-right:10px;
}
header #tools a.activetool,
header #tools a.activecolor {
-moz-box-shadow: inset -5px -5px 5px #888;
-webkit-box-shadow: inset -5px -5px 5px #888;
box-shadow: inset 1px 1px 5px #000;
}
header nav a:hover {
opacity:1.0;
}