-
Notifications
You must be signed in to change notification settings - Fork 17
/
App.css
128 lines (101 loc) · 2.12 KB
/
App.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
@import '~antd/dist/antd.css';
.ant-layout {
min-height: 100vh;
}
.ant-layout-sider {
background-image: linear-gradient(#1e2422, #000000);
background-attachment:fixed;
width: 800px;
padding: 30px;
}
.ant-layout-content {
background-image: linear-gradient(#494B4A, #030404);
background-attachment:fixed;
}
.ant-layout-footer {
background-color: #292929;
padding-bottom: 4px;
padding-top: 15px;
}
.ant-tabs-top > .ant-tabs-nav::before {
border-bottom: 0px;
}
.ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
color: white;
text-shadow: 0 0 0.25px currentcolor;
}
.ant-tabs-tab-btn:focus {
color: white;
}
.ant-tabs-tab {
color: rgb(125, 125, 125);
font-size: 18px;
letter-spacing: 2px;
}
.ant-tabs-tab:hover {
color: white;
}
.ant-tabs-ink-bar {
background: #1DB954;
width: 10px;
}
.ant-slider-track {
background-color: #1DB954;
}
.ant-slider:hover .ant-slider-track {
background-color: #1DB954;
}
.ant-slider-handle {
border: 0px
}
.ant-slider-rail {
background-color: #3E3E3E;
}
.logo {
width:50px;
margin-bottom: 20px;
}
.searchBar {
border-top: 2px solid rgb(125, 125, 125);
border-bottom: 2px solid rgb(125, 125, 125);
padding: 15px 0px;
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
.sideBar {
color: white;
font-size: 20px;
font-weight: 500;
letter-spacing: 1px;
}
.recentPlayed {
border-top: 2px solid rgb(125, 125, 125);
border-bottom: 2px solid rgb(125, 125, 125);
padding: 15px 0px;
display: flex;
flex-direction: column;
justify-content: space-between;
height: calc(100vh - 400px);
}
.recentTitle {
color: rgb(125, 125, 125);
font-size: 15px;
font-weight: 400;
}
.install {
display: flex;
justify-content: space-between;
}
.contentWindow {
padding: 50px 0px;
}
.footer {
position: sticky;
bottom: 0;
display: flex;
justify-content: space-between;
align-items:center;
background-color: #292929;
color: rgb(205, 203, 203) !important;
}