-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
83 lines (72 loc) · 1.32 KB
/
style.css
File metadata and controls
83 lines (72 loc) · 1.32 KB
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background: linear-gradient(to right, rgb(242,112,156), rgb(255,148,114));
}
#main{
min-height: 100vh;
padding-bottom: 50px;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-start;
}
#addBtn{
position: fixed;
right: 10px;
top: 10px;
background-color: #179712;
border: none;
padding: 10px;
color: white;
outline:none;
border-radius: 5px;
cursor: pointer;
transition:background-color 0.3 ease;
}
#addBtn:hover{
background-color: #06a006;
}
.note{
background: transparent;
margin: 15px;
border-radius: 10px;
overflow: hidden;
}
.tool{
background-color:#222831;
color: white;
padding: 5px;
display: flex;
justify-content: flex-end;
}
.tool i{
padding: 5px;
cursor: pointer;
transition: color 0.3s ease;
}
.tool i:hover{
color: #aca1a1;
}
.note textarea{
width: 300px;
border: none;
min-height: 220px;
resize: none;
padding: 10px;
font-size: 16px;
color: white;
overflow: hidden;
background-color: #393e46;
border-radius: 0px 0px 10px 10px;
transition: background-color 0.3s ease;
}
.note textarea:hover{
background-color: #293e46;
}
.note textarea:focus{
outline: none;
}