-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
99 lines (77 loc) · 1.39 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
*{
font-family: 'Open Sans', sans-serif;
}
.hidden{
display: none;
}
body{
display: flex;
flex-wrap: wrap;
background-color: #e6d0eb;
font-family: "Open Sans", sans-serif;
margin: 0;
}
.notes{
margin: 20px;
height: 50vh;
width: 50vh;
background-color: #fff;
box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.15);
}
.newNotes{
display:flex;
flex-wrap: wrap;
}
.tools{
background-color: #b880c4;
display: flex;
justify-content: flex-end;
padding: 1vh;
}
.smallBtn{
background-color: transparent;
color: #fff;
border: none;
margin-left: 0.5rem;
}
.main{
width: 95%;
height: 100%;
word-wrap:break-word;
margin-left:5px ;
}
textarea{
width: 49.5vh;
height: 44.5vh;
border: none;
font-family: inherit;
font-size: 1rem;
word-wrap:break-word;
}
.addContainer{
box-sizing: border-box;
margin: 20px;
height: 50vh;
width: 50vh;
}
.button{
background-color:#a24eb3;
border: none;
display: block;
color: #fff;
width: 100%;
height: 100%;
font-family: inherit;
font-size: 1.2rem;
box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.15);
}
.fa-plus{
font-size: 5rem;
}
button{
cursor: pointer;
}
.fa-trash-alt, .fa-save, .fa-edit {
font-size: 1.2rem;
}