-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGear-System.css
More file actions
40 lines (28 loc) · 804 Bytes
/
Copy pathGear-System.css
File metadata and controls
40 lines (28 loc) · 804 Bytes
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
body, #content, #bodyContent, #globalWrapper, #mainContainer, #contentContainer{
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
width: 100%;
background: #FFF4AA;
height: 90%;
min-width: 400px;
}
#Navgear{
cursor :pointer;
z-index:999;
-webkit-transition: 2s ease-in-out;
-moz-transition: 2s ease-in-out;
-o-transition: 2s ease-in-out;
transition: 2s ease-in-out;
}
#NavGear:hover{
cursor:pointer;
-webkit-transform: translate(-200px,-200px);
-moz-transform: translate(-200px,-200px);
-o-transform: translate(-200px,-200px);
-ms-transform: translate(-200px,-200px);
transform: translate(-200px,-200px);
}