Commit 69006cae1007470bf35595ed665bbdde5b18f387

Authored by Hayk Nazaryan
1 parent 17934ed8c0
Exists in master

worker/amployer recreate resistrations

Showing 1 changed file with 1 additions and 1 deletions Inline Diff

public/css/general.css
1 /* Диалог модал */ 1 /* Диалог модал */
2 .modal-dialog{ 2 .modal-dialog{
3 border-radius: 10px; 3 border-radius: 10px;
4 } 4 }
5 .modal-dialog .modal-dialog-footer{ 5 .modal-dialog .modal-dialog-footer{
6 display: flex; 6 display: flex;
7 justify-content: space-between; 7 justify-content: space-between;
8 } 8 }
9 .modal-dialog .modal-dialog-footer.center{ 9 .modal-dialog .modal-dialog-footer.center{
10 display: flex; 10 display: flex;
11 justify-content: center; 11 justify-content: center;
12 } 12 }
13 .modal-dialog .modal-dialog-title h2{ 13 .modal-dialog .modal-dialog-title h2{
14 font-weight: bold; 14 font-weight: bold;
15 font-size: 24px; 15 font-size: 24px;
16 text-align: center; 16 text-align: center;
17 } 17 }
18 .modal-dialog .modal-dialog-body{ 18 .modal-dialog .modal-dialog-body{
19 padding-top: 20px; 19 padding-top: 20px;
20 padding-bottom: 20px; 20 padding-bottom: 20px;
21 } 21 }
22 .modal-dialog .modal-dialog-footer .button-admin{ 22 .modal-dialog .modal-dialog-footer .button-admin{
23 padding: 5px 10px; 23 padding: 5px 10px;
24 border: 1px #000 solid; 24 border: 1px #000 solid;
25 border-radius: 8px; 25 border-radius: 8px;
26 } 26 }
27 /* Конец Диалог модал */ 27 /* Конец Диалог модал */
28 28
29 .button-loader { 29 .button-loader {
30 display: inline-block; 30 display: inline-block;
31 border: 2px solid #f3f3f3; 31 border: 2px solid #f3f3f3;
32 -webkit-animation: spin 1s linear infinite; 32 -webkit-animation: spin 1s linear infinite;
33 animation: spin 1s linear infinite; 33 animation: spin 1s linear infinite;
34 border-top: 2px solid #555; 34 border-top: 2px solid #555;
35 border-radius: 50%; 35 border-radius: 50%;
36 width: 20px; 36 width: 20px;
37 height: 20px; 37 height: 20px;
38 margin-right: 10px; 38 margin-right: 10px;
39 } 39 }
40 @keyframes spin { 40 @keyframes spin {
41 0% { transform: rotate(0deg); } 41 0% { transform: rotate(0deg); }
42 100% { transform: rotate(360deg); } 42 100% { transform: rotate(360deg); }
43 } 43 }
44 .error-block{ 44 .error-block{
45 color:red; 45 color:red;
46 padding: 0; 46 padding: 0;
47 width: 100%; 47 width: 100%;
48 } 48 }
49 49
50 .review-image-modal{ 50 .review-image-modal{
51 cursor: pointer; 51 cursor: pointer;
52 } 52 }
53 53
54 .error-message, .employer_error-message { 54 .error-message, .employer_error-message {
55 margin-top: 5px; 55 margin-top: 5px;
56 font-weight: bold; 56 color: #dc3546
57 } 57 }
58 58
59 #captcha_error, #captcha_employer_error { 59 #captcha_error, #captcha_employer_error {
60 margin-top: 0; 60 margin-top: 0;
61 margin-bottom: 15px; 61 margin-bottom: 15px;
62 } 62 }
63 63