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

69 lines
1.2 KiB
CSS
Raw Normal View History

2024-03-11 19:13:42 +08:00
.head {
width: 100%;
2024-03-12 18:53:51 +08:00
height: var(--height-head);
2024-03-11 19:13:42 +08:00
position: fixed;
top: 0;
left: 0;
2024-03-15 18:18:29 +08:00
background-color: var(--color-light);
2024-03-16 23:12:49 +08:00
box-shadow: 0 2px 6px 0 var(--color-box-shadow);
2024-03-17 18:36:00 +08:00
z-index: 99;
2024-03-15 18:18:29 +08:00
color: var(--color-dark);
2024-03-11 19:13:42 +08:00
}
.head .center {
margin: 0 auto;
2024-03-12 18:53:51 +08:00
width: var(--width-workspace);
2024-03-11 19:13:42 +08:00
height: 100%;
display: flex;
justify-content: space-between;
}
.head .center .left {
2024-03-11 23:33:03 +08:00
min-width: 180px;
2024-03-11 19:13:42 +08:00
height: 100%;
2024-03-11 23:33:03 +08:00
display: flex;
align-items: center;
2024-03-15 18:18:29 +08:00
font-size: 18px;
2024-03-11 23:33:03 +08:00
font-weight: 800;
2024-03-15 18:18:29 +08:00
color: var(--color-text-header-left);
2024-03-11 23:33:03 +08:00
}
.head .center .left .logo {
width: 38px;
height: 38px;
}
2024-03-15 18:18:29 +08:00
.head .center .left .sys-title {}
.head .center .left .sys-title-sub {
font-size: 14px;
font-weight: unset;
2024-03-11 19:13:42 +08:00
}
.head .center .right {
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-03-11 19:13:42 +08:00
}