43 lines
788 B
CSS
43 lines
788 B
CSS
|
.error-page .error-image {
|
||
|
display: block;
|
||
|
margin: auto;
|
||
|
width: 85%;
|
||
|
border: 0;
|
||
|
}
|
||
|
|
||
|
.error-page .error-explain .form-group input {
|
||
|
border: 2px solid;
|
||
|
box-sizing: border-box;
|
||
|
font-size: 16px;
|
||
|
padding: 0 40px 0 7px;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.discours-form .form-group .form-control {
|
||
|
position: relative;
|
||
|
color: #000;
|
||
|
border-color: #000;
|
||
|
border-radius: 0;
|
||
|
border-width: 5px;
|
||
|
}
|
||
|
|
||
|
.form-control {
|
||
|
width: 100%;
|
||
|
height: 39px;
|
||
|
padding: 6px 12px;
|
||
|
background-color: #fff;
|
||
|
background-image: none;
|
||
|
border: 1px solid #ccc;
|
||
|
border-radius: 4px;
|
||
|
box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
|
||
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
||
|
}
|
||
|
|
||
|
.form-control,
|
||
|
output {
|
||
|
display: block;
|
||
|
font-size: 18px;
|
||
|
line-height: 1.4286;
|
||
|
color: #555;
|
||
|
}
|