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.

54 lines
836 B

#news_page {
background-color: #00085F;
top: 0;
padding: 30px 40px;
margin: 0px 10px;
display: flex;
overflow-x: scroll;
scroll-snap-type: x mandatory;
scroll-paddind: 100px;
gap: 12px;
box-shadow:8px 8px 10px 0 rgba(0,0,0,0.6);
margin-bottom: 50px;
}
.news_items {
flex: 0 0 100%;
padding: 24px;
border-radius: 8px;
scroll-snap-align: start;
}
video{
margin-left: 10px;
width: 100%;
border-radius: 20px;
box-shadow:8px 8px 10px 0 rgba(255,255,255,0.4);
}
#news_page figcaption {
text-align: right;
padding-top: 8px;
padding-right: 10px;
color: #CCCCCC;
}
#news_page h1 {
text-align: center;
color: #CCCCCC;
padding-bottom: 10px;
font-weight: bold;
font-size: 250%;
}
@media only screen and (max-device-width: 480px) {
#news_page {
height: 100vh;
}
#news_page h1 {
padding: 25% 0;
}
}