| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- .title-view {
- background-color: #f0f0f0;
- padding: 10px 0px;
- display: flex;
- justify-content: space-around;
- align-items: center;
- border-bottom: 1px solid #f0f0f0;
- .title-view-text {
- font-size: 12px;
- color: #666;
- text-align: center;
- border-right: 1px solid #f0f0f0;
- }
- }
- .list-item {
- display: flex;
- justify-content: space-between;
- margin: 5px 10px 15px 10px;
- flex-direction: row;
- align-content: center;
- align-items: center;
- height: 110px;
- border-bottom: 1px solid #ddd;
- .list-item-left, .list-item-right {
- display: flex;
- flex-direction: column;
- align-items: center;
- align-content: center;
- }
- .list-item-left {
- width: 60%;
- }
- .list-item-right {
- border-left: 1px solid #ddd;
- padding-left: 15px;
- width: 100%;
- }
- .list-item-left, .list-item-right {
- text {
- margin: 2.5px;
- width: 100%;
- text-align: left;
- font-size: 14px;
- color: #333;
- }
- }
- }
- .submit-view {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- margin-top: 20px;
- button {
- width: 45%;
- color: white;
- }
- button:nth-child(1) {
- background-color: red;
- }
-
- button:nth-child(2) {
- background-color: purple;
- }
- }
|