forked from ignas450/spectrum-allocation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (99 loc) · 1.75 KB
/
Copy pathstyle.css
File metadata and controls
118 lines (99 loc) · 1.75 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
body {
background: #121212;
color: #eee;
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
h1,
h2 {
margin-bottom: 10px;
}
h1 {
text-align: center;
}
.spacer {
height: 30px;
}
section {
margin-bottom: 30px;
padding: 15px;
border-radius: 8px;
border: 2px solid #171717;
background: #171717;
}
#spectrums {
max-width: 800px;
margin: 0 auto;
}
.chart {
position: relative;
border: 1px solid #333;
display: flex;
gap: 1px;
height: 60px;
width: 100%;
border-radius: 4px;
margin-bottom: 20px;
}
.block {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
cursor: pointer;
position: relative;
color: #fff;
font-size: 14px;
user-select: none;
transition: opacity 0.2s, border-color 0.2s;
padding: 0 4px;
border: 2px solid transparent;
}
.block:hover {
opacity: 0.8;
}
.block.selected {
border-color: #fff;
}
.block strong {
font-size: 16px;
margin-bottom: 2px;
}
.block span {
font-size: 12px;
}
.digi { background: #003cff; }
.vf { background: rgb(204, 68, 68); }
.oro { background: #ff8800; }
.tkrm { background: #ea00ff; }
.vfdigi { background: #7700ff; }
.unallocated { background: #616161; color: #999; }
.reserved{ background: #222222; color: #999; }
.frequency {
position: absolute;
bottom: -20px;
font-size: 12px;
color: #ccc;
}
.frequency.start { left: 0; }
.frequency.end { right: 0; }
.info {
font-size: 14px;
color: #ccc;
margin-top: 20px;
}
.details {
background: #222;
border: 1px solid #333;
padding: 10px;
margin-top: 10px;
font-size: 14px;
line-height: 1.5;
border-radius: 4px;
display: none;
}
.details.visible {
display: block;
}