123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185 |
- // Reset default browser styles
- * {
- box-sizing: border-box;
- }
- #root {
- min-height: 100vh;
- }
- html,
- body,
- ul,
- ol,
- li,
- dl,
- dt,
- dd,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- pre,
- code,
- form,
- fieldset,
- legend,
- input,
- textarea,
- p,
- blockquote,
- th,
- td,
- hr,
- button {
- margin: 0;
- padding: 0;
- font-size: 100%;
- font-family: inherit;
- vertical-align: baseline;
- border: 0 none;
- color: inherit;
- background: transparent;
- box-sizing: border-box;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- // Remove list styles on ul, ol
- ul,
- ol {
- list-style: none;
- }
- // Remove link styles
- a {
- text-decoration: none;
- color: inherit;
- }
- // Remove table border
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- // Remove input styling for IE
- input[type='text'],
- input[type='password'],
- input[type='number'],
- textarea {
- appearance: none;
- -webkit-appearance: none;
- -moz-appearance: none;
- // border-radius: 0;
- }
- // Remove button styling for IE
- button,
- input[type='submit'],
- input[type='reset'] {
- appearance: none;
- -webkit-appearance: none;
- -moz-appearance: none;
- border: 0 none;
- background: none;
- padding: 0;
- cursor: pointer;
- }
- // Remove outline on focus
- *:focus {
- outline: none;
- }
- #pg-photo-container {
- width: 100% !important;
- height: unset !important;
- }
- #pg-photo-container > img {
- width: 100% !important;
- height: unset !important;
- }
- .ant-pro-global-header {
- background: transparent;
- background-image: url(@/assets/header.png);
- background-size: cover;
- background-repeat: no-repeat;
- margin-inline: 0;
- height: 79px;
- }
- .ant-pro-layout .ant-layout-header.ant-pro-layout-header {
- background-color: transparent;
- height: 79px;
- }
- .ant-layout .ant-layout-header {
- height: 79px !important;
- line-height: 79px !important;
- }
- .ant-pro-global-header-logo-mix {
- margin-left: 62px;
- }
- .ant-layout-sider {
- height: calc(100% - 79px) !important;
- inset-block-start: 79px !important;
- background-size: 132% 100% !important;
- background-image: url(@/assets/SideMenu/background.png) !important;
- }
- .ant-menu-title-content {
- font-size: 18px;
- color: #e8f7fc;
- }
- .ant-pro-base-menu-icon {
- height: 20px;
- width: 20px;
- }
- .ant-pro-base-menu-item-icon {
- margin-right: 10px;
- }
- .ant-menu-item,
- .ant-menu-submenu {
- margin-top: 15px !important;
- margin-bottom: 15px !important;
- }
- .ant-menu-item,
- .ant-menu-submenu-title {
- border-bottom: 1px solid !important;
- border-image: linear-gradient(#3e6ab4, #5bbdfa) 2 2 2 2 !important;
- }
- .ant-menu-sub {
- margin-left: 32px !important;
- .ant-menu-item {
- margin-top: 10px !important;
- margin-bottom: 10px !important;
- }
- .ant-menu-title-content {
- font-size: 16px;
- color: #e8f7fc;
- }
- }
- .ant-menu-submenu-arrow {
- color: #e8f7fc !important;
- }
- .ant-menu-item-selected,
- .ant-pro-base-menu-collapsed
- .ant-menu-submenu-selected
- > .ant-menu-submenu-title,
- .ant-menu-item:active {
- background-image: url(@/assets/SideMenu/selectedBackground.png);
- background-color: transparent !important;
- }
- .ant-menu-submenu-popup {
- .ant-menu {
- background-color: #1b366f !important;
- }
- }
|