-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (77 loc) · 1.46 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap');
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins', sans-serif;
background-color: #75a9ee;
display: flex;
flex-wrap: wrap;
padding-top: 3rem;
}
button {
cursor: pointer;
}
.notes {
background-color: #ffffff;
margin: 20px;
height: 400px;
width: 400px;
box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
}
.notes .tools {
background-color: #98ecbe;
display: flex;
justify-content: flex-end;
padding: 0.5rem;
}
.notes .tools button {
background-color: transparent;
border: none;
color: #ffffff;
font-size: 1rem;
margin-left: 0.5rem;
}
.notes .main {
height: 100%;
width: 100%;
padding: 0.5rem;
overflow: hidden;
/* background-color: #f1f1f1; */
}
.notes textarea {
outline: none;
border: none;
height: calc(100% - 40px);
width: 100%;
font-size: 1.2rem;
overflow: hidden;
padding: 0.5rem;
}
.notes .hidden {
display: none;
}
.add {
background-color: #39ca93;
border-radius: 3px;
border: none;
color: #ffffff;
padding: 0.5rem 1rem;
position: fixed;
top: 1rem;
right: 1rem;
/* outline: none; */
}
span {
position: absolute;
top: 1rem;
left: 1rem;;
color: #ffffff;
background-color: #4a92f0;
width: 100%;
margin: -1rem;
padding: 1rem;
text-align: center;
}