-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeuille.css
More file actions
53 lines (47 loc) · 916 Bytes
/
feuille.css
File metadata and controls
53 lines (47 loc) · 916 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
47
48
49
50
51
52
53
html {
margin: 10px;
}
/*
* Minefield.
*/
table {
border: 2px solid silver;
border-collapse: collapse;
text-align: center;
}
/**
* Case present on Minefield.
*/
td {
border: 2px solid silver;
width: 20px;
height: 20px;
}
/**
* Difficulty menu.
*/
#mine-nav-difficulty {
margin-top: 10px;
display: none;
}
/**
* Div who contains minefield.
*/
#mine-minefield-canvas {
margin-top: 10px;
}
/************************************/
/* CASE ELEMENTS */
/************************************/
/* Help case coloration instead of the content case */
.n0 { color: silver; }
.n1 { color: #1a1aff; }
.n2 { color: #33cc33; }
.n3 { color: #cc0000; }
.n4 { color: #0000b3; }
.n5 { color: #6600cc; }
.n6 { color: #00ff99; }
.n7 { color: #000000; }
.n8 { color: #f2f2f2; }
/* Represent a flag for mark possible mine in minefield. */
.flag { color: #930031; }