-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
129 lines (110 loc) · 1.83 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
*{
box-sizing: border-box;
}
body{
background-color: #ffffff;
margin: 0;
font-family: 'Manrope', sans-serif;
}
header{
position: relative;
background:url('imgs/music-bg.jpg');
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
color: #ffffff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 96px 0;
}
header::after{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
}
header * {
z-index: 1;
}
header h1{
margin: 0 0 32px;
}
button {
background-color: #FF4642;
color: #ffffff;
border-radius: 32px;
padding: 8px 14px;
cursor: pointer;
border: 0;
}
button:active{
transform: scale(0.96);
}
button:focus, input:focus{
outline: none;
}
form{
position: relative;
width: 480px;
max-width: 100%;
}
form input{
border: 0;
border-radius: 48px;
font-size: 1rem;
padding: 16px 24px;
width: 100%;
color: #bb0032;
}
form button{
background-color: #FF2962;
border: 0;
border-radius: 48px;
padding: 14px 24px;
font-size: 1rem;
position: absolute;
top: 2px;
right: 2px;
}
ul.songs{
list-style: none;
padding: 0;
}
ul.songs li{
display: flex;
margin: 16px 0;
justify-content: space-between;
align-items: center;
}
.container{
margin: 32px auto;
width: 480px;
max-width: 100%;
}
.container h2{
font-weight: 300;
}
.container p{
text-align: center;
}
.centered{
display: flex;
justify-content: center;
}
.centered button{
transform: scale(1.3);
margin: 16px;
}
@media (max-width: 600px) {
form{
max-width: 90%;
}
.container{
max-width: 90%;
}
}