51 lines
749 B
CSS
51 lines
749 B
CSS
html {
|
|
color: navy;
|
|
}
|
|
#tartalom {
|
|
width: 960px;
|
|
height: 100vh;
|
|
margin-top: 0;
|
|
text-align: center;
|
|
background-color: skyblue;
|
|
border-left: solid 15px blue ;
|
|
border-style: double;
|
|
}
|
|
h1, h2 {
|
|
font-variant: small-caps;
|
|
margin: 10px;
|
|
text-align: left;
|
|
}
|
|
p{
|
|
text-align: justify;
|
|
padding: 10px;
|
|
}
|
|
h1 {
|
|
border-bottom: 1px solid blue;
|
|
width: 80%;
|
|
}
|
|
|
|
div.fénykép img{
|
|
margin: 10px;
|
|
border: 1px solid blue;
|
|
float: right;
|
|
width: 150px;
|
|
}
|
|
|
|
table {
|
|
margin: 0px auto;
|
|
padding: 10px;
|
|
width:80%;
|
|
border: 1px solid blue;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: cornflowerblue;
|
|
}
|
|
|
|
td:last-child {
|
|
text-align: right;
|
|
}
|
|
a{
|
|
text-decoration: none;
|
|
color: white;
|
|
} |