-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRatingandfeedback.css
62 lines (54 loc) · 1.09 KB
/
Ratingandfeedback.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
body {
font-family: Arial, sans-serif;
background-image: url('https://media.istockphoto.com/id/1169630303/photo/blue-textured-background.jpg?b=1&s=170667a&w=0&k=20&c=tI2xFhXqXFqMM0IvxSYY3F7LIwv450h2ch3yD-lZ9HU=');
background-size: cover;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color:#F9EBEA ;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
h1 {
text-align: center;
}
form {
display: flex;
flex-direction: column;
}
label {
font-weight: bold;
margin-bottom: 10px;
}
input, select, textarea {
padding: 10px;
border: none;
border-radius: 5px;
margin-bottom: 20px;
}
button[type="submit"] {
background-color: #2772b7;
color: #fff;
padding: 10px;
border: none;
border-radius: 5px;
cursor: pointer;
}
button[type="submit"]:hover {
background-color:#2772b7;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #333;
color: #fff;
padding: 10px;
}
.navbar a {
color: #fff;
text-decoration: none;
padding: 10px;
}