mirror of
https://github.com/deps-rs/deps.rs.git
synced 2024-11-22 10:26:30 +00:00
82 lines
1.4 KiB
CSS
82 lines
1.4 KiB
CSS
@import url('https://fonts.googleapis.com/css?family=Fira+Sans:400,500,600,700');
|
|
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:400,600');
|
|
|
|
html {
|
|
padding: 0;
|
|
margin: 0;
|
|
background: #f3f3f3;
|
|
font-family: "Fira Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
}
|
|
|
|
body {
|
|
padding: 30px 40px;
|
|
margin: 0 auto;
|
|
background: #fff;
|
|
border-left: 5px solid #eee;
|
|
border-right: 5px solid #eee;
|
|
width: 800px;
|
|
}
|
|
|
|
pre {
|
|
font-family: "Source Code Pro", Menlo, Monaco, Consolas, "DejaVu Sans Mono", Inconsolata, monospace;
|
|
overflow: auto;
|
|
word-wrap: normal;
|
|
white-space: pre;
|
|
background: #dedede;
|
|
color: #555;
|
|
padding: .5em .7em;
|
|
}
|
|
|
|
code {
|
|
font-family: "Source Code Pro", Menlo, Monaco, Consolas, "DejaVu Sans Mono", Inconsolata, monospace;
|
|
background: #dedede;
|
|
padding: .1em .3em;
|
|
border-radius: .3em;
|
|
color: #555;
|
|
}
|
|
|
|
h1 a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
h1 code {
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
h3 span.summary {
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
font-size: .9em;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border: 0;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background: #f3f3f3;
|
|
}
|
|
|
|
tr:nth-child(odd) {
|
|
background: #fff;
|
|
}
|
|
|
|
td {
|
|
padding: .5em .7em;
|
|
}
|
|
|
|
span.status {
|
|
padding: .1em .3em;
|
|
border-radius: .3em;
|
|
color: #fff;
|
|
}
|
|
|
|
span.status.up-to-date {
|
|
background: #97ca00;
|
|
}
|
|
|
|
span.status.outdated {
|
|
background: #dfb317;
|
|
}
|