news section

This commit is contained in:
SpikeHD
2022-05-14 01:28:56 -07:00
parent ec5197b5fa
commit 053c43a079
4 changed files with 97 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
.NewsSection {
background-color: rgba(106, 105, 106, 0.6);
display: flex;
position: absolute;
height: 30%;
width: 40%;
top: 35%;
left: 5%;
}
.NewsTabs {
background-color: rgba(77, 77, 77, 0.6);
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
font-weight: bold;
color: #fff;
width: 100%;
height: 20%;
}
.NewsTab {
height: 50%;
margin: 0 10px;
text-align: center;
border-bottom: 1px solid transparent;
}
.NewsTab:hover {
cursor: pointer;
}
.NewsTab.selected {
border-bottom: 1px solid #ffc61e;
}