Newer
Older
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
@import '../../styles/config/colors';
@import '../../styles/config/layout';
@import '../../styles/config/breakpoints';
@import '../../styles/config/typography';
.header {
height: $small-nav-height !important;
}
.content {
padding-top: $small-nav-height !important;
margin-top: 1rem !important;
background: #121212;
min-height: 100vh;
background: $dark-bg;
min-height: 100vh;
}
.searchField {
max-width: 750px;
width: 100%;
display: flex;
align-items: flex-end;
.inputGroup {
color: $text-grey;
font-size: 1rem;
margin-right: 2rem;
label {
font-weight: 700;
display: block;
margin-bottom: 0.5rem;
}
input {
box-sizing: border-box;
background: transparent;
border: 1px solid $text-dark;
border-radius: 4px;
height: 40px;
padding: 0 0.5rem;
width: 500px;
&:disabled {
opacity: 0.8;
cursor: not-allowed;
}
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
}
}
}
@include customCheckBox(1.45rem);
.footerButtons {
margin: auto;
padding: 1.5rem 0;
width: fit-content;
display: flex;
justify-content: center;
align-items: center;
.btnSelection {
position: relative;
span {
position: absolute;
font-size: 1rem;
padding-top: 4px;
right: -14px;
top: -14px;
width: 26px;
height: 26px;
border-radius: 50%;
display: block;
background: $grey-dark;
border: 1px solid $text-dark;
}
}
}
.modalContent {
padding: 0 1rem;
text-align: center;
font-size: 0.875rem;
div {
margin: 0.875rem 0;
}
.modalTitle {
font-size: 1rem;
font-weight: 700;
color: $gold;
}
.text1 {
color: $text-grey;
}
.text2 {
color: $text-dark;
}
}