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.
Application-Web/front/style/component/header.css

78 lines
1.2 KiB

@import url("./main_title.css");
:root {
--height-header : 110px;
}
#header {
text-align: center;
background-color: var(--main-color);
margin: 0px;
display: flex;
flex-direction: row;
font-family: var(--font-title);
padding-left : 1%;
padding-right: 1%;
height: var(--height-header);
}
#header-center {
width: 80%;
padding : 0px;
display: flex;
justify-content: center;
align-items: center;
}
#header-right,
#header-left {
width: 10%;
}
#header-right {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
#clickable-header-right:hover #username {
color: var(--accent-color);
}
#img-account {
width: 100%;
cursor: pointer;
}
#username {
color: var(--main-contrast-color);
margin: 0;
}
#clickable-header-right {
width: 40%;
border-radius: 1cap;
padding: 2%;
}
#clickable-header-right:hover {
border: var(--accent-color) 1px solid;
}
.clickable {
cursor: pointer;
}
#img-account {
width: 100%;
}
#iqball {
color: var(--accent-color);
font-weight: bold;
font-size: 45px;
width: fit-content;
text-align: center;
}