-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (58 loc) · 961 Bytes
/
style.css
File metadata and controls
60 lines (58 loc) · 961 Bytes
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
*{
margin: 0;
padding: 0;
}
body{
background: skyblue;
}
#btn1{
position: fixed;
right: 10px;
top: 10px;
border: none;
outline: none;
background: black;
color: white;
border-radius: 5px;
padding: 10px;
cursor: pointer;
}
#main{
background: skyblue;
width: 100%;
display: flex;
min-height: 100vh;
flex-wrap: wrap;
}
.note{
width: 400px;
height: 400px;
background-color: white;
margin: 15px;
margin-top: 55px;
}
.tool{
width: 100%;
/* height: 10px; */
background-color: black;
color: white;
display: flex;
padding: 10px;
justify-content: end;
}
.tool i{
padding: 5px;
cursor: pointer;
}
.note textarea{
width: 100%;
height: 100%;
border: none;
padding: 10px;
resize: none;
font-size: 18px;
}
.note textarea:focus{
border: 0;
outline: 0;
}