forked from thinhhoangpham/tcp_analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshared.css
More file actions
32 lines (31 loc) · 732 Bytes
/
shared.css
File metadata and controls
32 lines (31 loc) · 732 Bytes
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
/* Shared styles used across attack-network.html and tcp-analysis.html */
/* Base button */
.cp-btn {
padding: 4px 10px;
font-size: 12px;
font-weight: 500;
border: 1px solid #ced4da;
border-radius: 4px;
background: #f8f9fa;
color: #495057;
cursor: pointer;
transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}
.cp-btn:hover {
background: #e9ecef;
border-color: #adb5bd;
color: #212529;
}
.cp-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.cp-btn.cp-btn-primary {
background: #0d6efd;
border-color: #0d6efd;
color: #fff;
}
.cp-btn.cp-btn-primary:hover {
background: #0b5ed7;
border-color: #0b5ed7;
}