-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathglobal.css
128 lines (101 loc) · 2.05 KB
/
global.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
@import "./node_modules/antd/dist/antd.css";
body {
background: #191a38;
color: white;
font-family: sans-serif;
min-width: 800px;
}
p {
margin-top: 1em;
}
h3 {
margin-top: 16px;
margin-bottom: 6px;
font-size: 18px;
font-family: sans-serif ;
font-weight: 700;
color: rgba(255, 255, 255, 0.8);
line-height: 56px;
}
.ant-input {
margin-top: 9px;
margin-bottom: 10px;
background: #202242;
border: 1px solid #4d4e71;
border-radius: 4px;
margin-right: 5px;
color: white;
}
.ant-input:hover {
border: 1px solid #4d4e71;
}
.ant-input:focus {
border: 1px solid #4d4e71;
}
.ant-input[disabled] {
color: white;
}
.ant-select-disabled .ant-select-selection {
background-color: #27293e !important;
}
.ant-input-disabled {
background-color: #27293e !important;
}
.ant-input-disabled:hover {
border: 1px solid #4d4e71 !important;
}
.ant-input-disabled:focus {
border: 1px solid #4d4e71 !important;
}
.ant-select-selection {
margin-top: 8px;
margin-bottom: 8px;
background: #202242;
border: 1px solid #4d4e71;
border-radius: 4px;
color: white;
}
.ant-select-selection:hover {
border: 1px solid #4d4e71;
}
.ant-select-selection:focus {
box-shadow: none;
}
.ant-select-dropdown {
background: #161731;
}
.ant-select-dropdown-menu-item:hover {
background: #303147;
}
.ant-select-dropdown-menu-item {
background: #1A1B2C;
color: white;
}
.ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled),
.ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled) {
background: #303147 !important;
}
.ant-btn {
width: 300px;
height: 40px;
margin: 10px;
}
.ant-select-selection .anticon {
color: white !important;
}
.anticon-loading {
color: #1890ff !important;
}
.ant-btn-primary .anticon-loading {
color: white !important;
}
.ant-input-suffix {
color: white !important;
}
.leftLabel {
text-align: right;
}
.leftLabel>.ant-row,
.leftLabel>p {
padding-right: 20px;
}