source: src/main/resources/static/css/customer_admin.css@ 1413ee2

Last change on this file since 1413ee2 was 1413ee2, checked in by gjoko kostadinov <gjokokostadinov@…>, 6 months ago

Add all bug fixes.

  • Property mode set to 100644
File size: 865 bytes
Line 
1.rate{
2 border-bottom-right-radius: 12px;
3 border-bottom-left-radius: 12px;
4}
5
6.rating {
7 display: flex;
8 flex-direction: row-reverse;
9 justify-content: center
10}
11
12.rating>input {
13 display: none
14}
15
16.rating>label {
17 position: relative;
18 width: 1em;
19 font-size: 30px;
20 font-weight: 300;
21 color: #FFD600;
22 cursor: pointer
23}
24
25.rating>label::before {
26 content: "\2605";
27 position: absolute;
28 opacity: 0
29}
30
31.rating>label:hover:before,
32.rating>label:hover~label:before {
33 opacity: 1 !important
34}
35
36.rating>input:checked~label:before {
37 opacity: 1
38}
39
40.rating:hover>input:checked~label:before {
41 opacity: 0.4
42}
43
44
45.buttons{
46 top: 36px;
47 position: relative;
48}
49
50
51.rating-submit{
52 border-radius: 15px;
53 color: #fff;
54 height: 49px;
55}
56
57
58.rating-submit:hover{
59 color: #fff;
60}
61
62#my-reviews {
63 padding: 20px;
64}
Note: See TracBrowser for help on using the repository browser.