-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
93 lines (81 loc) · 1.81 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
box-sizing: border-box;
margin: 0;
}
body {
background-color: #faf6c9;
font-family: "Poppins", sans-serif;
display: flex;
flex-wrap: wrap;
padding-top: 3rem;
}
.add {
background-color: #c6bc0a;
position: fixed;
top: 1rem;
right: 1rem;
color: white;
font-weight: bold;
font-family: inherit;
text-shadow: 0px 1px 1px #000;
border: none;
border-radius: 3px;
padding: 0.5rem 1rem;
cursor: pointer;
box-shadow: 0 2px 4px #00000051;
transition: 0.3s ease;
}
.add:hover {
transform: scale(1.05);
background-color: #b5a307;
}
.note {
background-color: #fff;
margin: 30px 20px;
height: 400px;
width: 400px;
border-radius:0 0 20px;
box-shadow: 0 12px 10px 4px rgba(0, 0, 0, 0.2);
}
.note .tools {
display: flex;
justify-content: space-between;
padding: 0.8rem 1rem;
background-color: #c6bc0a;
}
.note .tools button {
background-color: transparent;
border: none;
color: white;
cursor: pointer;
font-size: 1.25rem;
transition: transform 0.3s ease;
}
.note .tools button:hover {
transform: scale(1.1);
}
.note textarea {
width: 100%;
height: 367px;
border: 1px solid #c6bc0a;
border-radius:0 0 20px;
padding: 1rem;
font-size: 1.2rem;
font-family: "Poppins", sans-serif;
resize: none;
transition: 0.3s ease-in-out;
cursor: url('https://cur.cursors-4u.net/cursors/cur-11/cur1046.cur'), auto;
}
.note textarea:focus {
outline: none;
margin: 1rem;
border: 2px dashed #c6bc0a;
font-family: monospace, "Poppins";
}
.main {
padding: 0 1rem;
}
.hidden {
display: none;
}