forked from Anishkagupta04/RAPIDOC-HEALTHCARE-WEBSITE-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrateus.css
109 lines (93 loc) · 1.73 KB
/
rateus.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
body {
font-family: Arial, sans-serif;
background-color: black;
color: #fff;
margin: 0;
padding: 0;
}
.header_container {
background-color: #022a2d;
opacity: 0.9;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: 85px;
margin: auto;
margin-top: 5px;
}
.img {
flex: 0 0 auto;
}
.nav_link li {
margin-right: 1px;
padding: 4px 6px;
display: inline-block;
}
.nav_link li a {
transition: all 0.3s ease 0s;
color: white;
text-decoration: none;
}
.container {
background-color: #022a2d;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
width: 450px;
margin: 20px auto;
transition: box-shadow 0.3s, transform 0.3s;
position: relative;
}
.container:hover {
box-shadow: 0 0 20px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 255, 255, 0.6);
transform: scale(1.05);
}
.container h2 {
color: white;
}
.rating {
margin: 20px 0;
}
.rating .star {
cursor: pointer;
font-size: 30px;
color: #ccc;
transition: color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.rating .star.selected {
color: #f7d32e;
transform: scale(1.2);
font-size: 33px;
}
.rating .star:hover {
color: #f7d32e;
}
textarea {
width: 90%;
height: 110px;
margin: 20px auto;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
transition: box-shadow 0.3s, transform 0.3s;
background-color: #fff;
color: #333;
}
textarea:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
transform: scale(1.02);
}
button {
background-color: #4bb6b7;
color: white;
padding: 10px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #3aa5a6;
}