source: phonelux-frontend/src/components/OfferReportsComponent/OfferReportsComponent.css@ 47f4eaf

Last change on this file since 47f4eaf was 47f4eaf, checked in by Marko <Marko@…>, 20 months ago

Final features implemented

  • Property mode set to 100644
File size: 1.6 KB
Line 
1.offerreports-section-header{
2 background-color: #B6E2C8;
3 justify-content: center;
4 align-content: center;
5 margin-top: -30px;
6 width: 100%;
7 display: flex;
8 font-size: 18px;
9}
10.offerreports-section-header-text{
11 width: fit-content;
12}
13
14.offerreports-section-table-row:nth-of-type(even){
15 background-color: #eef2f0;
16}
17
18.offerreports-section-table{
19 border-collapse: collapse;
20 width: 100%;
21 table-layout: fixed;
22}
23
24.offerreports-section-table-row{
25 border: 1px solid gainsboro;
26 padding: 20px ;
27 font-size: 18px;
28}
29
30.offerreports-section-table td{
31 text-align: center;
32 word-wrap: break-word;
33}
34
35.offerreports-section-table-head{
36 background-color: #a6c9ab;
37 font-size: 22px;
38}
39
40.offerreports-section-table-head th{
41 word-wrap: break-word;
42 width: 100%;
43}
44
45.reportoffer-removeall-button{
46 font-weight: bold;
47 font-size: 15px;
48 width: 80%;
49 border-radius: 20px;
50 border: 2px solid red;
51 background-color: rgb(243, 203, 203);
52}
53
54.reportoffer-removeall-button:hover{
55 cursor: pointer;
56 background-color: rgb(228, 179, 179);
57 box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
58 transition: box-shadow 0.5s, background-color 0.5s ;
59}
60
61.no-offerreports-message{
62 text-align: center;
63 background-color: #a6c9ab;
64 padding: 10px;
65 border-radius: 50px;
66 border: 1px solid black;
67 width: fit-content;
68}
69
70.no-offerreports-wrapper{
71 margin-top: 100px;
72 display: flex;
73 justify-content: center;
74 width: 100%;
75}
76
77.offerreports-pagination-wrapper{
78 margin-top: 40px;
79 display: flex;
80 justify-content: center;
81 margin-bottom: 30px;
82}
Note: See TracBrowser for help on using the repository browser.