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.

142 lines
2.3 KiB

.topPart{
display: flex;
align-items: center;
justify-content: flex-end;
flex-direction: column;
background-color: #FFFFFF;
background-image: url("../src/pictures/skateBannerv2.png");
background-size: cover;
background-position: center;
height: 420px;
text-shadow: 2px 2px #835d91;
padding-bottom: 30px;
box-shadow: 0px 20px 20px 0px #ba9fc7;
border-bottom: 3px solid #8c5784;
}
#title{
font-size: 300%;
}
#subTitle{
font-size: xx-large;
}
#gifSkate{
height: 12em;
width: 17em;
}
#updateNotes{
width: 100%;
}
.updateWebsiteSection{
float: right;
background-color: #F4A261;
padding: 20px;
margin-right: 5%;
margin-left: 5%;
margin-bottom: 5%;
border-top: 6px solid #E76F51;
border-bottom: 6px solid #E76F51;
border-radius: 20px;
}
.newsTable{
float: inherit;
background-color: #F4A261;
padding: 20px;
border-top: 6px solid #E76F51;
border-bottom: 6px solid #E76F51;
align-content: center;
text-align: center;
border-radius: 20px;
}
.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%;
}
#descArticles{
display: block;
}
.sameTheme{
background-color: #F4A261;
padding: 20px;
margin-top: 5%;
margin-right: 10%;
margin-left: 10%;
border-top: 6px solid #E76F51;
border-bottom: 6px solid #E76F51;
border-radius: 20px;
height: 400px;
min-width: 435px;
}
#bottomLinks > a{
width: fit-content;
background-color: #c97c5d;
border-radius: 25px;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 40px;
padding-right: 40px;
border-bottom: 4px solid #7d4f50;
border-right: 4px solid #7d4f50;
color: #FFFFFF;
transition-duration: 1s;
transition-property: background-color, border, color;
}
#bottomLinks > a:hover{
background-color: #f3d8c7;
border-bottom: 4px solid #f38375;
border-right: 4px solid #f38375;
color: #000000;
}
@media screen and (max-width: 1030px){
#bodyDiv{
display: flex;
flex-direction: column;
}
}
@media screen and (max-width: 800px){
.updateWebsiteSection + .newsTable{
clear: right;
margin-right: 5%;
margin-left: 5%;
}
#descArticles{
display: none;
}
.sameTheme{
min-width: 280px;
}
#bottomLinks > a{
padding-left: 5%;
padding-right: 5%;
font-size: 80%;
}
}