-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathNoteManager.scss
More file actions
88 lines (75 loc) · 1.67 KB
/
NoteManager.scss
File metadata and controls
88 lines (75 loc) · 1.67 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
.tc-notes-wrapper {
.new-note-btn {
width: 200px;
display: block;
margin: 0 auto 20px;
background-color: #FFF;
padding: 10px 32px;
border: 1px solid #e0e0e0;
font-size: 26px;
outline: 0;
transition: all 0.3s;
cursor: pointer;
font-family: 'Caveat', cursive;
&:hover {
box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
}
&:active {
position: relative;
top: 1px;
}
}
.tc-notes {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin: 0 auto;
.tc-note {
background-color: #f0c806;
border-radius: 8px;
width: 280px;
margin: 0 10px 20px;
box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.2);
transition: all 0.5s;
cursor: pointer;
font-family: 'Caveat', cursive;
.tc-note-header {
padding: 10px 16px 0;
.tc-note-close {
display: inline-block;
width: 24px;
height: 24px;
border-radius: 50%;
line-height: 24px;
text-align: center;
transition: all 0.3s;
&:hover {
background-color: rgba(0, 0, 0, 0.2);
}
&:focus {
box-shadow: inset 2px 3px 0px rgba(0, 0, 0, 0.8);
}
}
.tc-note-close {
float: right;
}
}
.tc-note-title,
.tc-note-body {
outline: 0;
}
.tc-note-title {
font-size: 24px;
padding: 10px 16px;
font-weight: bold;
}
.tc-note-body {
font-size: 20px;
padding: 10px 16px 16px;
}
&:hover {
box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.3);
}
}
}
}