-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmac-table-attack.css
More file actions
112 lines (112 loc) · 2.13 KB
/
mac-table-attack.css
File metadata and controls
112 lines (112 loc) · 2.13 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
/* Nav bar styles */
nav {
background: #222;
border-radius: 8px;
padding: 8px 24px;
margin: 0 24px 24px 24px;
box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
nav .logo {
font-size: 1.5em;
font-weight: bold;
color: #00ff00;
letter-spacing: 2px;
margin-right: 32px;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
gap: 24px;
}
nav ul li {
margin: 0;
}
nav ul li a {
color: #00ff00;
text-decoration: none;
font-weight: 500;
padding: 8px 18px;
border-radius: 6px;
transition: background 0.2s, color 0.2s;
background: transparent;
display: block;
}
nav ul li a:hover {
color: #fff;
background: #00bfff;
}
/* MAC Table Overflow custom styles */
.mac-card {
width: 80vw;
max-width: 900px;
margin: 40px auto;
background: #23272a;
border-radius: 16px;
box-shadow: 0 2px 16px rgba(0,0,0,0.15);
border: 2px solid #222;
padding: 32px 0;
display: flex;
flex-direction: column;
align-items: center;
}
.mac-table {
background: #181a1b;
border-radius: 8px;
border: 2px solid #00bfff;
margin: 24px 0;
padding: 16px 32px;
width: 100%;
max-width: 600px;
}
.mac-table th, .mac-table td {
padding: 8px 16px;
text-align: center;
color: #00ff00;
}
.mac-table th {
color: #00bfff;
}
.mac-status {
margin: 16px 0;
font-size: 1.2em;
color: #ff4444;
}
.mac-controls {
margin: 24px 0;
text-align: center;
}
.mac-controls input {
margin: 0 8px;
padding: 8px;
border-radius: 4px;
border: 1px solid #00bfff;
background: #181a1b;
color: #00ff00;
}
.mac-controls button {
padding: 10px 20px;
background: #00bfff;
color: #181a1b;
border: none;
border-radius: 4px;
cursor: pointer;
font-family: 'Fira Mono', 'Consolas', monospace;
font-weight: bold;
margin-left: 8px;
}
.mac-controls button:hover {
background: #00ff00;
color: #111;
}
.mac-table tbody {
display: block;
max-height: 240px;
overflow-y: auto;
}
.mac-table thead, .mac-table tbody tr {
display: table;
width: 100%;
table-layout: fixed;
}