-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
95 lines (75 loc) · 1.22 KB
/
index.css
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
87
88
89
90
91
92
93
94
95
@tailwind base;
@tailwind components;
@tailwind utilities;
body {
font-family: 'Inter';
}
.body {
max-width: calc(100vw - 20rem)
}
.res-max-w-custom {
max-width: calc(100% - 144px);
}
.header {
background-color: rgb(25,201,100);
max-width: calc(100% - 25rem);
margin: 0 auto;
}
.curated {
overflow: scroll hidden;
}
.res-container {
margin-bottom: 2rem;
}
.ft-container {
display: flex;
justify-content: flex-start;
gap: 5rem;
padding: 3rem calc(10% - 36px);
}
li {
margin: 1rem 0;
}
.cards-container {
display: grid;
grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 954px) {
.cards-container {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 728px) {
.filter {
flex-direction: column;
}
.ft-container {
flex-direction: column;
gap: 2rem;
padding: 3rem 1rem;
}
.body {
max-width: calc(100vw - 7rem);
}
.cards-container {
grid-template-columns: repeat(1, 1fr);
}
.header {
max-width: none;
}
}
@media (max-width: 428px) {
.body {
max-width: calc(100vw - 2rem);
}
.cards-container {
display: block;
}
.main-card {
width: 100%;
min-width: 0;
}
}
.cards-main {
--nextui-box-shadow-medium: 0
}