Update all the CSS
This commit is contained in:
@@ -1,105 +0,0 @@
|
|||||||
.top-bar {
|
|
||||||
display: flex;
|
|
||||||
width: 100%;
|
|
||||||
height: 200px;
|
|
||||||
background: linear-gradient(0deg,#99999988, #000000FF);
|
|
||||||
backdrop-filter: blur(2px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.top-bar-logo {
|
|
||||||
width: 180px;
|
|
||||||
height: 180px;
|
|
||||||
margin: 10px
|
|
||||||
}
|
|
||||||
|
|
||||||
.top-bar-buttons {
|
|
||||||
display: flex;
|
|
||||||
width: calc(50% - 110px);
|
|
||||||
height: 180px;
|
|
||||||
margin: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.flex-right {
|
|
||||||
justify-content: end;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-button {
|
|
||||||
height: 15px;
|
|
||||||
width: 150px;
|
|
||||||
border-radius: 5px;
|
|
||||||
margin: 10px;
|
|
||||||
text-align: center;
|
|
||||||
padding: 15px 0;
|
|
||||||
transition: 0.5s;
|
|
||||||
background-color: #00000000;
|
|
||||||
border: 1px solid var(--Mistox-White);
|
|
||||||
color: var(--Mistox-White);
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-button:hover {
|
|
||||||
background-color: #00000044;
|
|
||||||
color: var(--Mistox-Light);
|
|
||||||
}
|
|
||||||
|
|
||||||
.active {
|
|
||||||
background-color: #00000010;
|
|
||||||
color: var(--Mistox-Frame);
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-button-login {
|
|
||||||
width: 100px;
|
|
||||||
padding: 10px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
width: 100%;
|
|
||||||
min-height: calc(100vh - 300px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.bottom-bar {
|
|
||||||
display: flex;
|
|
||||||
width: 100%;
|
|
||||||
height: 100px;
|
|
||||||
background: linear-gradient(180deg,#99999988, #000000FF);
|
|
||||||
backdrop-filter: blur(2px);
|
|
||||||
}
|
|
||||||
|
|
||||||
.bottom-bar-logo {
|
|
||||||
width: 80px;
|
|
||||||
height: 80px;
|
|
||||||
margin: 10px 50px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bottom-bar-logo img {
|
|
||||||
width: 80px;
|
|
||||||
height: 80px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bottom-bar-buttons {
|
|
||||||
display: flex;
|
|
||||||
width: calc(50% - 110px);
|
|
||||||
height: 80px;
|
|
||||||
margin: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav-button-bottom {
|
|
||||||
height: 15px;
|
|
||||||
width: 150px;
|
|
||||||
border-radius: 5px;
|
|
||||||
text-align: center;
|
|
||||||
padding: 5px 0;
|
|
||||||
transition: 0.5s;
|
|
||||||
background-color: #00000000;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bottom-bar-float {
|
|
||||||
align-items: end;
|
|
||||||
color: var(--Mistox-White);
|
|
||||||
}
|
|
||||||
|
|
||||||
.bottom-bar-padding {
|
|
||||||
color: var(--Mistox-White);
|
|
||||||
margin: 20px;
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
.center {
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.frame {
|
||||||
|
background-color: #000;
|
||||||
|
padding: 20px;
|
||||||
|
margin: 20px 0;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.center p {
|
||||||
|
color: #FFF;
|
||||||
|
}
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
.center {
|
||||||
|
background-color: green;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tile-frame {
|
||||||
|
column-count: 4;
|
||||||
|
column-gap: 20px;
|
||||||
|
padding: 20px;
|
||||||
|
width: calc(100% - 40px);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tile{
|
||||||
|
background-color: aqua;
|
||||||
|
height: 40px;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user