-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (104 loc) · 2.23 KB
/
style.css
File metadata and controls
114 lines (104 loc) · 2.23 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
104
105
106
107
108
109
110
111
112
113
114
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
main {
width: 100%;
max-width: 48rem;
min-height: 100vh;
margin-inline: auto;
overflow: hidden;
border-radius: 0.5rem;
background: #ffffff;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
main > * + * {
border-top: 1px solid #e5e7eb;
}
header {
width: 100%;
padding: 1.25rem clamp(1rem, 0.5588rem + 2.3529vw, 1.5rem);
}
label {
display: block;
font-size: 0.875rem;
line-height: 1.25rem;
font-weight: 500;
color: #111827;
}
textarea {
display: block;
font-family: inherit;
padding: 0.375rem 0.75rem;
margin-top: 0.5rem;
border-radius: 0.375rem;
border: none;
outline: 1px solid #d1d5db;
outline-offset: -1px;
width: 100%;
font-size: 1rem;
line-height: 1.5rem;
color: #111827;
background: #ffffff;
field-sizing: content;
resize: none;
}
textarea:focus {
outline: 2px solid #4f46e5;
outline-offset: -2px;
}
p {
margin-top: 0.5rem;
font-size: 0.875rem;
line-height: 1.25rem;
color: #6B7280;
}
section {
width: 100%;
padding: clamp(1.25rem, 1.0294rem + 1.1765vw, 1.5rem)
clamp(1rem, 0.5588rem + 2.3529vw, 1.5rem);
overflow-y: auto;
}
#generate {
display: inline-flex;
flex-wrap: wrap;
gap: 0.5rem;
padding: 0.75rem;
width: 100%;
border-radius: 0.375rem;
box-shadow: inset 0 0 0 calc(1px + 0px) rgba(107, 114, 128, 0.1);
font-size: 0.75rem;
line-height: 1rem;
font-weight: 500;
color: #4b5563;
background: #f9fafb;
}
.tag {
display: inline-flex;
flex-direction: row-reverse;
justify-content: center;
align-items: center;
column-gap: 0.25rem;
padding: 0.25rem 0.5rem;
border-radius: 9999px;
box-shadow: inset 0 0 0 calc(1px + 0px) rgb(67, 56, 202, 0.1);
font-size: 0.875rem;
font-weight: 500;
color: #4338ca;
background: #eef2ff;
}
.hashtag {
width: 0.75rem;
height: 0.75rem;
color: #4338ca;
background: transparent;
border: none;
cursor: pointer;
}