-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRatingProfessor.css
51 lines (45 loc) · 991 Bytes
/
RatingProfessor.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
.rating-professor {
margin: 2rem auto;
padding: 1rem;
border: 1px solid #ddd;
border-radius: 4px;
width: fit-content;
}
.rating-professor h2 {
text-align: center;
margin-bottom: 1rem;
}
.rating-question {
margin-bottom: 0.5rem;
display: flex;
align-items: center;
}
.rating-question label {
flex: 1;
margin-right: 1rem;
}
.rating-question input {
width: 50px;
padding: 5px;
border: 1px solid #ccc;
border-radius: 3px;
text-align: center;
}
.rating-question span[outOf] {
font-size: 0.8rem;
color: #aaa;
margin-left: 5px;
}
button[type="submit"] {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin-top: 1rem;
cursor: pointer;
border-radius: 4px;
}