-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle.css
43 lines (40 loc) · 1.07 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
body {
background-size: cover;
background-position: center;
background-attachment: fixed;
background: linear-gradient(100deg, gray, #fff, gray,gray );
background-size: 400% 400%;
}
#tab {
background-color: rgb(0, 0, 0);
width: 300px;
height: 300px;
}
td {
color: aliceblue;
font-weight: 700;
font-size: 50px;
text-align: center;
}
#rejouer{
font-weight: 700;
font-size: 20px;
text-align: center;
width: 300px;
height: 40px;
color: #fff;
border-radius: 20px;
background: linear-gradient(10deg, #fff, #000, #000, #fff);
}
#rejouer:hover{
color: rgb(0, 0, 0);
background: linear-gradient(10deg, #000, #fff, #fff, #000);
}
h1 {
font-size: 36px; /* Taille de la police */
color: #293849; /* Couleur du texte (bleu vif) */
margin-bottom: 20px; /* Marge en bas pour l'espacement */
text-align: center; /* Alignement centré */
text-transform: uppercase; /* Texte en majuscules */
letter-spacing: 2px; /* Espacement entre les lettres */
}