-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcbox.css
More file actions
138 lines (119 loc) · 3.24 KB
/
cbox.css
File metadata and controls
138 lines (119 loc) · 3.24 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
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
html {
background-image: url(../images/chrome-grey-128.png), url(../images/cbox-bg-01.png);
background-position: left top, center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: 32px 32px, cover;
}
body {
width: 100%;
height: 100%;
overflow: hidden;
}
.homescreen {
position: absolute;
left: 50%;
top: 50%;
width:1036px;
height:374px;
margin-left:-530px;
margin-top:-187px;
/*border: 1px solid black;*/
}
.homescreen .side .box.focus {
-webkit-transform: scale(1.05);
border: 2px solid white;
}
.homescreen .box {
height:187px;
background-color: black;
background-repeat:no-repeat;
background-clip:content-box;
background-position:center;
background-size: contain;
}
.homescreen .box .titlebar {
width:262px;
height:30px;
background-color: white;
color: #bc8f8f;
font-size: 18pt;
}
.homescreen .box#center .titlebar {
position: absolute;
top: 348px;
width:500px;
}
.homescreen .box#center {
float: left;
height:378px;
width: 500px;
margin-right: 4px;
border:2px solid rgba(0,0,0,0);
background-position: 0 0px;
background-size: 2500px 378px;
}
.homescreen .box#center.focus {
border:2px solid rgba(0,0,0,0.6);
/* @HOLD
-webkit-animation:slide 8s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function:erase-out;
-webkit-animation-delay: 1s;
*/
}
@-webkit-keyframes slide
{
0% {background-position: 0 0px;}
25% {background-position: -500px 0px;}
50% {background-position: -1000px 0px;}
75% {background-position: -1500px 0px;}
100% {background-position: -2000px 0px;}
}
.homescreen .side {
width:262px;
float: left;
}
.homescreen .side:first-child {
margin-right: 4px;
}
.homescreen .side .box {
margin-bottom: 4px;
}
.shadow {
position: absolute;
bottom: -80px;
width:100%;
height:20px;
background: -webkit-radial-gradient(center, ellipse cover, rgba(10,10,10,0.5) 1%, rgba(255,255,255,0) 100%);
}
.game-launcher {
z-index: 99999;
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}
.game-sandbox {
z-index: 99999;
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
}
#osx-modal-content {display:none;}
/* Overlay */
#osx-overlay {background-color:#000; cursor:wait;}
/* Container */
#osx-container {background-color:#eee; color:#000; margin: 0 auto; font: 16px/24px "Lucida Grande",Arial,sans-serif; padding-bottom:4px; width:600px; -moz-border-radius-bottomleft:6px; -webkit-border-bottom-left-radius:6px; -moz-border-radius-bottomright:6px; -webkit-border-bottom-right-radius:6px; border-radius:0 0 6px 6px; -moz-box-shadow:0 0 64px #000; -webkit-box-shadow:0 0 64px #000; box-shadow:0 0 64px #000;}
#osx-container a {color:#ddd;}
#osx-container #osx-modal-title {color:#000; background-color:#ddd; border-bottom:1px solid #ccc; font-weight:bold; padding:6px 8px; text-shadow:0 1px 0 #f4f4f4;}
#osx-container .close {display:none; position:absolute; right:0; top:0;}
#osx-container .close a {display:block; color:#777; font-weight:bold; padding:6px 12px 0; text-decoration:none; text-shadow:0 1px 0 #f4f4f4;}
#osx-container .close a:hover {color:#000;}
#osx-container #osx-modal-data {font-size:12px; padding:6px 12px;}
#osx-container h2 {margin:10px 0 6px;}
#osx-container p {margin-bottom:10px;}
#osx-container span {color:#777;}