Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
80 views2 pages

Stylesheet

This document contains CSS code that styles various page elements like the body, navigation links, footer, headings, lists, tables and more. It defines styles like colors, fonts, sizes, spacing and layout for the page sections.

Uploaded by

api-479141525
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
80 views2 pages

Stylesheet

This document contains CSS code that styles various page elements like the body, navigation links, footer, headings, lists, tables and more. It defines styles like colors, fonts, sizes, spacing and layout for the page sections.

Uploaded by

api-479141525
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

body 

{
    background‐color: #145BC8;
    color:white;
}
nav a {
    padding:15px;
    padding‐bottom:4px;
    font‐size:1.8em;
    text‐decoration: none;
    color:white;
}
nav a:hover {
    border‐bottom:2px orange solid;
    font‐size:2em;
    transition:.9s;
}
footer {
    display: flex;
    background‐color: #FFFFFF;
    font‐size:.75em;
    color:purple;
    justify‐content: center;
    text‐align:center;
}
header, h2, main, nav {
    text‐align:center;
    font‐family: "calibri"
}
main {
    display: flex;
    justify‐content: center;
}
figure {
    text‐align:center;
}
ul {
    width: 500px;
    margin: 0 auto;
    text‐align: left;
}
.hobby {
    color: yellow;
}
table {
    margin: 0px auto;
}
td {
    padding‐right: 10px;
    font‐size: 1.3em;
}
td strong {
    color:orange;
}
#table‐header {
    background‐color: #351a00;
}
.table‐row {
    background‐color: #753900;
}
h1 {
    font‐family: 'Pacifico', cursive;
    font‐size: 4em;
    margin‐bottom: 0px;
}

You might also like