-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
47 lines (47 loc) · 771 Bytes
/
styles.css
File metadata and controls
47 lines (47 loc) · 771 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
#notes {
border: 1px solid #a3b7c5;
padding: 16px;
max-width: 75%;
margin: auto;
}
.note {
margin-top: 16px;
display: flex;
align-items: flex-start;
}
.inputs {
margin-bottom: 16px;
}
.text {
background: #af6eaf;
padding: 16px;
border-radius: 4px;
width: calc(100%);
}
input {
height: 32px;
border: 1px solid #a3b7c5;
padding: 0 8px;
border-radius: 6px;
margin-bottom: 16px;
width: calc(50% - 152px);
}
button, select {
height: 32px;
margin-left: 8px;
outline: none;
border: none;
border-radius: 4px;
font-weight: bold;
padding: 4px 16px;
color: azure;
}
.add {
background: #333399;
}
.delete {
background: red;
}
.edit, select {
background: #339933;
}