-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
74 lines (65 loc) · 1.44 KB
/
styles.css
File metadata and controls
74 lines (65 loc) · 1.44 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
/* Main container for our analytics */
#lc-analytics-container {
background-color: #1a1a1a; /* Darker background */
border: 1px solid #333;
border-radius: 8px;
padding: 20px;
margin-top: 24px;
color: #efefef;
}
#lc-analytics-container h1 {
text-align: center;
font-size: 24px;
font-weight: bold;
color: #f5a623; /* LeetCode Orange */
margin-bottom: 20px;
}
/* Grid for the charts */
#lc-analytics-charts {
display: grid;
grid-template-columns: 3fr 2fr;
gap: 20px;
align-items: flex-start;
}
/* Individual chart card styling */
.lc-chart-card {
background-color: #262626;
padding: 16px;
border-radius: 6px;
}
.lc-chart-card h2 {
text-align: center;
font-size: 18px;
font-weight: 600;
margin-bottom: 16px;
}
/* Status and summary text */
#lc-analytics-status, #lc-analytics-summary {
text-align: center;
margin-top: 16px;
color: #aaa;
font-size: 14px;
}
#lc-analytics-summary strong {
color: #f5a623;
}
/* Loader animation */
.lc-loader {
border: 4px solid #444;
border-radius: 50%;
border-top: 4px solid #f5a623;
width: 30px;
height: 30px;
animation: spin 1.5s linear infinite;
margin: 0 auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
/* Media query for smaller screens */
@media (max-width: 1024px) {
#lc-analytics-charts {
grid-template-columns: 1fr;
}
}