-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeneral-feedback.css
More file actions
90 lines (78 loc) · 1.39 KB
/
general-feedback.css
File metadata and controls
90 lines (78 loc) · 1.39 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
body, h1, h2, p {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
align-items: center;
text-align: center;
}
.header-container h1 {
background-color: #65B5FF;
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;
}
section {
display: inline-block;
width: 30%;
text-align: center;
}
.feedback-text {
background-color: #f9f9f9;
color: black;
padding: 20px;
text-align: center;
}
.feedback-info {
font-weight: bold;
text-align: left;
padding: 20px;
}
.feedback-form {
color: black;
padding: 20px;
}
.button {
border: none;
color: white;
padding: 10px 15px;
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: 2.5px solid #65B5FF;
}
.button1:hover {
background-color: #65B5FF;
color: white;
}
.button-container {
text-align: center;
}
/* Home button */
.material-symbols-outlined{
position: fixed;
bottom: 10px;
left: 10px;
color: #65B5FF;
border: none;
background: none;
padding: 10px 10px;
cursor: pointer;
}