-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathApp.css
More file actions
86 lines (72 loc) · 1.22 KB
/
App.css
File metadata and controls
86 lines (72 loc) · 1.22 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
.App-logo {
margin: 10px auto;
padding: 20px 0;
width: 144px;
}
.App-logo img {
object-fit: cover;
width: 100%;
}
.App-logo:hover {
cursor: pointer;
}
.App-title {
color: var(--theme-body-txt);
margin-top: 0.6rem;
}
.App-content {
background-color: var(--theme-body-bg);
color: var(--theme-body-txt);
display: flex;
flex-direction: column;
font-size: calc(10px + 2vmin);
min-height: 100vh;
padding: 16px;
text-align: left;
}
/*----------*/
.App-main {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.App-wrapper {
width: 100%;
max-width: 90rem;
margin: 0 auto;
padding: 0 0.5em;
}
.App-results {
flex-shrink: 2;
width: 100%;
}
.App-category {
margin-bottom: 25px;
width: 100%;
}
@media screen and (min-width: 55rem){
.App-main{
flex-direction: initial;
}
.App-category{
position: sticky;
top: var(--search-size-mx-h);
width: 40%;
max-width: 300px;
}
}
.btn {
border: 1px solid transparent;
padding: .5rem 1rem;
background-color: var(--brand-color_3);
color: var(--theme-body-txt);
cursor: pointer;
font-size: 1rem;
}
.btn[disabled] {
opacity: .3;
pointer-events: none;
}
.btn:hover {
background-color: var(--brand-color_6);
}