-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (112 loc) · 2.53 KB
/
style.css
File metadata and controls
128 lines (112 loc) · 2.53 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
:root {
--primary: #6366f1;
--secondary: #a855f7;
--bg: #0f172a;
--card-bg: rgba(30, 41, 59, 0.7);
--text: #f8fafc;
--text-muted: #94a3b8;
--success: #22c55e;
--error: #ef4444;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', system-ui, sans-serif;
background: var(--bg);
color: var(--text);
height: 100vh;
overflow: hidden;
display: flex;
flex-direction: column;
padding: 20px;
}
h1 {
font-size: 1.5rem;
margin-bottom: 1rem;
background: linear-gradient(to right, var(--primary), var(--secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-align: center;
}
.container {
flex: 1;
display: flex;
flex-direction: column;
gap: 1rem;
overflow-y: auto;
padding-right: 5px;
}
.card {
background: var(--card-bg);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 1rem;
transition: transform 0.2s;
}
.card:hover {
transform: translateY(-2px);
border-color: rgba(255, 255, 255, 0.2);
}
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 0.5rem;
}
.card-title {
font-weight: 600;
color: var(--text);
}
.card-subtitle {
font-size: 0.8rem;
color: var(--text-muted);
}
.value-display {
font-family: 'Consolas', monospace;
background: rgba(0, 0, 0, 0.3);
padding: 0.5rem;
border-radius: 6px;
color: var(--success);
word-break: break-all;
text-align: center;
font-size: 1.2rem;
}
.log-container {
font-family: 'Consolas', monospace;
font-size: 0.8rem;
color: var(--text-muted);
background: rgba(0, 0, 0, 0.3);
padding: 0.5rem;
border-radius: 6px;
height: 150px;
overflow-y: auto;
}
.log-entry {
margin-bottom: 4px;
border-bottom: 1px solid rgba(255,255,255,0.05);
padding-bottom: 2px;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: linear-gradient(to bottom, var(--primary), var(--secondary));
border-radius: 4px;
border: 2px solid transparent;
background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
background: linear-gradient(to bottom, var(--secondary), var(--primary));
border-radius: 2px solid transparent;
background-clip: content-box;
}