-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.css
More file actions
63 lines (53 loc) · 1.28 KB
/
feedback.css
File metadata and controls
63 lines (53 loc) · 1.28 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
.feedback-section {
background-color: #1880bd1f;
margin-top: 1rem;
padding: 0.75rem;
border-radius: 0.25rem;
font-family: var(--body-font-family);
font-weight: var(--body-font-weight);
}
.feedback-section-title {
font-family: var(--header-font-family);
font-weight: var(--heading-font-weight);
}
.feedback-form-button,
.feedback-form-submit-button {
margin: 20px 10px 20px 0;
height: 2rem;
width: 7.5rem;
color: var(--feedback-button-font-color);
background: var(--feedback-button-background);
border-radius: calc(1.75rem / 2);
border-style: solid;
border-color: var(--feedback-button-border-color);
}
.feedback-form-submit-button {
width: 10rem;
}
.feedback-form-button.selected,
.feedback-form-submit-button.selected {
color: var(--feedback-button-font-color-selected);
border-color: var(--feedback-button-border-color-selected);
}
.feedback-form-text {
display: flex;
flex-direction: column;
}
.feedback-form-text.hide {
display: none !important;
}
.feedback-form-text textarea {
resize: vertical;
border-style: none;
}
.feedback-form-submit {
display: flex;
flex-direction: row;
align-items: center;
}
.feedback-form-thank-you {
color: var(--feedback-thank-you-font-color);
}
.feedback-form-thank-you.hide {
display: none !important;
}