-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
59 lines (57 loc) · 944 Bytes
/
app.css
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
* {
box-sizing: border-box;
}
body {
font-family: Arial;
}
.new-note{
width: 300px;
margin: 0 auto;
}
.new-note input,
.new-note textarea,
.new-note button{
font-family: Arial;
padding: 5px 10px;
display: block;
width: 100%;
margin-bottom: 15px;
}
.notes {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.note {
background-color: #ffda00;
color: black;
width: 300px;
display: inline-block;
margin: 10px;
padding: 10px;
position: relative;
min-height: 100px;
}
.note .title{
margin-bottom: 10px;
font-weight: bold;
}
.note .title a {
color: black;
}
.note .close {
position: absolute;
right: 10px;
top: 10px;
background-color: transparent;
border: none;
}
.note small {
position: absolute;
bottom: 10px;
right: 10px;
margin-top: 10px;
display: block;
text-align: right;
font-style: italic;
}