Blame view

sources/apps/impressionist/css/matrices.css 2.48 KB
42e4f8d60   Kload   add all apps
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
  #save {
      width:300px;
      height:300px;	
      padding:20px;
      position:absolute;
      left:50%;
      top:50%;
      margin:-150px 0 0 -150px;
      border:1px dashed rgba(0,0,0,0.5);
      color:rgba(0,0,0,0.5);
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
  
  	
  }
  
  #save a.reset {
  	position:absolute;
  	color:rgba(0,0,0,0.5);
          left:20px;
  	bottom:20px;
  	text-decoration:none;
  	font-size:10px;
  }
  #save a.reset:hover {
  	-webkit-transform: matrix(1.4172,-0.3424,0.3074,1.2345,0,0); 
  	-moz-transform: matrix(1.4172,-0.3424,0.3074,1.2345,0px,0px); 
          -ms-transform: matrix(1.4172,-0.3424,0.3074,1.2345,0,0); 
  	-o-transform: matrix(1.4172,-0.3424,0.3074,1.2345,0,0); 
  	transform: matrix(1.4172,-0.3424,0.3074,1.2345,0,0);
  }
  
  #play {
  	width:300px;
  	height:10px;
  	position:absolute;
  	/*
  	padding:20px;
  	
  	*/
  	/*left:50%;
  	top:50%;*/
  	margin:-150px 0 0 -150px;
  	/*background:#ff9900;*/
  
  	-webkit-user-select: none;
  
  	/*-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.15);
  	-moz-box-shadow: 0 0 10px rgba(0,0,0,0.15);
  	box-shadow: 0 0 10px rgba(0,0,0,0.15);
  
  	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
  	*/
  
  	-webkit-transform: translate3d(0,0,0);
  }
  	#play span {
  		position:absolute;
  		/*border:1px solid silver;
  		background:#FFCC00;
  		font-size:14px;
  		padding:4px 8px;
  		*/
  		white-space:nowrap;
  		cursor:pointer;
  		
  		/*
  		-webkit-border-radius: 5px;
  		-moz-border-radius: 5px;
  		border-radius: 5px;
  		*/
  	}
  		#play span:hover {
  			border-color:gray;
  		}
  
  		#play .rotate {
  			right:-50px;
  			top:50%;
  			cursor: n-resize;
  		}
  
  		#play .scale {
  			bottom:-40px;
  			right:-50px;
  			cursor: nw-resize;
  
  			-webkit-transform: rotate(45deg);
  			-moz-transform: rotate(45deg);
  			-ms-transform: rotate(45deg);
  			-o-transform: rotate(45deg);
  			transform: rotate(45deg);
  		}
  
  		#play .skewx {
  			left:50%;
  			top:-15px;
  			/*bottom:-15px;*/
  			cursor: w-resize;
  		}
  
  		#play .skewy {
  			left:-38px;
  			top:50%;
  			cursor: n-resize;
  
  			-webkit-transform: rotate(-90deg);
  			-moz-transform: rotate(-90deg);
  			-ms-transform: rotate(-90deg);
  			-o-transform: rotate(-90deg);
  			transform: rotate(-90deg);
  		}
  
  		#play .move {
  			top:10px;
  			right:10px;
  			cursor: move;
  		}
  
  #output {
  	position:absolute;
  	width:100%;
  	bottom:0;
  	left:0;
  	padding:20px 20px;
  	border-top:1px solid gray;
  	background:#fff;
  	font-family: courier new;
  	text-align:center;
  	white-space:pre;
  	
  	-webkit-box-sizing: border-box;
  	-moz-box-sizing: border-box;
  	box-sizing: border-box;
  }