source: phonelux-frontend/src/components/PhoneOfferDetailsComponent/PhoneOfferDetailsComponent.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.9 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: 20px;
59 padding: 10px;
60 border: 1px solid rgb(199, 193, 193);
61 background-color: #B6E2C8;
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: 20px;
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
Note: See TracBrowser for help on using the repository browser.