-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
128 lines (121 loc) · 2.77 KB
/
styles.css
File metadata and controls
128 lines (121 loc) · 2.77 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
html,body {
background-color: #000;
color: #aaa;
font-family: helvetica, arial, sans-serif;
margin: 0;
padding: 0;
font-size: 10pt;
}
h3 {
font-size:24px;
text-align:center;
color:#3baf28;
}
#canvas {
position: absolute;
left: 0;
right: 0;
top: 0;
margin: auto;
}
.topnote {
text-align:center;
}
#publish-best-score {
font-size:18px;
color:white;
text-decoration:underline;
text-align:center;
font-weight:bold;
width:100%;
}
#submit-controls input{
width:200px;
margin: 0 15px 10px 15px;
padding: 5px;
}
.scoreboard {
left:-240px;
width:240px;
background:black;
padding:5px 0 5px 0;
top:0;
position:absolute;
-webkit-transition: all .5s ease-in-out;
-moz-transition: all .5s ease-in-out;
-o-transition: all .5s ease-in-out;
transition: all .5s ease-in-out;
/*display: none;*/
height:100%;
border-right:5px solid #3baf28;
}
.yourScore {
margin-bottom:10px;
display: none;
}
.scoreboard ul {
list-style-type:none;
padding-left:0;
color:#ffffff;
margin: 0;
margin-bottom:15px;
padding: 0;
width:100%;
text-align:center;
font-size:30px;
}
.scoreboard input {
margin-bottom:8px;
width:100%;
font-size:12pt;
}
.scoreboard button {
margin:0;
margin-bottom:16px;
width:100%;
}
.scoreboard tr {
padding:5px 0;
float:left;
width:100%;
font-weight:bold;
}
.scoreboard tr:nth-child(even) {
background:#3baf28;
color:white;
}
.scoreboard td:nth-child(even) {
color:white;
font-weight:bold;
padding:5px;
}
.scoreboard td {
font-size:16px;
}
#global-scoreboard td {
padding: 3px 10px;
width:100%;
}
#global-scoreboard td + td {
text-align: right;
}
.success {
color:#8efa00;
font-weight:bold;
display:none;
}
#submit-controls {
display:none;
}
.showHide {
position: absolute;
left:100%;
top:45%;
color: white;
background:#3baf28;
padding: 10px;
font-weight: bold;
border-radius: 5px;
cursor: pointer;
font-family: arial;
}