Newer
Older
.fb-root {
overflow-y: auto;
min-width: 70%;
padding: 0.5rem 0.5rem 0rem 0.5rem;
display: flex;
justify-content: center;
}
.fb-content {
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
display: flex;
flex-direction: column;
.fb-content-success {
color: $grey-bright;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.fb-content-error {
color: $grey-bright;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.fb-icon {
display: flex;
justify-content: center;
margin: 0 0 1.5rem 0;
}
.fb-label {
margin: 0.5rem 0 0 0;
}
.fb-selector {
margin: 0.5rem 0;
display: flex;
flex-direction: row;
align-content: space-around;
justify-content: space-around;
padding: 0;
border: none;
.fb-selector-item {
height: 3.125rem;
width: 3.125rem;
.fb-selector-item-label {
color: $grey-bright;
}
.fb-selector-item-selectedlabel {
color: $white;
}
}
}
.fb-form {
margin: 0.5rem 0;
border: 1px solid $grey-dark;
border-radius: 4px;
color: $grey-bright;
background: rgba(0, 0, 0, 0.3);
padding: 0 1rem;
outline: none;
}
.fb-form:focus {
border: 1px solid $gold-shadow;
}
.fb-textarea {
height: 8.725rem;
padding: 0.5rem 1rem;
resize: none;
}
.fb-input {
height: 2rem;
}
button.btn-highlight {
max-width: 9.375rem;
align-self: center;
margin-top: 1rem;
}
}
}
.upload-label {
appearance: none;
padding: 0.5rem;
text-align: center;
max-width: 180px;
@include button(
transparent,
rgba($grey-bright, 0.7),
1px solid $grey-dark,
transparent
);
background-color: rgba($grey-dark, 0.2);
transition: all 300ms ease;
&:hover {
opacity: 0.7;
}
}
.fileName {
display: flex;
justify-content: space-between;
padding: 0 0.5rem;
color: $grey-bright;
border: solid 1px $grey-dark;
border-radius: 3px;
margin: 0.5rem 0;
align-items: center;
}
#accessibility-title {
display: none;