-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
101 lines (86 loc) · 1.67 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
90
91
92
93
94
95
96
97
98
99
100
101
/* styles.css */
/* General Styling */
body {
font-family: 'Helvetica Neue', Arial, sans-serif;
background-color: #121212; /* Dark background similar to Spotify */
color: #ffffff; /* Light text color */
margin: 0;
padding: 0;
}
/* Container Styling */
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #1e1e1e; /* Darker container background */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
/* Form Group Styling */
.form-group {
margin-bottom: 20px;
}
/* Labels and Inputs */
label {
display: block;
margin-bottom: 5px;
font-size: 16px;
}
select, input[type="text"] {
width: 100%;
padding: 10px;
border: 1px solid #333;
border-radius: 4px;
background-color: #333;
color: #fff;
}
select:focus, input[type="text"]:focus {
border-color: #1db954; /* Spotify green */
outline: none;
}
/* Button Styling */
button {
width: 100%;
padding: 10px;
background-color: #1db954; /* Spotify green */
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
}
button:hover {
background-color: #1ed760; /* Lighter green on hover */
}
/* Table Styling */
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
border: 1px solid #333;
padding: 12px;
text-align: left;
}
th {
background-color: #1e1e1e;
color: #b3b3b3;
}
td {
background-color: #282828; /* Slightly lighter dark color */
}
a {
color: #1db954; /* Spotify green */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* No Results Message */
#no-results {
margin-top: 20px;
font-size: 18px;
color: #b3b3b3;
}