-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (73 loc) · 1.22 KB
/
style.css
File metadata and controls
82 lines (73 loc) · 1.22 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
body {
margin-top: 0px;
}
h1 {
text-align: center;
font-family: Times,serif;
}
.container {
width: 1028px;
margin: 0px auto 10px;
}
.container.border {
border-top: 2px solid #444444;
padding-top: -2px;
}
.screen-container {
border: 2px solid #999999;
z-index: 1;
}
canvas.screen {
width: 1024px;
height: 512px;
margin: auto;
display: block;
}
canvas#fullscreen {
z-index: 10;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.pull-right {
float: right;
}
.button {
border: 0 none;
border-radius: 0px 0px 4px 4px;
color: #FFFFFF;
cursor: pointer;
display: inline-block;
font-family: Arial,sans-serif;
font-weight: bold;
margin-bottom: 0px;
margin-top: 0px;
padding: 7px 10px;
text-decoration: none;
text-align: center;
}
.button.dark {
background: none repeat scroll 0 0 #444444;
}
.button.dark:hover {
background: none repeat scroll 0 0 #a94442;
}
.button.light {
background: none repeat scroll 0 0 #999999;
}
.button.light:hover {
background: none repeat scroll 0 0 #a94442;
}
.error-msg {
display: none;
border: 1px solid #ebccd1;
border-radius: 4px;
background-color: #f2dede;
color: #a94442;
font-family: Arial,sans-serif;
margin-bottom: 10px;
margin-top: 10px;
padding: 15px;
}