-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (49 loc) · 891 Bytes
/
style.css
File metadata and controls
60 lines (49 loc) · 891 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
54
55
56
57
58
59
60
body{
background-color: rgb(240, 230, 140);
}
h1{
text-align: center;
color: rgb(205, 92, 92);
}
div{
margin-top: 20px;
}
#intro{
padding: 10px 10px 10px 100px;
margin-left: 50px;
margin-right: 50px;
border: 1px solid blue;
border-radius: 20px;
background-color: rgb(240, 248, 255);
}
#zoneInfo{
display: flex;
justify-content: space-around;
font-size: 1.3em;
color: rgb(205, 92, 92);
/* border: 1px solid red; */
}
#zoneInfo p {
/* border: 1px solid blue; */
}
#zoneMusicale{
text-align: center;
}
#action{
text-align: center;
}
button{
padding: 10px;
margin: 5px;
cursor: pointer;
}
#zoneMusicale button{
color: rgb(75, 0, 130);
background-color: rgb(135, 206, 250);
border-radius: 20px;
}
#action button{
color: rgb(75, 0, 130);
background-color: rgb(230, 230, 250);
border-radius: 20px;
}