Skip to content
Snippets Groups Projects
Commit f69bc809 authored by AlphaThrone's avatar AlphaThrone
Browse files

refactor: navbar back to previous version

parent 6bb1f159
Branches
Tags
No related merge requests found
.navbar-container {
display: flex;
justify-content: space-evenly;
background-color: #AA1E1E;
border: none;
outline: none;
color: #eaeaea;
/* float: left; */
font-size: 17px;
width: 100%;
height: 8%;
}
img{ img{
/* float: left; */ float: left;
margin: 5px; margin: 10px;
min-width: 100px; min-width: 100px;
min-height: 50px; min-height: 50px;
} }
.tabgroup{
background-color: #AA1E1E;
color: #eaeaea;
outline: none;
font-size: 17px;
width: 100%;
height: 8%;
position: relative;
}
.searchbar { .searchbar {
/* float: left; */ float: left;
padding: 6px; padding: 6px;
background: linear-gradient(rgba(255,255,255,0.67), rgba(255,255,255,0.67)); background: linear-gradient(rgba(255,255,255,0.67), rgba(255,255,255,0.67));
margin-top: 15px; margin-top: 15px;
margin-left: 10%; margin-left: 10%;
border-radius: 10px; border-radius: 10px;
display: flex; display: flex;
/* align-items: center; */ align-items: center;
max-height: 35px; max-height: 35px;
transition: max-height 0.5s; transition: max-height 0.5s;
overflow: hidden; overflow: hidden;
...@@ -36,28 +33,32 @@ img{ ...@@ -36,28 +33,32 @@ img{
.searchbar input{ .searchbar input{
background: transparent;
background-color: transparent; background-color: transparent;
border: none; border: none;
outline: none;
font-size: 20px; font-size: 20px;
margin-left: 10px; margin-left: 10px;
width: 100%; width: 100%;
border: 0; }
input{
width: 100%;
background: transparent;
border: 0;
outline: 0;
} }
.tabexpand{ .tabexpand{
background-color: #AA1E1E;
color: #eaeaea; color: #eaeaea;
float: left; float: left;
border: none; border: none;
outline: none;
text-decoration: none; text-decoration: none;
text-align: center; text-align: center;
cursor: pointer; cursor: pointer;
font-size: 5vh; font-size: 30px;
padding: 10px 14px; padding: 14px 14px;
width: 5%; width: 5%;
height: 100%; height: 100%;
} }
...@@ -66,74 +67,73 @@ img{ ...@@ -66,74 +67,73 @@ img{
background-color: transparent; background-color: transparent;
color: #eaeaea; color: #eaeaea;
border: none; border: none;
outline: none;
cursor: pointer; cursor: pointer;
font-size: 17px; font-size: 17px;
/* padding: 17px 0px; */ padding: 17px 0px;
width: 10%; width: 10%;
text-align: center; text-align: center;
border-radius: 10px; border-radius: 10px;
height: 100%; height: 100%;
} }
/* .tabbutton{ .tabbutton{
background-color: #AA1E1E;
color: #eaeaea; color: #eaeaea;
float: left; float: left;
border: none; border: none;
outline: none;
cursor: pointer; cursor: pointer;
font-size: 17px; font-size: 17px;
padding: 14px 16px; padding: 14px 16px;
width: 13%; width: 13%;
} */ }
.tabright{ .tabright{
background-color: #AA1E1E;
color: #eaeaea; color: #eaeaea;
float: right; float: right;
border: none; border: none;
outline: none;
text-decoration: none; text-decoration: none;
text-align: center; text-align: center;
cursor: pointer; cursor: pointer;
font-size: 3vh; font-size: 30px;
padding: 17px 14px; padding: 17px 14px;
width: 13%; width: 13%;
/* height: 100%; */ height: 100%;
} }
/* .tabaccount{ .tabaccount{
background-color: #AA1E1E;
color: #eaeaea; color: #eaeaea;
float: right; float: right;
border: none; border: none;
outline: none;
cursor: pointer; cursor: pointer;
text-align: center; text-align: center;
font-size: 30px; font-size: 30px;
padding: 14px 16px; padding: 14px 16px;
width: 5%; width: 5%;
margin-left: 50px; margin-left: 50px;
} */ }
@media screen and (max-width: 850px){ @media screen and (max-width: 850px){
.tabaccount, .tabright{ .tabaccount, .tabright{
font-size: 3vh; font-size: 8px;
width: 17%; width: 17%;
height: 100%; height: 100%;
} }
.tabexpand{ .tabexpand{
font-size: 3vh; font-size: 15px;
width: 10%; width: 10%;
} }
.searchbar{ .searchbar{
margin-left: 5%; margin-left: 5%;
width: 50%; width: 50%;
margin-top: 3.5px; margin-top: 7px;
margin-bottom: 3.5px;
} }
img{ img{
display: none; display: none;
...@@ -142,16 +142,10 @@ img{ ...@@ -142,16 +142,10 @@ img{
@media screen and (max-width: 1350px) and (min-width: 851px) { @media screen and (max-width: 1350px) and (min-width: 851px) {
.tabaccount, .tabright{ .tabaccount, .tabright{
font-size: 3.5vh; font-size: 25px;
} }
.tabexpand{ .tabexpand{
font-size: 3.5vh; font-size: 25px;
}
.searchbar{
margin: 5px;
}
img{
margin: 5px;
} }
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment