44 lines
789 B
CSS
44 lines
789 B
CSS
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
user-select: none;
|
|
}
|
|
#app {
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-align: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
background: radial-gradient(82% 82% at 50% 63%, #4A506D 0%, rgba(0, 0, 0, 0) 100%), #05081D;
|
|
/* color: #fff; */
|
|
}
|
|
|
|
|
|
|
|
.ant-modal .ant-modal-content,
|
|
.ant-modal .ant-modal-header{
|
|
border-radius: 30px;
|
|
background-color: #777D90;
|
|
border-color: #777D90;
|
|
color: #fff;
|
|
}
|
|
.ant-modal .ant-modal-close-x{
|
|
color: #fff;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.btn-group {
|
|
position: relative;
|
|
display: inline-flex;
|
|
}
|
|
|
|
.ant-btn:hover,
|
|
.ant-btn:focus,
|
|
.ant-btn:active{
|
|
color: inherit;
|
|
border-color: inherit;
|
|
}
|