mirror of
https://github.com/rustsec/advisory-db.git
synced 2026-07-22 01:06:54 -04:00
291 lines
4.0 KiB
CSS
291 lines
4.0 KiB
CSS
body {
|
|
font-family: "Source Sans Pro";
|
|
font-weight: 300;
|
|
font-size: 18px;
|
|
line-height: 1.65;
|
|
margin: 0;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: inherit;
|
|
transition: color 0.2s ease-out;
|
|
}
|
|
a.selected, a:hover {
|
|
color: #949494;
|
|
}
|
|
|
|
a, b, strong, th {
|
|
font-weight: 400;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.withdrawn {
|
|
color: #949494;
|
|
}
|
|
|
|
.advisory p {
|
|
margin-bottom: 0;
|
|
margin-top: 0.4em;
|
|
}
|
|
|
|
.advisories p {
|
|
margin-bottom: 0;
|
|
margin-top: 0;
|
|
}
|
|
|
|
main {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
article a {
|
|
color: #68f;
|
|
}
|
|
|
|
header a, footer a {
|
|
color: inherit;
|
|
font-weight: 500;
|
|
}
|
|
|
|
/* Add an icon after external links in advisory content */
|
|
.advisory article a:not(.floating-menu a):not([href^="/"]):not([href^="#"])::after {
|
|
background: url("/img/external-link.svg") center right no-repeat;
|
|
display: inline-block;
|
|
content: " ";
|
|
width: 16px;
|
|
height: 16px;
|
|
margin-left: 3px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.floating-menu {
|
|
float: right;
|
|
}
|
|
|
|
hr {
|
|
border: 1px solid rgba(148, 148, 148, 0.16);
|
|
margin: 2em 0;
|
|
}
|
|
|
|
.logo-image {
|
|
max-width: 400px;
|
|
max-height: 100px;
|
|
}
|
|
|
|
.header-top {
|
|
position: relative;
|
|
}
|
|
|
|
.search {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
}
|
|
|
|
.search input[type=search] {
|
|
width: 100%;
|
|
padding: 8px 16px;
|
|
margin: 8px 0;
|
|
box-sizing: border-box;
|
|
background-color : rgba(255, 255, 255, 0.3);
|
|
color: white;
|
|
font-weight: 500;
|
|
font-size: .8em;
|
|
border: 2px solid white;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.search input[type=search]::placeholder {
|
|
opacity: .5;
|
|
color: white;
|
|
}
|
|
|
|
.search-index input[type=search] {
|
|
width: 60%;
|
|
padding: 8px 16px;
|
|
margin: 8px 0;
|
|
box-sizing: border-box;
|
|
background-color : rgba(255, 255, 255, 0.3);
|
|
color: white;
|
|
font-weight: 500;
|
|
font-size: 1.1em;
|
|
border: 3px solid white;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.search-index input[type=search]::placeholder {
|
|
opacity: .5;
|
|
color: white;
|
|
}
|
|
|
|
blockquote {
|
|
border-left: 5px solid #68f;
|
|
padding-left: 1.5em;
|
|
margin: 0;
|
|
}
|
|
|
|
body, aside, main {
|
|
flex-direction: column;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
border-radius: 2px;
|
|
}
|
|
|
|
figure {
|
|
margin: 1em 0;
|
|
}
|
|
|
|
code {
|
|
background-color: rgba(148, 148, 148, 0.12);
|
|
color: gray;
|
|
border-radius: 2px;
|
|
font-size: 0.8em;
|
|
padding: 0.2em 0.4em;
|
|
margin: 0;
|
|
}
|
|
|
|
pre {
|
|
background-color: rgba(34, 34, 34, 0.8);
|
|
color: white;
|
|
border-radius: 2px;
|
|
font-size: 0.7em;
|
|
padding: 0.8em 1.2em;
|
|
white-space: pre-wrap;
|
|
}
|
|
|
|
pre code {
|
|
background: initial;
|
|
color: inherit;
|
|
font-size: initial;
|
|
margin: initial;
|
|
padding: initial;
|
|
}
|
|
|
|
main.advisory h3 {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
main.advisory ul {
|
|
margin-top: 0;
|
|
}
|
|
|
|
main.advisory {
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
dd ul {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
}
|
|
|
|
dt {
|
|
font-weight: 600;
|
|
}
|
|
|
|
dl {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
grid-row-gap: 10px;
|
|
}
|
|
|
|
dd {
|
|
margin-left: 18px;
|
|
}
|
|
|
|
p.warning {
|
|
font-weight: 600;
|
|
}
|
|
|
|
header span.subtitle p {
|
|
font-size: 1.5em;
|
|
margin: 0;
|
|
}
|
|
|
|
.tag {
|
|
background: #535353;
|
|
padding: 3px;
|
|
}
|
|
|
|
.critical {
|
|
background: darkred;
|
|
}
|
|
|
|
.high {
|
|
background: #b90000;
|
|
}
|
|
|
|
.medium {
|
|
background: #c68000;
|
|
}
|
|
|
|
.low {
|
|
background: #b5b500;
|
|
}
|
|
|
|
.info {
|
|
background: #190079;
|
|
}
|
|
|
|
.advisory p.license {
|
|
font-style: italic;
|
|
margin-top: 1.5em;
|
|
}
|
|
|
|
/* Light theme */
|
|
|
|
@media (prefers-color-scheme: light) {
|
|
article a {
|
|
color: #57f;
|
|
}
|
|
|
|
a:hover {
|
|
color: #494949;
|
|
}
|
|
|
|
.withdrawn {
|
|
color: #494949;
|
|
}
|
|
|
|
.search-index input[type="search"], .search input[type="search"] {
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
color: black;
|
|
border-color: black;
|
|
}
|
|
|
|
.search-index input[type=search]::placeholder, .search input[type=search]::placeholder {
|
|
color: black;
|
|
}
|
|
|
|
.critical {
|
|
background: #b00;
|
|
}
|
|
|
|
.high {
|
|
background: #c00;
|
|
}
|
|
|
|
.medium {
|
|
background: #ea0;
|
|
}
|
|
|
|
.low {
|
|
background: #dd0;
|
|
}
|
|
|
|
.info {
|
|
background: #77f;
|
|
}
|
|
|
|
.advisory article a:not(.floating-menu a):not([href^="/"]):not([href^="#"])::after {
|
|
filter: invert(1);
|
|
}
|
|
}
|