-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
133 lines (111 loc) · 2.26 KB
/
style.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
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
129
130
131
132
133
/* Trek
* Copyright© 2002. Vedagiri Vijayakumar. All Rights Reserved.
*/
html, body {
height: 100%;
margin-left: 8%;
margin-right: 8%;
}
body {
min-height: 100%;
background-color: dodgerblue;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
header {
margin-top: 1rem;
font-size: x-large;
}
nav {
font-size: normal;
}
img {
width: 65%;
height: auto;
}
table[id=gameGrid] {
max-width: 65%;
width: auto;
height: auto;
margin-top: 1.0rem;
margin-left: auto;
margin-right: auto;
}
.center {
margin-left: auto;
margin-right: auto;
}
p {
font-size: 1.5rem;
line-height: 1.8rem;
}
#footer {
max-width: 100%;
padding-left: 1.0rem;
padding-right: 1.0rem;
padding-bottom: 1.0rem;
padding-top: 1.0rem;
color: lemonchiffon;
margin-left: auto;
margin-right: auto;
margin-bottom: 1.0rem;
text-align: center;
}
#footer p {
font-size: smaller;
line-height: 1.2rem;
}
a.playLink {
font-size: large;
padding: 0.60rem;
}
#messageBlock {
color: firebrick;
text-align: center;
}
.centerimage {
display: block;
margin-left: auto;
margin-right: auto;
width: 65%;
}
#statusMessage {
text-align: center;
color: black;
}
#statusBlock {
font-family:Arial, Helvetica, sans-serif;
font-weight: bolder;
font-size: 3.0rem;
color: #f0f0f0;
}
/* game.html styles */
/*
button.piece {
width: 10.0rem;
height: 10.0rem;
padding: 0.5rem;
border-radius: 0.8rem;
font-size: 3.0rem;
transition: border-radius 0.5s ease;
}
*/
button.piece {
width: 72px;
height: 72px;
padding: 6px 6px;
border-radius: 9px;
font-size: 36px;
transition: border-radius 0.5s ease;
}
button.piece:hover {
border-radius: 36px;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
cursor: pointer;
}
button.piece.selected {
outline-style: dotted;
outline-color: white;
outline-width: 3px;
outline-offset: 5px;
border-radius: 5.0rem;
}