-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
104 lines (88 loc) · 1.79 KB
/
styles.css
File metadata and controls
104 lines (88 loc) · 1.79 KB
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
/* styles.css */
::selection{
color: #00FF7F;
background-color: black;
}
body {
font-family: Arial, sans-serif;
background-color: #1e1e1e;
color: #ffffff;
margin: 0;
padding: 0;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #2c2c2c;
padding: 10px 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
header h1 {
color: #00FF7F;
margin: 0;
}
.icons img {
height: 30px;
margin-left: 10px;
}
.ssita {
height: 30px;
transform: translateY(3.5px);
filter: drop-shadow(0 0 0.1rem rgba(0, 255, 127, 0.2));
}
.ssita:hover {
filter: drop-shadow(0 0 0.25rem rgba(0, 255, 127, 0.5));
}
main {
padding: 20px;
}
.input-container {
display: flex;
gap: 10px;
margin-bottom: 20px;
}
/*#endpoint-input {
flex: 1;
padding: 10px;
border: 1px solid #444;
border-radius: 5px;
background-color: #3a3a3a;
color: #ffffff;
}*/
#refresh-button {
padding: 10px 20px;
background-color: #00FF7F;
border: none;
border-radius: 5px;
color: #000;
font-weight:400;
cursor: pointer;
}
#refresh-button:hover {
background-color: #00CC65;
}
#input-list {
flex: 1;
padding: 10px;
border: 1px solid #444;
border-radius: 5px;
background-color: #3a3a3a;
color: #ffffff;
}
#data-container {
margin-top: 20px;
}
.data-section {
margin-bottom: 30px;
}
.data-section a:hover {
color: rgba(70, 98, 255, 0.5);
}
.data-section h2 {
color: #30FF7F;
margin-bottom: 10px;
}
.data-section img {
height: 100px;
}