-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
118 lines (98 loc) · 1.83 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
body {
font-family: 'Raleway', sans-serif;
margin: 0px;
}
.header {
width: 100%;
display: flex;
align-items: center;
justify-content: center;
color: grey;
box-shadow: 0 0 8px 0 rgba(0, 0, 0, 14%);
}
.img-header {
height: 60px;
width: 60px;
margin-right: 20px;
}
.inputfield {
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
}
.inputfieldChild {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin-top: 30px;
margin-bottom: 20px;
border: lightgray 1px;
border-style: solid;
box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 14%);
border-radius: 10px;
width: 200px;
padding: 10px;
}
.inputfieldTitle {
border: none;
margin: 4px;
color: grey;
}
input:focus {
border-style: none;
color: grey;
}
.inputfieldNote {
border: none;
margin: 4px;
color: grey;
}
.noteContainer {
display: flex;
justify-content: center;
flex-direction: row-reverse;
flex-wrap: wrap-reverse;
}
.note {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin-top: 20px;
margin-bottom: 20px;
margin-left: 10px;
margin-right: 10px;
border: lightgray 1px;
border-style: solid;
box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 14%);
border-radius: 10px;
width: 200px;
padding: 10px;
color: grey;
}
button {
border-style: none;
color: rgb(82, 82, 82);
border-radius: 4px;
margin-top: 10px;
}
h3 {
margin-bottom: 0px;
}
button:hover {
background-color: rgb(193, 193, 193);
}
.trash-box {
height: 100vh;
width: 100vw;
display: flex;
align-items: flex-end;
justify-content: end;
}
.trash {
height: 60px;
width: 60px;
margin: 8px;
}