-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (72 loc) · 1.36 KB
/
styles.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: url('images/light-gray-abstract-background.jpg');
background-size: cover;
background-repeat: no-repeat;
}
.main-container {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.song-box {
max-width: 700px;
padding: 20px;
background-color: white;
border-radius: 12px;
}
.bio {
padding: 10px;
color: rgb(73, 73, 73);
font-family: "Nunito", sans-serif;
font-weight: 300;
font-style: normal;
padding-bottom: 10px;
}
.artist-container {
display: flex;
align-items: center;
}
.material-symbols-outlined {
font-family: 'Material Symbols Outlined', sans-serif;
font-size: 3em;
}
.artist {
padding: 10px;
color: black;
font-family: "Robot", sans-serif;
font-weight: 700;
font-style: normal;
font-size: 3em;
}
#arrow-right {
margin-left: 20px;
margin-right: 20px;
}
#arrow-right:hover {
cursor: pointer;
color: grey
}
#arrow-left {
margin-left: 20px;
margin-right: 20px;
}
#arrow-left:hover {
cursor: pointer;
color: grey
}
.artist-image {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
max-width: 100%;
height: auto;
padding: 10px;
}
iframe {
padding: 10px
}