-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyle.css
146 lines (131 loc) · 2.8 KB
/
Style.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
.rc-input{
position: relative;
}
.rc-input label {
position: relative;
text-align: left;
margin: 0;
margin-top: 10px;
height: auto;
font-size: 18px;
}
.rc-input label span {
font-size: 1em;
font-weight: normal;
color: #444;
padding: 0;
}
.rc-input label.input-label-animate span {
position: absolute;
bottom: -5px;
left: 15px;
transition: all 0.3s ease-out;
}
.rc-input label.input-label-animate .label-seprate {
bottom: 1.9em;
left: 0;
font-size: 0.8em;
}
.rc-input label input:not([type='radio']):not([type='checkbox']) {
height: 1.1em;
font-size: inherit;
border: 0;
box-shadow: none;
outline: 0;
border-bottom: 1px solid;
border-radius: 0;
font-weight: normal;
margin-top: 1.5em;
padding: 6px 15px;
}
.rc-input label input:not([type='radio']):not([type='checkbox']).error_input {
border: solid 1.5px #ff5252;
border-radius: 5px;
}
.rc-input label input[type='radio'],
.rc-input label input[type='checkbox'] {
float: left;
margin-right: 5px;
margin-top: 1.5px;
zoom: 1.3;
}
.rc-input label i {
position: absolute;
right: 0px;
top: 50%;
transform: translateX(-50%);
cursor: pointer;
}
.rc-input input[type=button],
.rc-input input[type=reset],
.rc-input input[type=submit],
.rc-input button.submit {
display: inherit;
margin: 16px auto 0;
display: inherit;
border-radius: 0;
box-shadow: none;
background: #067b98;
border: #067b98;
outline: #067b98;
color: #fff;
padding: 12px 15%;
}
.error-cross-icn span{
position: absolute;
/* transform: scaleY(0); */
/* transition: transform 50ms ease-in; */
background: #fff;
z-index: 99;
width: 200px;
height: auto;
/* overflow-y: auto; */
display: none;
padding: 10px;
box-shadow: 0px 0px 6px 1px #bdbdbd;
border: solid 1px #bdbdbd;
border-radius: 5px;
bottom: calc(100% + 10px);
}
.error-cross-icn span:before{
z-index: 10;
border-top-color:#bdbdbd;
}
.error-cross-icn span:after{
z-index: 11;
border-top-color:#fff;
}
.error-cross-icn:hover > span{
display: flex;
justify-content: center;
align-items: center;
/* transform: scaleY(1); */
}
.error-cross-icn {
position: absolute;
right: 12px;
/* top: 32px; */
bottom: 7px;
width: 22px;
height: 22px;
/* opacity: 0.3; */
background: #ff5252;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
}
.error-cross-icn:before, .error-cross-icn:after {
position: absolute;
/* left: 15px; */
content: ' ';
height: 50%;
width: 3px;
background-color: #fff;
}
.error-cross-icn:before {
transform: rotate(45deg);
}
.error-cross-icn:after {
transform: rotate(-45deg);
}