-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexample.css
More file actions
187 lines (173 loc) · 4.87 KB
/
example.css
File metadata and controls
187 lines (173 loc) · 4.87 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
.example-base {
font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
color: #333; }
.hide {
display: none; }
.l-popout {
margin: 0;
padding: 0;
border: 0; }
.l-popout iframe {
width: 100%;
height: 100%;
min-height: 100%;
margin: 0;
padding: 0;
border: 0; }
.example-chat {
font-family: "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
border-radius: 3px;
-webkit-box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
background-color: #dfe3ea;
border: 1px solid #CCC;
overflow: auto;
padding: 0px;
font-size: 18px;
line-height: 22px;
color: #666; }
.example-chat header {
background-color: #EEE;
background: -webkit-gradient(linear, left top, left bottom, from(#EEEEEE), to(#DDDDDD));
background: -webkit-linear-gradient(top, #EEEEEE, #DDDDDD);
background: linear-gradient(top, #EEEEEE, #DDDDDD);
-webkit-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.9), 0px 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.9), 0px 1px 2px rgba(0, 0, 0, 0.1);
border-radius: 3px 3px 0px 0px;
border-bottom: 1px solid #CCC;
line-height: 24px;
font-size: 12px;
text-align: center;
color: #999; }
.example-chat input {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
border-radius: 3px;
padding: 0px 10px;
height: 30px;
font-size: 18px;
width: 100%;
font-weight: normal;
outline: none; }
.example-chat .example-chat-toolbar {
background-color: #FFF;
padding: 10px;
position: relative;
border-bottom: 1px solid #CCC; }
.example-chat .example-chat-toolbar label {
text-transform: uppercase;
line-height: 32px;
font-size: 14px;
color: #999;
position: absolute;
top: 10px;
left: 20px;
z-index: 1; }
.example-chat .example-chat-toolbar input {
-webkit-box-shadow: none;
box-shadow: none;
border: 1px solid #FFF;
padding-left: 100px;
color: #999; }
.example-chat .example-chat-toolbar input:active, .example-chat .example-chat-toolbar input:focus {
color: #1d9dff;
border: 1px solid #FFF; }
.example-chat ul {
list-style: none;
margin: 0px;
padding: 20px;
height: 200px;
overflow: auto; }
.example-chat ul li {
margin-bottom: 10px;
line-height: 24px; }
.example-chat ul li:last-child {
margin: 0px; }
.example-chat ul .example-chat-username {
margin-right: 10px; }
.example-chat footer {
display: block;
padding: 10px; }
.example-chat footer input {
border: 1px solid #ced3db;
height: 40px; }
#colorholder {
width: 480px;
height: 30px;
border: 2px solid #424547;
margin: 5px auto 0px auto; }
#drawing-canvas {
border: 3px solid #999; }
.colorbox {
width: 22px;
height: 22px;
margin: 1px;
display: inline-block;
border: 3px solid black; }
.example-leaderboard {
-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
padding: 20px;
border-radius: 5px;
background-color: white;
overflow: auto;
color: #666; }
.example-leaderboard table {
border-radius: 3px;
margin-bottom: 20px;
width: 100%;
border-collapse: collapse; }
.example-leaderboard table th {
background: #EEE;
border-bottom: 1px solid #CCC;
font-size: 12px;
color: #999;
padding: 5px 10px;
text-align: left; }
.example-leaderboard table td {
border-bottom: 1px solid #EEE;
padding: 10px;
color: #28a562; }
.example-leaderboard table td em {
font-style: normal;
font-weight: bold;
color: #666; }
.example-leaderboard table tr:first-child td {
background: green; }
.example-leaderboard input {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
border-radius: 3px;
padding: 0px 10px;
height: 30px;
font-size: 18px;
font-weight: normal;
outline: none;
border: 1px solid #CCC; }
.example-leaderboard input.example-leaderboard-name {
width: 186px;
margin-right: 10px; }
.example-leaderboard input.example-leaderboard-score {
width: 300px; }
#highestscore {
margin-top: 20px;
font-size: 14px; }
/* Presence */
#presenceDiv {
text-align: center; }
/* Tetris */
.tetris-body {
width: 600px; }
#canvas0, #canvas1 {
display: inline-block;
border: 4px solid #424547; }
#restartButton {
margin-top: 5px; }
#gameInProgress {
font-size: 14px; }