source: phonelux-frontend/src/components/PhoneOfferDetailsComponent/PhoneOfferDetailsComponent.css@ d66b8eb

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

Component for editing offers added

  • Property mode set to 100644
File size: 2.7 KB
Line 
1.phone-offer-details-main{
2 width: 100%;
3}
4
5.phone-offer-details-table th{
6 text-align: center;
7 font-size: 38px;
8 padding: 20px;
9}
10
11.phone-offer-details-table thead tr{
12 background-color: #a6c9ab;
13}
14
15.phone-offer-details-table-row:nth-of-type(even){
16 background-color: #eef2f0;
17}
18
19.phone-offer-details-table-row{
20 border: 1px solid gainsboro;
21}
22
23.phone-offer-details-table{
24 border-collapse: collapse;
25 width: 80%;
26 table-layout: fixed;
27}
28
29.phone-offer-details-table-row td{
30 text-align: center;
31 word-wrap: break-word;
32 font-size: 22px;
33 padding: 20px;
34}
35
36.phone-offer-details-table-wrapper{
37 display: flex;
38 justify-content: center;
39 margin-top: 30px;
40}
41
42.phone-offer-details-table-section{
43 display: flex;
44 justify-content: center;
45 margin-bottom: 50px;
46}
47
48.phone-offer-details-table-row td a{
49 text-decoration: none;
50}
51
52.phone-offer-details-table-row td a:hover{
53 color: rgb(40, 117, 40);
54}
55
56.phone-offer-details-last-updated-header{
57 width: 25%;
58 margin-left: 5%;
59 padding: 10px;
60 border: 1px solid rgb(199, 193, 193);
61 background-color: #dadedc;
62 border-radius: 50px;
63 text-align: center;
64}
65
66.phone-offer-details-last-updated-wrapper{
67 display: flex;
68 width: 100%;
69 justify-content: start;
70 align-items: center;
71}
72
73.phone-offer-details-edit-header{
74 width: 100%;
75 margin-left: 5%;
76 padding-top: 10px;
77 border: 1px solid black;
78 background-color: rgb(232, 243, 121);
79 border-radius: 30px;
80 text-align: center;
81 padding: 10px;
82}
83
84.phone-offer-details-edit-header:hover{
85 cursor: pointer;
86 background-color: rgb(212, 219, 140);
87 box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
88 transition: box-shadow 0.5s, background-color 0.5s ;
89}
90
91.link-offer-edit{
92 width: 15%;
93 height: fit-content;
94 text-decoration: none;
95 display: flex;
96}
97
98.validate-offer-button{
99 font-size: 17px;
100 padding: 10px;
101 background-color: rgb(170, 211, 240);
102 border-radius: 30px;
103 border: 1px solid black;
104 margin-left: auto;
105 margin-right: 10%;
106 width: 15%;
107 font-weight: bold;
108 font-size: 18px;
109 text-align: center;
110}
111
112.validate-offer-button:hover{
113 cursor: pointer;
114 background-color: rgb(149, 187, 215);
115 box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
116 transition: box-shadow 0.5s, background-color 0.5s ;
117}
118
119.offer-valid-header{
120 font-size: 17px;
121 padding: 10px;
122 background-color: #96d5b0;
123 border-radius: 20px;
124 border: 1px solid black;
125 margin-left: auto;
126 margin-right: 10%;
127 text-align: center;
128 width: 15%;
129 font-weight: bold;
130 font-size: 19px;
131}
132
133
Note: See TracBrowser for help on using the repository browser.