-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
103 lines (89 loc) · 1.94 KB
/
Copy pathinput.css
File metadata and controls
103 lines (89 loc) · 1.94 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
@import "tailwindcss";
@theme {
--font-sans: InterVariable, Inter, ui-sans-serif, system-ui, sans-serif;
--font-serif: Georgia, Cambria, "Times New Roman", Times, serif;
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
:root {
font-feature-settings:
"liga" 1,
"calt" 1;
font-variant-ligatures: common-ligatures;
font-synthesis: style;
text-rendering: optimizeLegibility;
}
body {
background-color: #fafafa;
}
.card {
background-color: #ffffff;
border: 1px solid #e4e4e7;
border-radius: 0.75rem;
box-shadow:
0 1px 3px 0 rgba(0, 0, 0, 0.05),
0 1px 2px 0 rgba(0, 0, 0, 0.03);
}
.input-pure {
width: 100%;
background-color: #ffffff;
border: 1px solid #e4e4e7;
border-radius: 0.5rem;
padding: 0.5rem 0.75rem;
font-size: 0.875rem;
line-height: 1.25rem;
color: #09090b;
transition: all 0.15s ease;
}
.input-pure:focus {
outline: none;
border-color: #18181b;
box-shadow: 0 0 0 2px rgba(24, 24, 27, 0.08);
}
.input-pure::placeholder {
color: #a1a1aa;
}
.btn-pure {
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 0.5rem;
font-size: 0.875rem;
font-weight: 500;
height: 2.25rem;
padding-left: 1rem;
padding-right: 1rem;
background-color: #18181b;
color: #ffffff;
border: 1px solid transparent;
transition: all 0.15s ease;
cursor: pointer;
}
.btn-pure:hover {
background-color: #27272a;
}
.btn-pure:active {
transform: scale(0.98);
}
.btn-pure-outline {
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 0.5rem;
font-size: 0.875rem;
font-weight: 500;
height: 2.25rem;
padding-left: 1rem;
padding-right: 1rem;
border: 1px solid #e4e4e7;
background-color: #ffffff;
color: #18181b;
transition: all 0.15s ease;
cursor: pointer;
}
.btn-pure-outline:hover {
background-color: #f4f4f5;
border-color: #d4d4d8;
}
.btn-pure-outline:active {
transform: scale(0.98);
}