system-copyright-react/src/layout/head/head.css

84 lines
1.5 KiB
CSS
Raw Normal View History

2024-04-29 17:22:26 +08:00
2024-03-11 19:13:42 +08:00
.head {
2024-04-29 17:22:26 +08:00
width: 100vw;
2024-05-16 18:00:57 +08:00
height: 69px;
2024-03-11 19:13:42 +08:00
position: fixed;
top: 0;
left: 0;
2024-03-17 18:36:00 +08:00
z-index: 99;
2024-04-29 17:22:26 +08:00
background: url('../../static/head/background.png');
background-size: 100% 100%;
background-position: center;
background-repeat: no-repeat;
/* background-color: rgb(248, 211, 211); */
2024-03-11 19:13:42 +08:00
}
.head .center {
2024-04-29 17:22:26 +08:00
/* margin: 0 auto; */
width: 100vw;
2024-03-11 19:13:42 +08:00
height: 100%;
display: flex;
justify-content: space-between;
2024-04-29 17:22:26 +08:00
position: relative;
}
.head .center .left img {
width: 263px;
height: 41px;
/* background-color: red;
*/
2024-05-16 18:00:57 +08:00
margin-left: 15px;
margin-top: 12px;
2024-03-11 19:13:42 +08:00
}
2024-04-29 17:22:26 +08:00
.head .center .right {
2024-03-11 19:13:42 +08:00
height: 100%;
2024-04-29 17:22:26 +08:00
/* padding-left: 60px; */
margin-right: 33px;
2024-03-11 23:33:03 +08:00
display: flex;
2024-04-29 17:22:26 +08:00
justify-content: right;
2024-03-11 23:33:03 +08:00
align-items: center;
}
2024-04-29 17:22:26 +08:00
/*
2024-03-11 23:33:03 +08:00
.head .center .left .logo {
width: 38px;
height: 38px;
2024-04-29 17:22:26 +08:00
} */
2024-03-11 23:33:03 +08:00
2024-04-29 17:22:26 +08:00
/* .head .center .left .sys-title {}
2024-03-15 18:18:29 +08:00
.head .center .left .sys-title-sub {
font-size: 14px;
font-weight: unset;
2024-04-29 17:22:26 +08:00
} */
2024-03-11 19:13:42 +08:00
2024-04-29 17:22:26 +08:00
/* .head .center .right {
2024-03-11 19:13:42 +08:00
height: 100%;
2024-03-15 18:18:29 +08:00
padding-left: 60px;
2024-03-11 23:33:03 +08:00
display: flex;
justify-content: right;
}
.head .center .head-item {
height: 100%;
display: flex;
justify-content: center;
align-items: center;
2024-03-15 18:18:29 +08:00
padding: 0 10px;
2024-03-11 23:33:03 +08:00
font-size: var(--font-size-head);
cursor: pointer;
position: relative;
2024-03-16 23:12:49 +08:00
}
.ant-dropdown .dropdown-item {
display: flex;
width: 100%;
justify-content: center;
}
.ant-dropdown .dropdown-item .title {
margin-left: 5px;
2024-04-29 17:22:26 +08:00
} */