-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
102 lines (88 loc) · 1.46 KB
/
Copy pathindex.css
File metadata and controls
102 lines (88 loc) · 1.46 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
* {
box-sizing: border-box;
border-radius: 7px;
}
body {
margin: 0;
padding: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
input,
textarea {
outline: none;
resize: none;
}
.notes-list {
display: flex;
flex-wrap: wrap;
padding: 10px;
margin: 0;
}
.app-header__title {
margin: 10px 20px 0px;
font-family: Arial, sans-serif;
}
.app-header__controls {
display: flex;
align-items: center;
margin: 10px 0 0 10px;
}
.search,
.add-new {
font-size: 14px;
padding: 5px;
margin: 8px;
}
.search {
flex-grow: 1;
max-width: 300px;
}
.add-new {
/* border-radius: 5px; */
cursor: pointer;
padding: 8px;
font-weight: bolder;
background-color: #eee;
outline: none;
}
.note {
font-family: "Permanent Marker", cursive;
width: 200px;
height: 200px;
margin: 10px;
background-color: lightyellow;
/* border: 1px solid grey; */
box-shadow: 2px 2px 3px lightgrey;
/* border-radius: 5px; */
display: flex;
flex-direction: column;
position: relative;
}
.note__title,
.note__description {
font-family: "Permanent Marker", cursive;
width: 100%;
padding: 8px 14px;
background: transparent;
}
.note__title {
font-size: 16px;
font-weight: bold;
}
.note__description {
flex-grow: 1;
font-size: 14px;
}
.note__delete {
position: absolute;
top: 0px;
right: 0px;
font-size: 20px;
color: lightgrey;
padding: 5px;
}
.note__delete:hover {
color: black;
cursor: pointer;
}