-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (41 loc) · 838 Bytes
/
style.css
File metadata and controls
49 lines (41 loc) · 838 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
body {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
background-color: darkgrey;
}
#mondiv {
height: 630px;
width: 630px;
background-color: blue;
border: 10px solid navy;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
}
.cases {
height: 70px;
width: 70px;
margin: 5px;
/* Cercles */
background-color: white;
border-radius: 50%;
border: 5px solid navy;
}
.pion-rouge {
background-color: red;
}
.pion-jaune {
background-color: yellow;
}
button {
padding: 10px 20px;
font-size: 16px;
font-weight: bold;
color: white;
background-color: #3498db;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
margin: 10px;
}