-
Notifications
You must be signed in to change notification settings - Fork 0
/
chansons.css
102 lines (100 loc) · 2.12 KB
/
chansons.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#eg{
text-align: center;
color:black;
font-size: 1cm;
margin-left: 33%;
font-family: 'Acme', sans-serif;
border: 5px solid black;
}
#barre{
position: fixed;
top: 0px;
height: 2cm;
width: 100%;
background-color:bisque;
list-style-type: none;
display: flex;
align-items: center;
justify-content: flex-start;
margin-top: 0;
}
.test{
margin-right: 2cm;
font-size: 20px;
}
body{
margin-left: 0;
background-image: url("https://www.radiofrance.fr/s3/cruiser-production/2021/04/8bc659af-ca52-4852-b8c9-5c5693dd83dc/1200x630_dalida.jpg");
background-size: cover;
background-repeat: no-repeat;
}
#start{
display: block;
margin: auto;
margin-top: 30px;
border: 2px solid;
background-color: lightgrey;
border-radius: 6px;
cursor: pointer;
font-size: 1cm;
}
.button_link {
border: none;
display: inline-block;
padding: 8px 16px;
vertical-align: middle;
overflow: hidden;
text-decoration: none;
color: inherit;
background-color: inherit;
text-align: center;
cursor: pointer;
white-space: nowrap;
}
.button_link:hover{
color: brown;
}
#chansons{
display: grid;
grid-template-columns: auto auto;
}
h1{
grid-column: 1/span 2;
text-align: center;
color: goldenrod;
text-shadow: 2px 2px 1px black;
font-family: 'Alex Brush', handwriting;
font-size: 2.5cm;
margin-top: 15vh;
}
#chanson1{
grid-column: 1;
height: 240px;
width: 500px;
background-color: rgba(0, 0, 0, 0.625);
color: aliceblue;
margin-left: 100px;
margin-right: auto;
border-radius: 6px;
font-size: 25px;
font-family: 'Acme', sans-serif;
text-align: center;
padding-top: 10px;
padding-bottom: 40px;
padding-left: 10px;
}
#chanson2{
height: 240px;
width: 500px;
background-color: rgba(0, 0, 0, 0.625);
color: aliceblue;
margin-left: auto;
margin-right: 100px;
border-radius: 6px;
font-size: 25px;
font-family: 'Acme', sans-serif;
text-align: center;
padding-top: 10px;
padding-bottom: 40px;
padding-left: 10px;
}