-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmulti_queue.css
More file actions
90 lines (80 loc) · 1.51 KB
/
multi_queue.css
File metadata and controls
90 lines (80 loc) · 1.51 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
body {
background: radial-gradient(circle at top left, #0a0f1f, #000);
color: #fff;
font-family: 'Poppins', sans-serif;
text-align: center;
padding: 20px;
}
.title {
font-size: 2rem;
color: #00e0ff;
text-shadow: 0 0 15px #00e0ff;
margin-bottom: 30px;
}
table {
margin: 10px auto;
border-collapse: collapse;
width: 80%;
background: rgba(255, 255, 255, 0.05);
box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
border-radius: 10px;
}
th, td {
padding: 10px;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
button {
margin: 10px;
padding: 10px 20px;
background: #00e0ff;
border: none;
color: #000;
font-weight: bold;
border-radius: 8px;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background: #ff00ff;
color: white;
box-shadow: 0 0 15px #ff00ff;
}
.gantt-chart {
display: flex;
justify-content: space-around;
align-items: flex-end;
margin: 20px auto 0;
width: 85%;
min-height: 60px;
border: 2px solid #00e0ff;
border-radius: 15px;
padding: 10px;
overflow-x: auto;
}
.gantt-bar {
margin: 0 3px;
padding: 5px;
background: linear-gradient(45deg, #00e0ff, #8000ff);
border-radius: 10px;
box-shadow: 0 0 15px #00e0ff;
color: white;
font-weight: 600;
min-width: 60px;
}
.idle {
background: linear-gradient(45deg, #555, #888);
box-shadow: 0 0 10px #666;
color: #fff;
}
.timeline {
display: flex;
justify-content: center;
margin-top: 5px;
font-size: 0.9rem;
color: #0ff;
width: 85%;
margin: auto;
}
.timeline div {
flex: 1;
}