-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (85 loc) · 1.34 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color: #121212;
}
h1 {
color: #1db954;
display: flex;
justify-content: center;
padding-top: 20px;
}
.welcome {
color: #f3dcd4;
}
.login-contain {
padding-bottom: 20px;
display: flex;
justify-content: center;
}
.button-log {
display: flex;
align-self: flex-end;
padding-left: 10px;
}
#do-it {
border: 1px solid black;
border-radius: 20px;
padding: 5px;
background: #f3dcd4;
}
#do-it:hover {
background: whitesmoke;
}
/* Cover section */
.everything {
display: flex;
flex-direction: row;
}
.cover {
border: 1px solid white;
width: 115%;
padding: 10px;
}
.new-area {
border: 1px solid white;
color: white;
}
.singles-btn {
border: 1px solid black;
border-radius: 30px;
padding: .5rem;
width: 100%;
background: #1db954;
}
.singles {
padding: 1rem;
}
.singles-btn:hover {
background: #f3dcd4;
}
.artists-btn {
border: 1px solid black;
border-radius: 30px;
padding: .5rem;
width: 100%;
background: #1db954;
}
.artists {
padding: .5rem;
}
.artists-btn:hover {
background: #f3dcd4;
}
/* Result Section */
.results {
color: white;
padding: 2rem;
}
img {
width: 500px;
padding-bottom: 3rem;
}