persmgr/res/css/global.css
2025-09-06 16:26:26 +03:00

99 lines
1.6 KiB
CSS

:root {
--bg-color-ll: #535353;
--bg-color-l: #434343;
--bg-color: #323232;
--bg-color-d: #292929;
--bg-color-dd: #212121;
}
body {
margin: 0;
background: var(--bg-color);
font-family: Arial, Helvetica, sans-serif;
}
#topnav {
width: 100%;
height: 3.5rem;
background: var(--bg-color-l);
display: flex;
justify-content: space-between;
align-items: center;
}
#topnav_buttons {
margin-left: 0.5rem;
}
.topnav_button {
width: 10rem;
padding: 0.6rem 2rem;
margin: 3px 3px;
background: var(--bg-color-ll);
border: 2px solid var(--bg-color);
border-radius: 10px;
text-align: center;
font-size: 18px;
}
#topnav_login {
}
.topnav_button:hover {
background: var(--bg-color)
}
#topnav_profile {
margin-right: 0.5rem;
position: relative;
display: none;
align-items: center;
justify-content: right;
height: 3rem;
}
#topnav_profile span {
font-size: 21px;
}
#topnav_profile img {
cursor: pointer;
/*position: absolute;*/
width: 3rem;
height: 100%;
right: 0;
object-fit: fill;
}
#topnav_profile_wrapper {
position: relative;
}
#topnav_profile_dropdown:hover {
}
#topnav_profile_dropdown {
display: none;
padding: 5px;
background: var(--bg-color-l);
border: 2px solid var(--bg-color-d);
border-radius: 5px;
position: absolute;
margin-top: 0.5rem;
right: 0px;
flex-direction: column;
}
.topnav_profile_button {
width: 8rem;
height: 2.5rem;
background: var(--bg-color-ll);
border: 2px solid var(--bg-color);
border-radius: 10px;
}