Newer
Older
@import 'color';
@import '../base/breakpoint';
html {
background: $app-background;
}
body {
background: $app-background;
overflow: unset !important;
}
.column {
display: flex;
flex-direction: column;
}
.row {
display: flex;
flex-direction: row;
}
.cozy-bar {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
[role='banner'] .coz-bar-container {
background-color: white;
@media #{$large-phone} {
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
background-color: unset;
}
}
.coz-bar-wrapper {
box-shadow: unset !important;
background: unset !important;
}
.header {
display: flex;
align-items: center;
flex-direction: column;
overflow: hidden;
width: 100%;
z-index: 18;
position: fixed;
top: 48px;
left: 0;
@media #{$large-phone} {
top: 0;
}
.header-bar {
background: linear-gradient(180deg, #000000 0%, rgba(27, 28, 34, 0) 70%);
height: 8px;
width: 100%;
}
.header-top {
background: radial-gradient(
74.83% 76.97% at 50% 13.64%,
#343641 0%,
#1b1c22 100%
);
width: 100%;
.header-text {
padding: 0 1rem 1rem 1rem;
color: $text-bright;
}
}
.header-content {
margin: 0 0 0 220px;
.header-text {
padding: 2rem 1rem;
}
.header-text-desktop {
display: block;
padding: 2rem 1.25rem;
color: $text-bright;
}
@media #{$tablet} {
margin: 0;
}
@media #{$large-phone} {
margin: 60px 0 0 0;
.header-text {
padding: 0 1rem 1rem 1rem;
color: $text-bright;
}
.header-text-desktop {
display: none;
}
}
}
}
.content-view {
margin-top: 116px;
@media #{$large-phone} {
margin-top: 0;
}
}
.content-view-loading {
height: 80vh;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: $text-bright;
.content-view-loading-text {
padding-top: 1rem;
margin: 0 2rem;
text-align: center;
}
.content-view-loading-button {
max-width: 50vw;
margin-top: 1rem;
}
}
/* width */
&::-webkit-scrollbar {
width: 10px;
}
/* Track */
&::-webkit-scrollbar-track {
background: #3e4045;
}
/* Handle */
&::-webkit-scrollbar-thumb {
background: #6f7074;
}