mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
76 lines
956 B
CSS
76 lines
956 B
CSS
|
|
body {
|
|
color: #111;
|
|
background: #f0f0f0;
|
|
margin: 1em;
|
|
font-family: Arial;
|
|
font-size: 20px;
|
|
}
|
|
|
|
main {
|
|
max-width: 800px;
|
|
margin: 0px auto;
|
|
}
|
|
svg {
|
|
margin: 0px auto;
|
|
width: 100%;
|
|
height: 300px;
|
|
}
|
|
|
|
a {
|
|
color: #333;
|
|
}
|
|
a:hover {
|
|
color: #488;
|
|
}
|
|
|
|
a.badge {
|
|
display: inline-block;
|
|
border-radius: 2px;
|
|
height: 20px;
|
|
transition: .3s box-shadow;
|
|
}
|
|
a.badge:hover {
|
|
box-shadow: 0 0 5px 0 #333;
|
|
}
|
|
|
|
a[href^="#"] { /* Hash links */
|
|
text-decoration: none;
|
|
color: #3bace5;
|
|
margin-right: 0.5rem;
|
|
}
|
|
a[href^="#"]:hover {
|
|
text-decoration: underline;
|
|
color: #3d9bcc;
|
|
}
|
|
|
|
pre {
|
|
background: #ddd;
|
|
padding: 15px;
|
|
word-wrap: normal;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
}
|
|
|
|
td, th {
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
border: 1px solid #aaa;
|
|
padding: 6px;
|
|
}
|
|
|
|
@media only screen and (max-device-width: 480px) {
|
|
|
|
main {
|
|
margin: 15px;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|