source: phonelux-frontend/src/components/CheaperOffersComponent/CheaperOffersComponent.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: 709 bytes
Line 
1.cheaperoffers-modal-box{
2 position: absolute;
3 top: 50%;
4 left: 50%;
5 transform: translate(-50%, -50%);
6 box-shadow: 24;
7 background-color: white;
8 width: fit-content;
9 height: 500px;
10 overflow: scroll;
11 border: 1px solid black;
12}
13
14.cheaperoffers-table{
15 border-collapse: collapse;
16 width: 100%;
17}
18
19.cheaperoffers-table-head{
20 background-color: #a6c9ab;
21 font-size: 18px;
22 width: 100%;
23}
24
25.cheaperoffers-table-head th{
26 background-color: #a6c9ab;
27}
28
29.cheaperoffers-table-row{
30 width: 100%;
31}
32
33.cheaperoffers-table-row td{
34 text-align: center;
35 word-wrap: break-word;
36}
37
38.cheaperoffers-table-row:nth-of-type(even){
39 background-color: #eef2f0;
40}
41
42
43
Note: See TracBrowser for help on using the repository browser.