forked from shaun099/PACE
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinput.css
46 lines (40 loc) · 896 Bytes
/
input.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
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cookie&family=Jost:ital,wght@0,100..900;1,100..900&family=Mogra&family=Monoton&family=Permanent+Marker&family=Rubik+80s+Fade&display=swap');
@tailwind base;
@tailwind components;
@tailwind utilities;
body{
@apply bg-black text-white font-Jost tracking-wider;
}
section{
@apply py-20 md:py-28;
}
h1{
@apply text-3xl md:text-4xl lg:text-5xl font-bold;
}
h2{
@apply text-2xl md:text-3xl lg:text-4xl ;
}
h3{
@apply text-xl md:text-2xl lg:text-3xl ;
}
.nav-link{
@apply text-lg font-bold duration-300;
}
.nav-link:hover{
@apply text-blue-600;
}
.title{
@apply font-bold text-blue-600;
}
.active{
@apply text-blue-600;
}
.btn{
@apply bg-blue-600 rounded-md border border-blue-600 px-5 py-2 duration-300;
}
.btn span{
@apply text-white font-bold;
}
.btn:hover{
@apply opacity-80;
}