-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
109 lines (93 loc) · 1.33 KB
/
style.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
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
103
104
105
106
107
108
109
html {
font-family: sans-serif;
}
body {
/* margin: 0 auto; */
/* max-width: 800px; */
background: lightyellow;
background-position: 50%;
background-size: cover;
}
header,
footer {
background-color: #00626f;
color: white;
line-height: 70px;
padding: 0 20px;
}
.new-note {
padding: 20px;
}
.note-display {
padding: 20px;
display: flex;
flex-direction: row;
}
.new-note {
background: #ddd;
}
h1 {
margin: 0;
text-align: center;
}
h3 {
margin: 0;
}
p {
margin: 0;
margin-top: 5px;
font-size: 13px;
}
ul {
list-style-type: none;
padding: 0;
margin: 8px 0;
}
div {
margin-bottom: 10px;
}
.notes-card {
margin: 10px;
padding: 10px;
background: white;
position: relative;
}
.delete-btn {
position: absolute;
top: 0;
right: 0;
padding: 1px 5px;
margin: 5px;
}
.list-container {
width: 270px;
height: auto;
min-height: 600px;
background-color: #ebecf0;
border-radius: 3px;
margin: 0 0 0 10px;
position: relative;
}
.list-header-text {
margin: 14px 14px 0px 14px;
}
.title-list {
color: #00626f;
font-size: 15px;
font-weight: bold;
margin-top: 5px;
}
button {
background: #00626f;
padding: 5px;
font-size: 15px;
color: white;
font-weight: bold;
margin-top: 5px;
border: none;
border-radius: 4px;
}
.add-btn {
width: 90%;
margin: 10px 14px;
}