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.
66 lines
1014 B
66 lines
1014 B
#header {
|
|
text-align: center;
|
|
background-color: var(--main-color);
|
|
margin: 0px;
|
|
/* border : var(--accent-color) 1px solid; */
|
|
display: flex;
|
|
flex-direction: row;
|
|
font-family: var(--font-title);
|
|
/* border-radius: 0.75cap; */
|
|
}
|
|
|
|
#img-account {
|
|
width: 100%;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#header-right,
|
|
#header-left {
|
|
width: 10%;
|
|
/* border: yellow 2px solid; */
|
|
}
|
|
|
|
#header-right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
#username {
|
|
color: var(--main-contrast-color);
|
|
margin: 0;
|
|
}
|
|
|
|
#clickable-header-right:hover #username {
|
|
color: var(--accent-color);
|
|
}
|
|
|
|
#header-center {
|
|
width: 80%;
|
|
}
|
|
|
|
#clickable-header-right {
|
|
width: 40%;
|
|
border-radius: 1cap;
|
|
padding: 2%;
|
|
}
|
|
|
|
#clickable-header-right:hover {
|
|
border: orange 1px solid;
|
|
}
|
|
|
|
.clickable {
|
|
cursor: pointer;
|
|
}
|
|
|
|
#img-account {
|
|
width: 100%;
|
|
}
|
|
|
|
#iqball {
|
|
color: var(--accent-color);
|
|
font-weight: bold;
|
|
font-size: 45px;
|
|
}
|