-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.html
72 lines (59 loc) · 1.27 KB
/
start.html
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
<html>
<head>
<meta charset="utf8">
<style>
body {
height: 100%;
margin: 0;
padding: 0;
display: flex;
justify-content: space-around;
align-items: center;
flex-direction: column;
}
div {
}
button {
border: 0;
padding: 15px 50px;
min-width: 250px;
background-color: #e14d4d;
}
#song_list {
flex-basis: 50%;
border: 1px solid black;
width: 770px;
padding: 0;
}
#song_list > ul {
padding: 0;
margin: 0;
}
#song_list > ul > li {
height: 50px;
padding: 5px;
display: flex;
align-items: center;
}
#song_list > ul > li:nth-child(odd) {
background-color: lightgrey;
}
</style>
</head>
<body>
<h1>Web-Pitch</h1>
<div>
<button>Just sing</button>
</div>
<div>
<button>New song</button>
</div>
<div id="song_list">
<ul>
<li>The Falcon</li>
<li>Ljóð í sand</li>
<li>Blackbird</li>
</ul>
</div>
</body>
</html>