-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
74 lines (64 loc) · 1.08 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container{
min-height: 100vh;
width: 100vw;
padding: 23px;
background-color: #282b35;
}
.header-title{
display: flex;
align-items: center;
padding: 10px;
background-color: rgb(71, 71, 71);
text-align: center;
color: rgb(7, 7, 7);
}
.header-title :nth-child(1){
font-size: 30px;
}
.header-title :nth-child(2){
color:#F9BD34;
margin-top: 10px;
}
#input-box{
border: 1px solid black;
padding: 23px;
}
#addTitle{
font-weight: bolder;
}
input, textarea{
width: 100%;
background-color: transparent;
border: none;
outline: none;
margin-top: 6px;
color: white;
}
button{
background: transparent;
color: white;
padding: 8px 12px;
border: 1px solid white;
}
#notes{
padding: 23px;
display: flex;
flex-wrap: wrap;
}
.note{
width: 300px;
color: #a1a0a0;
overflow-wrap: break-word;
margin: 12px;
padding: 12px;
border: 1px solid black;
background: transparent;
}
.deleteNote{
float: right;
}