You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

79 lines
1.3 KiB

.topPart{
display: flex;
align-items: center;
justify-content: flex-end;
flex-direction: column;
background-color: #FFFFFF;
background-image: url("../src/pictures/newsBanner.png");
background-size: cover;
background-position: center;
height: 420px;
text-shadow: 2px 2px #835d91;
padding-bottom: 30px;
box-shadow: 0px 20px 20px 0px #ffb073;
border-bottom: 3px solid #E76F51;
}
#title{
font-size: 300%;
}
.bodyDiv{
margin-left: 10%;
margin-right: 10%;
margin-top: 3em;
clear: right;
clear: left;
}
.article{
border-radius: 10px;
background-color: transparent;
transition-duration: 0.5s;
transition-property: background-color;
margin-right: 2%;
}
.article:hover{
background-color: #fec89a;
}
.tableImg{
width: 100%;
height: 100%;
}
.newsTable{
float: inherit;
padding: 20px;
border-top: 6px solid #E76F51;
border-bottom: 6px solid #E76F51;
align-content: center;
text-align: center;
border-radius: 20px;
background-color: #ffb073;
transition-duration: 0.8s;
transition-property: background-color;
}
.newsTable:hover{
background-color: #F4A261;
}
footer{
padding-top: 1em;
padding-bottom: 3em;
border-top: 6px solid #264653;
border-bottom: 6px solid #264653;
background-color: #2A9D8F;
}
@media screen and (max-width: 800px){
#descArticles{
display: none;
}
}