Last change
on this file since f08e256 was d7b7f00, checked in by Gorazd Biskoski <gorazdbiskoskii@…>, 4 weeks ago |
Add project
|
-
Property mode
set to
100644
|
File size:
2.0 KB
|
Line | |
---|
1 | .reviewContainer {
|
---|
2 | max-width: 600px;
|
---|
3 | margin: 5em auto;
|
---|
4 | padding: 2em;
|
---|
5 | background-color: #f9f9f9;
|
---|
6 | border-radius: 15px;
|
---|
7 | box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
|
---|
8 | text-align: center;
|
---|
9 | }
|
---|
10 |
|
---|
11 |
|
---|
12 | h2 {
|
---|
13 | font-size: 2em;
|
---|
14 | color: #444;
|
---|
15 | margin-bottom: 1.5em;
|
---|
16 | }
|
---|
17 |
|
---|
18 |
|
---|
19 | .starRating {
|
---|
20 | display: flex;
|
---|
21 | justify-content: center;
|
---|
22 | margin-bottom: 20px;
|
---|
23 | }
|
---|
24 |
|
---|
25 |
|
---|
26 | .star {
|
---|
27 | font-size: 2.5em;
|
---|
28 | color: #ddd;
|
---|
29 | transition: color 0.2s ease-in-out;
|
---|
30 | cursor: pointer;
|
---|
31 | }
|
---|
32 |
|
---|
33 |
|
---|
34 | .active {
|
---|
35 | color: #FFA550;
|
---|
36 | }
|
---|
37 |
|
---|
38 |
|
---|
39 | .reviewComment {
|
---|
40 | width: 100%;
|
---|
41 | height: 120px;
|
---|
42 | padding: 12px;
|
---|
43 | border-radius: 10px;
|
---|
44 | border: 1px solid #ddd;
|
---|
45 | font-size: 1.1em;
|
---|
46 | margin-bottom: 20px;
|
---|
47 | box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
---|
48 | resize: none;
|
---|
49 | outline: none;
|
---|
50 | transition: border-color 0.3s ease;
|
---|
51 | }
|
---|
52 |
|
---|
53 |
|
---|
54 | .reviewComment:focus {
|
---|
55 | border-color: #FFA550;
|
---|
56 | }
|
---|
57 |
|
---|
58 |
|
---|
59 | .confirmButton {
|
---|
60 | padding: 0.6em 1.5em;
|
---|
61 | background-color: #FFA550;
|
---|
62 | color: #444;
|
---|
63 | border: none;
|
---|
64 | border-radius: 14px;
|
---|
65 | font-size: 1.3em;
|
---|
66 | font-weight: bold;
|
---|
67 | cursor: pointer;
|
---|
68 | transition: background-color 0.3s ease;
|
---|
69 | box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
|
---|
70 | }
|
---|
71 |
|
---|
72 | .confirmButton:hover {
|
---|
73 | background-color: #FF8C00;
|
---|
74 | }
|
---|
75 |
|
---|
76 | .modal {
|
---|
77 | position: fixed;
|
---|
78 | z-index: 9999;
|
---|
79 | left: 0;
|
---|
80 | top: 0;
|
---|
81 | width: 100%;
|
---|
82 | height: 100%;
|
---|
83 | background-color: rgba(0, 0, 0, 0.5);
|
---|
84 | display: flex;
|
---|
85 | justify-content: center;
|
---|
86 | align-items: center;
|
---|
87 | }
|
---|
88 |
|
---|
89 | .modalContent {
|
---|
90 | background-color: white;
|
---|
91 | padding: 30px;
|
---|
92 | border-radius: 10px;
|
---|
93 | text-align: center;
|
---|
94 | box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
|
---|
95 | }
|
---|
96 |
|
---|
97 | .modalContent h3 {
|
---|
98 | font-size: 1.2em;
|
---|
99 | color: #444;
|
---|
100 | }
|
---|
101 |
|
---|
102 | @media (max-width: 768px) {
|
---|
103 | .reviewContainer {
|
---|
104 | padding: 1.5em;
|
---|
105 | max-width: 90%;
|
---|
106 | }
|
---|
107 |
|
---|
108 | h2 {
|
---|
109 | font-size: 1.6em;
|
---|
110 | }
|
---|
111 |
|
---|
112 | .star {
|
---|
113 | font-size: 2em;
|
---|
114 | }
|
---|
115 |
|
---|
116 | .confirmButton {
|
---|
117 | font-size: 1.1em;
|
---|
118 | padding: 0.6em 1.2em;
|
---|
119 | }
|
---|
120 |
|
---|
121 | .reviewComment {
|
---|
122 | height: 100px;
|
---|
123 | }
|
---|
124 | }
|
---|
125 | |
---|
Note:
See
TracBrowser
for help on using the repository browser.