-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
44 lines (29 loc) · 841 Bytes
/
index.css
File metadata and controls
44 lines (29 loc) · 841 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
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--vivid-pink : oklch(69.02% .277 332.77);
--pink-to-purple-vertical-gradient: linear-gradient( 0deg, oklch(53.18% .28 296.97) 0%, oklch(69.02% .277 332.77) 100% );
--pur-gra : linear-gradient( 0deg, oklch(53.18% .28 296.97) 0%, oklch(69.02% .277 332.77) 100% );
}
.text-primary {
background: var(--pur-gra) !important;
background-clip: text !important;
-webkit-background-clip: text !important;
color: transparent !important;
}
input:focus-visible {
outline: none !important;
}
body {
/* background-image: linear-gradient(90deg, #020024 0%, #090979 35%, #00d4ff 100%); */
background: #2C3940;
}
/* form */
.form-container {
width: 600px;
margin-top: 100px;
}
.w-fit {
width: fit-content;
}