-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStyle.css
More file actions
51 lines (44 loc) · 724 Bytes
/
Copy pathStyle.css
File metadata and controls
51 lines (44 loc) · 724 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
body{
margin: 0;
font-family: Arial, sans-serif;
background: #0d0dad;
color: white;
display: flex;
justify-content: center;
padding: 20px;
}
.master{
display: flex;
gap: 30px;
align-items: center;
flex-direction: column;
}
.gioco{
text-align: center;
}
.titolo{
margin-bottom: 5px;
font-size: 3em;
}
.temp{
margin-top: 0;
color: #38bdf8;
}
canvas{
border: 2px solid #334155;
background: white;
border-radius: 6px;
}
.inizio{
margin-top: 15px;
padding: 24px 36px;
font-size: 1em;
background: #22c55e;
border: none;
color: white;
cursor: pointer;
border-radius: 6px;
}
.inizio:hover{
background: #16a34a;
}