-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathtailwind_classes.css
72 lines (68 loc) · 2.58 KB
/
tailwind_classes.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
/* Please note this document will be updated as time goes by. Thank you */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
body {
font-family: "Poppins", sans-serif;
}
}
@layer components {
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"], textarea {
@apply block w-full rounded-md border-0 p-2 text-slate-900 shadow-sm ring-1 ring-inset ring-slate-300 placeholder:text-slate-500 focus:ring-2 focus:ring-inset focus:ring-blue-500 sm:text-sm bg-white;
}
label {
@apply block text-sm font-medium leading-6 text-slate-900 first-letter:capitalize;
}
header {
@apply bg-slate-800 shadow-md;
}
nav {
@apply p-5 max-w-screen-lg mx-auto flex items-center justify-between;
}
main {
@apply max-w-screen-lg mx-auto;
}
.primary-btn {
@apply flex w-full justify-center rounded-md bg-blue-500 px-3 py-1.5 text-sm font-semibold leading-6 text-white shadow-sm hover:bg-blue-600 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600 disabled:bg-slate-400 disabled:cursor-wait;
}
.text-link {
@apply font-semibold text-blue-500 hover:text-blue-600;
}
.nav-link {
@apply text-slate-200 hover:bg-slate-700 hover:text-white rounded-md px-3 py-2 text-sm font-medium;
}
.title {
@apply my-6 text-center text-3xl font-bold leading-9 text-slate-900;
}
.error {
@apply text-xs text-red-500 mt-1;
}
table {
@apply w-full text-sm text-left rounded-md shadow-lg overflow-hidden mb-6 table-auto bg-white;
}
thead {
@apply text-xs uppercase font-medium border-b border-slate-100 text-slate-600;
}
tbody tr {
@apply hover:bg-slate-100 w-full p-0;
}
th {
@apply px-6 py-4;
}
td {
@apply px-6 py-4 border-b border-slate-100;
}
.avatar {
@apply w-8 h-8 rounded-full overflow-hidden object-center object-cover;
}
.round-btn {
@apply w-8 h-8 overflow-auto rounded-full bg-slate-100 focus:outline-none focus:ring-1 focus:ring-slate-100 focus:ring-offset-2 focus:ring-offset-slate-800;
}
}