-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathglobal.css
More file actions
72 lines (60 loc) · 949 Bytes
/
global.css
File metadata and controls
72 lines (60 loc) · 949 Bytes
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
h1 {
font-family: "Courier New", Courier, monospace;
}
/* Tailwind CSS classes */
.bg-blue-500 {
background-color: #3b82f6;
}
.mt-4 {
margin-top: 1rem;
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
--tw-space-x-reverse: 0;
margin-right: calc(1rem * var(--tw-space-x-reverse));
margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.text-white {
color: #ffffff;
}
.p-4 {
padding: 1rem;
}
.rounded {
border-radius: 0.25rem;
}
.w-full {
width: 100%;
}
.max-w-full {
max-width: 100%;
}
.h-auto {
height: auto;
}
.px-4 {
padding-left: 1rem;
padding-right: 1rem;
}
.py-2 {
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
.bg-red-500 {
background-color: #ef4444;
}
.flex {
display: flex;
}
.flex-col {
flex-direction: column;
}
.items-center {
align-items: center;
}
.justify-center {
justify-content: center;
}
.h-screen {
height: 100vh;
}
/* Add more Tailwind CSS classes as needed */