-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfoodFeedback.css
More file actions
101 lines (91 loc) · 1.53 KB
/
foodFeedback.css
File metadata and controls
101 lines (91 loc) · 1.53 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
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
body, h1, h2, p {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
align-items: center;
text-align: center;
}
.header-container h1 {
background-color: #66b5ff;
color: black;
text-align: center;
padding: 20px 0;
font-size: 2em;
}
.header-container p {
background-color: #f9f9f9;
color: #333;
padding: 20px;
align-items: center;
border: 2px solid #65B5FF;
text-align: center;
}
.content-container {
display: flex;
justify-content: space-between;
padding: 20px;
}
.section {
width: 30%;
text-align: center;
}
nav{
width: 100%;
position: sticky;
top: 0;
z-index: 1000;
background-color: #65B5FF;
}
.navbar {
display: flex;
justify-content: space-around;
align-items: center;
width: 100%;
padding: 10px 0;
}
.navbar a {
color: #333;
text-decoration: none;
padding: 14px 16px;
font-size: 17px;
}
.firstname{
text-align: left;
}
.lastname{
text-align: center;
}
.email{
text-align: right;
}
.button {
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
word-wrap: break-word;
display: inline-block;
font-size: 15px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}
.button1 {
background-color: white;
color: black;
border: 4px solid #65B5FF;
}
.button1:hover {
background-color: #65B5FF;
color: white;
}
.button2 {
background-color: white;
color: black;
border: 4px solid #65B5FF;
}
.button2:hover {
background-color: #65B5FF;
color: white;
}