Skip to content

Commit 08650f9

Browse files
authored
Create certStyles.css
1 parent adf63cc commit 08650f9

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed

web/certStyles.css

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
#recommended, #updates {
2+
margin: 20px 0;
3+
padding: 16px;
4+
border-radius: 12px;
5+
background: linear-gradient(135deg, #1a1f3c, #12152a);
6+
}
7+
8+
#recommended {
9+
border-left: 5px solid #4f7cff;
10+
}
11+
12+
#recommended h2 {
13+
margin: 0 0 6px 0;
14+
color: #4f7cff;
15+
}
16+
17+
#updates h2 {
18+
margin-bottom: 10px;
19+
}
20+
21+
.update-item {
22+
opacity: 0.9;
23+
margin-bottom: 6px;
24+
font-size: 14px;
25+
}
26+
27+
.cert-table {
28+
width: 100%;
29+
border-collapse: collapse;
30+
margin-top: 20px;
31+
}
32+
33+
.cert-table th, .cert-table td {
34+
padding: 12px;
35+
text-align: left;
36+
}
37+
38+
.cert-table th {
39+
background: #181c36;
40+
}
41+
42+
.cert-table tr {
43+
border-bottom: 1px solid #2a2f55;
44+
}
45+
46+
.status {
47+
font-weight: bold;
48+
}
49+
50+
.status.revoked {
51+
color: #ff5f57;
52+
}
53+
54+
.cert-table a {
55+
color: #4f7cff;
56+
text-decoration: none;
57+
}
58+
59+
.cert-table a:hover {
60+
text-decoration: underline;
61+
}

0 commit comments

Comments
 (0)