_note.scss
1.3 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
/** =====================
Note css start
========================== **/
.note-card {
padding-top: 0;
padding-bottom: 0;
.note-box-aside {
border-right: 1px solid #ddd;
.row {
padding: 20px 0;
display: flex;
align-items: center;
}
}
.Note-header {
padding: 20px 0;
}
.note-write {
position: relative;
&:before {
content: '';
position: absolute;
width: 0px;
top: 0;
left: 32px;
bottom: 0;
border-left: 1px solid $primary-color;;
}
&:after {
content: '';
position: absolute;
width: 0px;
top: 0;
left: 34px;
bottom: 0;
border-left: 1px solid $primary-color;
}
background:-webkit-linear-gradient(top, lighten($primary-color,15%) 0%, lighten($primary-color,30%) 5%) 0 0;
background-size:100% 35px;
}
#Note-pad {
border: none;
resize: none;
background: transparent;
padding:0px 20px 0 50px;
line-height: 35px;
}
.Note-created__on {
display: block;
}
}
.summernote-page .modal-footer{
margin:0 auto;
}
/**====== Note css end ======**/