-
Notifications
You must be signed in to change notification settings - Fork 4
/
color.css
73 lines (61 loc) · 2.08 KB
/
color.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
/*
Copyright (C) 2012 Juan Lasheras (http://www.juanl.org).
This file is part of Quirky. Quirky is free software under the terms of the
GNU General Public License version 3, see <http://www.gnu.org/licenses/>.
*/
body { background-image: url("light_noise_diagonal.png"); }
#no_games, .logo, a { color: #4E5C7D; }
a:hover { color: #FFAF5A; }
button[disabled], button[disabled]:hover, button[disabled]:active, button {
border: 1px solid black;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background: #dfdfdf;
background: -webkit-gradient(linear, left top, left bottom, from(#efefef), to(#dfdfdf));
background: -webkit-linear-gradient(top, #efefef, #dfdfdf);
background: -moz-linear-gradient(top, #efefef, #dfdfdf);
background: -ms-linear-gradient(top, #efefef, #dfdfdf);
background: -o-linear-gradient(top, #efefef, #dfdfdf);
color: black;
}
button:hover { background: #efefef; }
button:active { background: #dfdfdf; }
button[disabled], button[disabled]:hover, button[disabled]:active { color: gray; }
#howtobttn {
border: 2px dotted #4E5C7D;
-webkit-border-radius: 40px;
-moz-border-radius: 40px;
border-radius: 40px;
color: #4e5c7d;
background: #ff9933;
background: -webkit-gradient(linear, left top, left bottom, from(#ffaf5a), to(#ff9933));
background: -webkit-linear-gradient(top, #ffaf5a, #ff9933);
background: -moz-linear-gradient(top, #ffaf5a, #ff9933);
background: -ms-linear-gradient(top, #ffaf5a, #ff9933);
background: -o-linear-gradient(top, #ffaf5a, #ff9933);
}
#howtobttn:hover { background: #ffaf5a; }
#howtobttn:active { background: #ff9933; }
.error {
border: red 1px solid;
background: lightgray;
color: red;
}
.boardpiece, .piece { background: url("wood.png"); }
#board {
border: 1px #A3B0B3 solid;
background: #F6F7FA;
}
.activate#board { border: 2px #FFAF5A solid; }
.panel {
color: white;
background-color: #A3B0B3;
}
.text {
background: #F6F7FA;
color: black;
border: 1px #A3B0B3 solid;
}
.mymsg { color: red; }
.othermsg { color: blue; }