-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
109 lines (93 loc) · 2.08 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
102
103
104
105
106
107
108
109
body {
background-color: #000; /* Set the background color of the body to dark black */
font-family: Arial, sans-serif;
color: #fff; /* Set font color to white */
}
.center-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
max-width: 800px;
margin: 20px auto; /* Center the container */
padding: 20px;
background-color: #000; /* Black background color */
border-radius: 10px;
box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}
.scrollable-table {
max-height: 400px; /* Set max height for the results table */
overflow-y: auto; /* Add vertical scrollbar */
}
h1 {
text-align: center;
color: #fff; /* White font color */
}
.message-container {
background-color: #fff; /* White background */
border-radius: 10px;
padding: 20px;
margin-bottom: 20px;
}
.message {
color: red; /* Red font color */
text-align: center;
}
.search-container {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
input[type="text"] {
flex: 1;
padding: 10px;
font-size: 16px;
background-color: #333;
border: none;
color: #fff; /* White font color */
}
button {
padding: 10px 20px;
font-size: 16px;
background-color: #4CAF50;
border: none;
color: #fff; /* White font color */
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}
th, td {
padding: 10px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #333;
color: #fff; /* White font color */
}
td {
color: #4CAF50; /* Green font color */
}
.loader {
display: none; /* Initially hide the loader */
border: 4px solid #f3f3f3; /* Light gray border */
border-top: 4px solid #3498db; /* Blue border for the spinner */
border-radius: 50%;
width: 30px;
height: 30px;
animation: spin 1s linear infinite; /* Spin animation */
margin: 0 auto; /* Center the loader */
margin-top: 20px; /* Spacing from the content */
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}