-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNotehing.css
More file actions
38 lines (31 loc) · 929 Bytes
/
Notehing.css
File metadata and controls
38 lines (31 loc) · 929 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
.note-preview {
border-left: 5px solid;
padding: 10px;
margin: 5px 0;
background-color: #f8f9fa;
border-radius: 4px;
}
.note-preview .note-header {
font-weight: bold;
margin-bottom: 5px;
font-size: 14px;
}
.note-preview .note-body p {
margin: 0 0 10px 0;
font-style: italic;
color: #6c757d;
}
.note-preview .note-container {
border: 1px dashed #ced4da;
padding: 10px;
min-height: 40px;
background-color: #ffffff;
}
.note-preview.note-info { border-color: #0dcaf0; }
.note-preview.note-info .note-header { color: #087990; }
.note-preview.note-success { border-color: #198754; }
.note-preview.note-success .note-header { color: #0f5132; }
.note-preview.note-warning { border-color: #ffc107; }
.note-preview.note-warning .note-header { color: #997404; }
.note-preview.note-danger { border-color: #dc3545; }
.note-preview.note-danger .note-header { color: #842029; }