-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
107 lines (91 loc) · 1.38 KB
/
Copy pathstyles.css
File metadata and controls
107 lines (91 loc) · 1.38 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
body {
font-family: Arial, sans-serif;
background: #0b1220;
color: #e5e7eb;
margin: 0;
padding: 0;
}
.container {
max-width: 1000px;
margin: auto;
padding: 30px;
}
h1 {
color: #38bdf8;
}
.subtitle {
opacity: 0.7;
margin-bottom: 20px;
}
/* INPUT */
textarea {
width: 100%;
height: 120px;
padding: 12px;
font-size: 14px;
background: #111827;
color: white;
border: 1px solid #374151;
border-radius: 8px;
}
/* DASHBOARD */
.dashboard {
display: flex;
gap: 10px;
margin-top: 20px;
}
.card {
flex: 1;
background: #111827;
padding: 15px;
border-radius: 10px;
text-align: center;
}
/* SCORE */
.score {
font-size: 32px;
color: #facc15;
}
.level {
font-size: 18px;
font-weight: bold;
}
/* LISTS */
ul {
list-style: none;
padding: 0;
}
li {
background: #111827;
margin: 5px 0;
padding: 10px;
border-radius: 6px;
border-left: 3px solid #38bdf8;
}
/* EXPORT BUTTON (NEW FIX) */
.export-btn {
background: #38bdf8;
color: #0b1220;
border: none;
padding: 10px 14px;
border-radius: 8px;
font-weight: bold;
cursor: pointer;
transition: 0.2s;
}
.export-btn:hover {
background: #0ea5e9;
}
/* RISK COLORS */
.low {
color: #22c55e;
}
.medium {
color: #facc15;
}
.high {
color: #f97316;
}
.critical {
color: #ef4444;
}