-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.css
53 lines (42 loc) · 1.07 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
@tailwind base;
@tailwind components;
@tailwind utilities;
.container {
@apply mt-24 min-h-[77vh] min-w-full;
}
.card-container {
@apply px-2.5 py-5 m-4 rounded-md overflow-hidden shadow bg-white;
}
.card-container-title {
@apply text-3xl leading-4 justify-center text-title text-center font-bold;
}
.btn {
@apply h-[30px] text-blue-dark rounded-md outline-none border border-yellow text-base;
}
.btn--primary {
@apply bg-yellow ;
}
.btn--secondary {
@apply bg-white;
}
.nav--btn {
@apply w-20 h-8 rounded-md basis-16 bg-white text-blue-dark outline-none hover:bg-yellow hover:text-blue-dark text-base;
}
.icon--i {
@apply text-white rounded-[2.6rem] flex text-[1.4rem] w-[2.6rem] h-[2.6rem] leading-[3rem] text-center select-none mt-0 mr-[5px] mb-2.5;
}
.shimmer-w60 {
@apply w-3/5 mt-2.5 h-[15px] bg-bio;
}
.shimmer-w40 {
@apply w-2/5 mt-2.5 h-[15px] bg-bio;
}
.shimmer-w20 {
@apply w-1/5 mt-1 h-[15px] bg-bio;
}
.error-text {
@apply text-red text-xs;
}
.active {
@apply left-0 w-[300px] h-[calc(100%-65px)] bg-white fixed top-[70px] flex-col py-0 pl-[30px];
}