-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrps.css
More file actions
47 lines (38 loc) · 743 Bytes
/
rps.css
File metadata and controls
47 lines (38 loc) · 743 Bytes
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
.root {
background-color: #9999ff;
}
.header {
background-color: #000000;
color: #ffffff;
}
.border {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.content {
background-color: #ffffff;
}
.imgloadingmask {
background-color:#ffffff;
background-image: url('img/ajaxloader.gif');
background-repeat:no-repeat;
background-position:center;
}
.instructions {
padding: 5px;
}
.movebutton {
border-radius: 10px;
background-color: #cccccc;
color: #000000;
}
.movebuttonselected {
background-color: #ff6633;
color: #ffffff;
}
.footer {
background-color: #000000;
color: #ffffff;
}