-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.css
More file actions
49 lines (36 loc) · 795 Bytes
/
input.css
File metadata and controls
49 lines (36 loc) · 795 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
/*
@layer theme, custom-base, custom-components, custom-utilities;
@import "tailwindcss/theme.css" layer(theme);
@import "tailwindcss/preflight.css" layer(custom-base);
@import "tailwindcss/utilities.css" layer(custom-utilities);
*/
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind theme;
@tailwind flex;
@theme {
}
html {
background-color: #eee;
}
div#content div div {
padding: 5px;
margin: 5px;
background-color: orange;
}
div#content div div span,
div#content div div span {
color: white;
font-weight: bold;
}
div#content div div input,
div#content div div input {
border: 1px solid black;
padding: 2px;
}
div#content div div input.red,
div#content div div input.red {
background-color: palevioletred;
color: white;
}