source: phonelux-frontend/src/components/EditOfferComponent/EditOfferComponent.css@ 5201690

Last change on this file since 5201690 was 7e88e46, checked in by Marko <Marko@…>, 22 months ago

Added more components

  • Property mode set to 100644
File size: 1.1 KB
Line 
1.edit-offer-table th{
2 text-align: center;
3 font-size: 38px;
4 padding: 20px;
5}
6
7.edit-offer-component-main{
8 width: 100%;
9}
10
11.edit-offer-table thead tr{
12 background-color: #a6c9ab;
13}
14
15.edit-offer-table-row:nth-of-type(even){
16 background-color: #eef2f0;
17}
18
19.edit-offer-table-row{
20 border: 1px solid gainsboro;
21}
22
23.edit-offer-table{
24 border-collapse: collapse;
25 width: 80%;
26 table-layout: fixed;
27}
28
29.edit-offer-table-row td{
30 text-align: center;
31 word-wrap: break-word;
32 font-size: 22px;
33 padding: 20px;
34}
35
36.edit-offer-table-wrapper{
37 display: flex;
38 justify-content: center;
39 margin-top: 30px;
40 margin-bottom: 50px;
41}
42
43.edit-offer-textarea{
44 max-width: 100%;
45 min-width: 100%;
46 font-size: 22px;
47}
48
49.edit-offer-price-input{
50 width: 20%;
51 font-size: 22px;
52 background-color: rgb(238, 240, 238);
53 border: 1px solid black;
54 text-align: center;
55
56}
57
58.edit-offer-price-span{
59 margin-left: 10px;
60}
61
62.edit-offer-table-textarea{
63 max-width: 100%;
64 min-width: 100%;
65 max-height: 100px;
66 min-height: 100px;
67 background-color: rgb(230, 232, 230);
68 font-size: 22px;
69}
Note: See TracBrowser for help on using the repository browser.