-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
116 lines (81 loc) · 1.23 KB
/
App.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
html, body, .note-wrapper-single
{
height: 100%;
}
.App {
height: 100%;
text-align: center;
}
.App-logo {
animation: App-logo-spin infinite 20s linear;
height: 80px;
}
.App-header {
background-color: #222;
height: 150px;
padding: 20px;
color: white;
}
.App-title {
font-size: 1.5em;
}
.App-intro {
font-size: large;
}
.notes-wrapper{
display: flex;
flex-wrap: wrap;
width: 100%;
height: 100%;
}
.list-notes-top{
height: 100%;
width: 30%;
padding: 0;
overflow-y: auto;
overflow-x: hidden;
}
.current-note{
height: 100%;
width: 68%;
}
.list-item-top{
border-bottom: 1px solid black;
text-align: left;
}
.list-item{
list-style: none;
text-align: left;
height: 30px;
display: inline-flex;
width: 90%;
}
.delete-note{
position: absolute;
}
.add-note, .delete-note{
border-radius: 50%;
float: right;
}
.add-note{
margin: 20px 440px 10px;
}
input[type='text']{
height: 30px;
width: 90%;
border: none;
resize: none;
color: blue;
font-size: 25px;
}
textarea{
height: 405px;
width: 90%;
border: none;
resize: none;
scroll-behavior: auto;
}
@keyframes App-logo-spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}