-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
101 lines (83 loc) · 1.43 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
/* Styles go here */
body {
background: #b5afa7 no-repeat 23px 30px;
background-size: 380px;
font-family: sans-serif;
}
#main {
margin: 0 auto 0;
width: 800px;
}
.time {
background: #736d65;
display: inline-block;
padding: 6px 10px;
}
.board {
border: 10px solid #a49e96;
border-radius: 10px;
margin: 20px;
background: #938d85;
display: inline-block;
}
.tile {
position: relative;
border: 1px solid #504d49;
width: 30px;
height: 30px;
float: left;
color: #100d09;
font-weight: bold;
line-height: 30px;
font-size: 20px;
vertical-align: middle;
text-align: center;
}
.lid {
position: absolute;
top: -1px;
left: -1px;
right: -1px;
bottom: -1px;
border: 2px outset #a49e96;
background-image:
radial-gradient(
circle at top left,
#a49e96,
#605d59
);
}
.lid:hover {
background-image:
radial-gradient(
circle at bottom right,
#a49e96,
#605d59
);
}
.mine {
background: url(../images/danger.png);
background: red;
}
a:hover{
cursor: pointer;
}
ul.actions{
list-style: none;
margin: 0 20px;
padding: 0;
}
ul.actions li{
display: inline-block;
}
ul.actions a{
border: 10px solid #a49e96;
border-radius: 10px;
padding: 6px 12px;
text-decoration: none;
font-weight: bold;
color: rgba(0,0,0,0.5);
}
ul.actions a:hover{
background: #a49e96;
}