-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
72 lines (63 loc) · 1.2 KB
/
index.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400&display=swap');
* {
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
margin: 0;
display: flex;
flex-wrap: wrap;
padding: 3rem;
background-color: #7bdaf3;
}
.add {
position: fixed;
top: 1rem;
right: 1rem;
background-color: #9ec862;
border: none;
border-radius: 3px;
padding: 0.5rem 1rem;
cursor: pointer;
}
.add:active {
background-color: #3e8e41;
box-shadow: 0 5px rgb(28, 199, 94);
transform: translateY(4px);
}
.note {
background-color: #fff;
box-shadow: 0 0 10pz 4px rgba(0,0,0,0.1);
margin: 30px 20px;
height: 400px;
width: 400px;
}
.note .tools {
background-color: #9ec862;
display: flex;
justify-content: flex-end;
padding: 0.5rem;
}
.note .tools button {
background-color: transparent;
border: none;
color: white;
cursor: pointer;
font-size: 1rem;
margin-left: 00.5rem;
}
.note textarea {
outline: none;
font-family: inherit;
font-size: 1.2rem;
border:none;
height: 400px;
width: 100%;
padding: 20px;
}
.main {
padding: 20px;
}
.hidden {
display: none;
}