-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeed.css
More file actions
68 lines (61 loc) · 1.3 KB
/
feed.css
File metadata and controls
68 lines (61 loc) · 1.3 KB
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
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: url('canteen-background.jpg') no-repeat center center fixed;
background-size: cover;
color: #fff;
margin: 0;
padding: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
background-color: rgba(0, 0, 0, 0.7);
padding: 2rem 3rem;
border-radius: 15px;
text-align: center;
box-shadow: 0 0 15px rgba(0,0,0,0.5);
max-width: 500px;
width: 90%;
}
h1 {
font-size: 2rem;
margin-bottom: 1rem;
}
p {
font-size: 1.1rem;
margin-bottom: 2rem;
}
#feedbackBtn {
padding: 0.8rem 1.5rem;
font-size: 1.1rem;
background-color: #9ac148;
color: white;
border: none;
border-radius: 10px;
cursor: pointer;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
transition: background-color 0.3s ease;
}
#feedbackBtn:hover {
background-color: #7ba331;
}
.back-btn, .done-btn {
position: fixed;
bottom: 20px;
padding: 10px 20px;
font-size: 1em;
border: none;
border-radius: 6px;
color: white;
cursor: pointer;
}
.back-btn {
left: 20px;
background-color: #607d8b;
}
.done-btn {
right: 20px;
background-color: #388e3c;
}