CSS Kód


/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');

/* Alapértelmezett stílusok */
body {
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
    margin: 0;
    padding: 0;
}

/* Navigációs linkek */
nav a {
    font-weight: bold;
    color: darkgreen;
    text-decoration: none;
    margin-right: 10px;
}
nav a:hover {
    color: mediumblue;
}

/* Főcím */
h1 {
    color: mediumblue;
    font-family: 'Handlee', cursive;
    text-align: center;
    text-decoration: underline overline;
    text-decoration-color: mediumblue;
}

/* Alcímek */
h2 {
    color: darkgreen;
    font-variant: small-caps;
    letter-spacing: 4px;
}

/* Félkövér szövegek */
.felkover {
    font-weight: bold;
}

/* Bekezdések */
p {
    text-indent: 20px;
}

/* Források */
#forrasok {
    text-align: right;
}

#forrasok a {
    color: darkgreen;
    text-decoration: none;
}

#forrasok a:hover {
    color: mediumblue;
}

/* Képstílusok */
img {
    display: block;
    margin: 20px auto;
    width: 600px;
    border: 3px solid mediumblue;
    border-radius: 10px;
}

/* Vissza link */
.vissza {
    display: block;
    text-align: right;
    font-weight: bold;
    color: darkgreen;
    text-decoration: none;
}
.vissza:hover {
    color: mediumblue;
}

/* Táblázat */
table {
 /*  width: 100%;*/
 border-collapse: collapse;
    margin: 20px 0;
}
table, th, td {
    border: 1px solid black;
}
th, td {
    padding: 5px;
    text-align: left;
}
caption {
    color: mediumblue;
    font-style: italic;
    margin-top: 5px;
    text-align: center;
    caption-side: bottom;
}