-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
65 lines (64 loc) · 1.39 KB
/
styles.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
* {
margin: 0; /* Resetting margin for all elements */
}
.mb-3 {
margin-bottom: 20px; /* Adjust the margin bottom as needed */
}
/* Internal CSS for reducing the size of text boxes */
.form-control-sm {
height: 30px;
padding: 3px 6px;
font-size: 14px;
line-height: 1.5;
border-radius: 4px;
}
.rating {
float: left;
border: none;
}
.rating:not(:checked) > input {
position: absolute;
top: -9999px;
clip: rect(0, 0, 0, 0);
}
.rating:not(:checked) > label {
float: right;
width: 1em;
padding: 0 0.1em;
overflow: hidden;
white-space: nowrap;
cursor: pointer;
font-size: 200%;
line-height: 1.2;
color: #ddd;
}
.rating:not(:checked) > label:before {
content: "★ ";
}
.rating > input:checked ~ label {
color: #f70;
}
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
color: gold;
}
.rating > input:checked + label:hover,
.rating > input:checked + label:hover ~ label,
.rating > input:checked ~ label:hover,
.rating > input:checked ~ label:hover ~ label,
.rating > label:hover ~ input:checked ~ label {
color: #ea0;
}
.rating > label:active {
position: relative;
}
.grey-bg {
background-color: #f0f0f0; /* Grey background color for even rows */
}
td {
width: 14%;
text-align: center;
}
textarea{
width: 100%;
}