forked from figma/plugin-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathui.css
More file actions
29 lines (29 loc) · 617 Bytes
/
ui.css
File metadata and controls
29 lines (29 loc) · 617 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
body {
font: 12px sans-serif;
text-align: center;
margin: 20px;
}
button {
border-radius: 5px;
background: white;
color: black;
border: none;
padding: 8px 15px;
margin: 0 5px;
box-shadow: inset 0 0 0 1px black;
outline: none;
}
#create {
box-shadow: none;
background: #18A0FB;
color: white;
}
input {
border: none;
outline: none;
padding: 8px;
}
input:hover { box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); }
button:focus { box-shadow: inset 0 0 0 2px #18A0FB; }
#create:focus { box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.3); }
input:focus { box-shadow: inset 0 0 0 2px #18A0FB; }