forked from waterval/spotify-search-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
89 lines (73 loc) · 1.25 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
86
87
88
89
* {
box-sizing: border-box;
color: #1db954;
}
body {
margin: 0;
}
a {
color: #1db954;
text-decoration: none;
}
input:focus {
border-color: #1db954;
}
select {
outline-color: #1db954;
}
select:active,
select:hover {
outline-color: #1db954;
}
button {
background-color: white;
outline-color: #1db954;
}
#body-container {
display: flex;
align-items: center;
flex-direction: column;
position: relative;
}
#search-container {
display: flex;
position: fixed;
top: 0;
padding: 30px;
z-index: 100;
}
#results-text {
position: absolute;
top: 60px;
}
#results-container {
position: absolute;
top: 100px;
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(0, 0, 0, 0);
}
.one-of-twenty-container {
display: flex;
align-items: center;
width: 80vw;
padding: 20px;
height: 150px;
}
.one-of-twenty-container:nth-child(odd) {
background-color: black;
}
.one-of-twenty-container:nth-child(even) {
background-color: white;
}
.results-albums-artists img {
width: 100px;
height: 100px;
filter: grayscale(100%);
}
.results-name {
padding: 30px;
}
.more-button-container {
display: flex;
justify-content: center;
padding: 10px;
}