-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (44 loc) · 713 Bytes
/
style.css
File metadata and controls
46 lines (44 loc) · 713 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
39
40
41
42
43
44
45
46
body {
background-color: #ece6d6;
font-family: 'Noto Sans JP', sans-serif;
}
header {
text-align: center;
}
.notes-grid {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.notes {
display: flex;
flex-direction: column;
width: 200px;
min-height: 200px;
border: 1px solid #ccc;
background-color: #f4f1e7;
margin: 15px;
padding: 10px;
}
.notes p {
max-height: 50%;
justify-content: center;
align-self: center;
}
button {
margin-bottom: 5px;
background-color: #eee;
border-radius: 25px;
height: 30px;
border: 1px solid #333;
}
button:hover{
cursor: pointer;
background-color: #bbb;
}
.add-content {
display: none;
}
.selected {
border: 1px solid blue;
}