-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.css
55 lines (40 loc) · 849 Bytes
/
tailwind.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
@tailwind base;
/* prettier-ignore */
header {
background: linear-gradient(
45deg,
#613b7d 0%,
#613b7d 18%,
#694685 18%,
#694685 34%,
#72518c 34%,
#72518c 50%,
#7b5b93 50%,
#7b5b93 66%,
#84669a 66%,
#84669a 82%,
#8d71a1 82%,
#8d71a1 100%
);
}
/* prettier-ignore */
footer {
background: linear-gradient(
-225deg,
#2d799f 0%,
#2d799f 18%,
#3780a4 18%,
#3780a4 34%,
#4286a9 34%,
#4286a9 50%,
#4c8dad 50%,
#4c8dad 66%,
#5794b2 66%,
#5794b2 82%,
#619bb7 82%,
#619bb7 100%
);
}
/* Custom base styles must come before components and utilities to avoid specificity issues */
@tailwind components;
@tailwind utilities;