-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (80 loc) · 2.12 KB
/
style.css
File metadata and controls
86 lines (80 loc) · 2.12 KB
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
html, body {
background-color: #000;
margin: 0px;
padding: 0px;
}
canvas {
border: 6px #444444 solid;
-webkit-transform: translateZ(1100px) rotateX(90deg);
/*transform: translateZ(100px) rotateX(90deg);*/
}
/*.ui-slider-horizontal .ui-state-default {background: white url(http://stackoverflow.com/content/img/so/vote-arrow-down.png) no-repeat scroll 50% 50%;}*/
.ui-slider .ui-slider-handle {
width: 0.8em;
height: 0.8em;
margin-left: -5px;
top: -0.3em;
border:none;
}
.canvasInitial {
-webkit-transform: translateZ(1100px) rotateX(90deg);
-webkit-transition: -webkit-transform 2.5s ease;
}
.canvasAway {
-webkit-transform: translateZ(-530px) rotateX(33deg);
-webkit-transition: -webkit-transform 2.5s ease;
}
.canvasHome {
-webkit-transform: translateZ(0px) rotateX(0deg);
-webkit-transition: -webkit-transform 5.5s ease;
}
#container {
position: absolute;
background: #333333 url('../../_/images/DWD_FBApps_bg.jpg') no-repeat;
background-size: cover;
margin-top: 40px;
margin-left: auto;
width: 100%;
height: 907px;
}
#panel {
cursor: default; /* <-- jQuery UI forced me to adopt this - clicking on the canvas changed pointer to text selector */
-webkit-perspective: 1500px;
perspective: 200px;
}
#options{
margin-top: 7px;
margin-right: 8px;
font-family: Orbitron, Arial, serif;
}
#world {background-color: #000000;}
#bannerContainer {
float: right;
background-color: #000;
}
#logoImage {
width:500px;
height:40px;
}
#slider{margin-right: 20px; margin-left: 20px; margin-top:14px;}
#canvasText{display:none;}
#canvasText, #bannerContainer {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/*for the console*/
#console {
background-color: black;
text-align: center;
width: 90%;
}
#consoleBox {
background-color: black;
color: white;
font-family: Courier;
width: 90%;
}