-
Notifications
You must be signed in to change notification settings - Fork 31
/
reset.css
69 lines (59 loc) · 990 Bytes
/
reset.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
.primo-reset {
@tailwind base;
direction: ltr;
color-scheme: dark;
}
button,
a {
cursor: pointer;
}
body {
margin: 0;
}
.primo-input {
appearance: none;
border: 0;
background-color: transparent;
font-size: inherit;
background: var(--color-white);
padding: 0.5rem 0.75rem;
width: 100%;
/* &:focus {
box-shadow: 0 0 0 1px var(--color-primored);
border: 0;
}
&:placeholder {
color: var(--color-gray-5);
} */
}
.primo-modal {
color: var(--color-gray-1);
/* background: var(--color-gray-9); */
padding: 1rem;
border-radius: var(--primo-border-radius);
margin: 0 auto;
width: 100vw;
}
.primo-heading-xl {
margin-bottom: 0.5rem;
font-size: 1.25rem;
line-height: 1.75rem;
font-weight: 700;
}
.primo-heading-lg {
margin-bottom: 0.25rem;
font-size: 1.1rem;
line-height: 1.5rem;
font-weight: 700;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border-width: 0;
}