diff options
| author | keni7385 <andrea@andreacorsini.xyz> | 2022-06-04 00:09:16 +0300 | 
|---|---|---|
| committer | keni7385 <andrea@andreacorsini.xyz> | 2022-06-04 00:09:16 +0300 | 
| commit | aa547f522941c9ba3c60dd0083305c59f717cedd (patch) | |
| tree | e8ba86747892a89162288ec9be4eed738311190d /_assets/css | |
Initial commit
Diffstat (limited to '_assets/css')
| -rwxr-xr-x | _assets/css/style.css | 87 | 
1 files changed, 87 insertions, 0 deletions
| diff --git a/_assets/css/style.css b/_assets/css/style.css new file mode 100755 index 0000000..d5ca676 --- /dev/null +++ b/_assets/css/style.css @@ -0,0 +1,87 @@ +body { +    margin: 2em auto; +    max-width: 650px; +    line-height: 1.6; +    font-size: 18px; +    color: #f0efd1; +    background-color: rgba(10,10,10); +    padding: 0 10px; +} + +h1, h2, h3, a, dt { +    color: #cfba58; +} + +h1, h2, h3 { +    line-height: 1.2; +} + +dt { +    line-height: 2; +} + + +h1 { +    text-align: center; +} + +a { +    text-decoration: underline; +    font-style: italic; +} + +a:hover, a:active { +    color: #f2e091; +} + +a:active { +    text-decoration: none; +} + +small { +    font-size: 13px; +} + +header { +    text-align: center; +} + +header nav { +    text-align: center; +} + +img#profile { +    float: left; +} + +main { +    margin-top: 5px; +    background-color: rgba(20,20,20); +    padding: 0.5em 1em; +    border-radius: 5px 5px 0px 0px; +    border: 1px solid rgb(40, 40, 40); +} + +footer { +    border: 1px solid rgb(40, 40, 40); +    border-top: 1px solid #cfba58; +    font-size: 13px; +    padding: 0.5em 1em; +    background-color: rgba(15, 15, 15); +} + +pre, samp { +    padding: 0.25rem 1rem; +    max-width: 100%; +    overflow-x: auto; +    font-family: monospace; +    font-size: 14px; +} + +pre { +    background-color: rgb(40, 40, 40); +} +samp { +    display: block; +    line-height: 115%; +} | 
