-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.css
47 lines (36 loc) · 953 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
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,800;1,400&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
h1,
h2,
h3,
h4,
h5,
h6 {
@apply font-main font-bold text-red p-10;
}
a {
@apply font-main;
}
.container {
@apply w-2/3 mx-auto p-10 h-auto text-snow;
}
.btn {
@apply rounded-full bg-red text-snow py-2 px-6 text-2xl font-main font-bold cursor-pointer tracking-wider transition duration-500 ease-in-out transform hover:-translate-y-1 hover:scale-110;
}
.anchor {
@apply block h-10 bg-red text-snow my-2 px-5 leading-10 rounded-r-full hover:bg-cyan hover:text-darker;
}
.card {
@apply rounded bg-dark shadow-md overflow-hidden relative;
}
.highlight {
@apply rounded-lg bg-cyan text-darker font-bold px-2;
}
.form-container {
@apply rounded bg-darker shadow-md overflow-hidden relative;
}
.form-fields {
@apply bg-dark text-snow placeholder-secondary
}