Changeset befb988 for jobvista-frontend/src/views/shared_css
- Timestamp:
- 06/17/24 21:59:14 (5 months ago)
- Branches:
- main
- Children:
- 08f82ec
- Parents:
- b248810
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
jobvista-frontend/src/views/shared_css/Modal.css
rb248810 rbefb988 2 2 .modal-wrap { 3 3 display: inline; 4 }5 .btn-open-modal {6 font-size: 18px;7 border-radius: 10px;8 padding: 5px 10px;9 background-color: #06367a;10 border: none;11 color: #fff;12 font-weight: 600;13 float: right;14 /*margin-left: 10px;*/15 4 } 16 5 … … 26 15 background: #f1f1f1; 27 16 border-radius: 10px; 28 width: 1300px !important;29 //min-width: 300px;17 min-width: 1000px !important; 18 max-width: 1000px !important; 30 19 height: auto; 31 20 padding: 0 !important; … … 41 30 border-top-right-radius: 10px; 42 31 background-color: rgba(1,38,90,0.9); 32 /*background-color: white;*/ 43 33 background-size: cover; 44 34 padding: 14px 48px; 35 /*color: #3A3B3C;*/ 45 36 color: white; 37 border-bottom: 1px solid #E5E4E7; 38 display: flex; 39 justify-content: left; 46 40 } 47 41 … … 50 44 font-weight: bold; 51 45 display: inline; 46 margin: 0; 52 47 } 53 48 … … 60 55 } 61 56 62 .react-responsive-modal-modal .modal-content form .aligned { 63 text-align: center; 57 .react-responsive-modal-modal .modal-content form .modal-buttons{ 58 display: flex; 59 justify-content: end; 60 gap: 10px; 61 margin-right: 10px; 64 62 } 65 63 … … 69 67 } 70 68 71 input {69 .react-responsive-modal-modal .modal-content form input { 72 70 display: block; 73 71 padding: 5px 10px; … … 77 75 } 78 76 79 textarea {77 .react-responsive-modal-modal .modal-content form textarea { 80 78 width: 100%; 81 79 resize: none; … … 89 87 } 90 88 91 .applic taion-textarea {89 .application-textarea { 92 90 height: 100px; 93 91 } … … 108 106 } 109 107 110 . submit-btn{108 .modal-buttons button, .modal-buttons div { 111 109 position: relative; 112 110 padding: 5px 20px; … … 114 112 border: none; 115 113 color: white; 116 text-transform: uppercase; 117 font-weight: bold; 118 width: 30%; 119 /*clip-path: polygon(100% 0, 100% 75%, 95% 100%, 0 100%, 0 0);*/ 120 background: linear-gradient(to right, #06367a, #06367a); 114 /*text-transform: uppercase;*/ 115 font-weight: 500; 121 116 margin-top: 15px; 117 cursor: pointer 118 } 119 120 .modal-buttons .submit-btn { 121 background: #06367a; 122 transition: background-color 0.3s ease, color 0.3s ease; 123 } 124 125 .modal-buttons .submit-btn:hover { 126 background-color: #2e579b; 127 } 128 129 .modal-buttons .cancel-btn { 130 color: #858B96; 131 background-color: #F0F0F0; 132 transition: background-color 0.3s ease, color 0.3s ease; 133 } 134 .modal-buttons .cancel-btn:hover { 135 background-color: #e0e0e0; 136 color: #555; 122 137 } 123 138 … … 156 171 157 172 158 . cancel-btn,.delete-btn {173 .modal-delete-buttons .cancel-btn, .modal-delete-buttons .delete-btn { 159 174 display: inline; 160 175 border: none; … … 163 178 } 164 179 165 . delete-btn {180 .modal-delete-buttons .delete-btn { 166 181 background-color: red; 167 182 color: white;
Note:
See TracChangeset
for help on using the changeset viewer.