-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
96 lines (96 loc) · 1.5 KB
/
styles.css
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
body {
background: #ffffff;
color:#cccccc;
margin: 0px;
padding: 0px;
border: 0px;
}
canvas {
image-rendering: optimizeSpeed;
-webkit-interpolation-mode: nearest-neighbor;
-ms-touch-action: none;
display: inline-block;
border: 2px solid #000;
}
:-webkit-full-screen #canvas {
width: 100%;
height: 100%;
}
div.content
{
text-align: center;
}
div.gm4html5_div_class
{
margin: 0px;
padding: 0px;
border: 0px;
width: 100%;
height: 100%;
}
input
{
font-family: 'Raleway', sans-serif;
width: 100%;
height: 3em;
}
input[type=text]
{
font-size: 1.5em;
}
input[type=text]:focus
{
outline-color: #aaa;
}
input[type=button]
{
background-color: #eeeeee;
font-size: 1.2em;
width:8em;
height:4em;
border: 0px;
}
input[type=button]:hover
{
background-color: #ffffff;
cursor:pointer;
}
/* START - Login Dialog Box */
div.gm4html5_login
{
font-family: 'Raleway', sans-serif;
padding: 20px;
position: absolute;
border: solid 2px #000000;
background-color: #dddddd;
text-align: left;
color:#000000;
border-radius: 0px;
width: 75%;
box-shadow: #888888 20px 20px 40px;
}
div.gm4html5_login table
{
width: 100%;
}
div.gm4html5_login td
{
padding: 20px;
}
div.gm4html5_cancel_button
{
float: right;
}
div.gm4html5_login_button
{
float: left;
}
div.gm4html5_login_header
{
text-align: center;
}
/* END - Login Dialog Box */
:-webkit-full-screen {
width: 100%;
height: 100%;
}