Skip to content

Commit d6e30ec

Browse files
Update style.css
1 parent 375bc41 commit d6e30ec

File tree

1 file changed

+49
-1
lines changed

1 file changed

+49
-1
lines changed

033-notes app/style.css

Lines changed: 49 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,18 @@
55
}
66

77
body {
8-
background-color: #7bdaf3;
8+
background-color: #fff;
99
font-family: "Poppins", sans-serif;
1010
display: flex;
1111
flex-wrap: wrap;
1212
margin: 0;
1313
padding-top: 3rem;
14+
transition: background-color 0.3s ease;
15+
}
16+
17+
.dark-mode {
18+
background-color: #20232a;
19+
color: #ffffff;
1420
}
1521

1622
.add {
@@ -32,6 +38,7 @@ body {
3238
height: 400px;
3339
width: 400px;
3440
overflow-y: scroll;
41+
position: relative;
3542
}
3643

3744
.note .tools {
@@ -60,10 +67,51 @@ body {
6067
padding: 20px;
6168
}
6269

70+
.note select {
71+
font-size: 1.2rem;
72+
padding: 10px;
73+
border: none;
74+
}
75+
6376
.main {
6477
padding: 20px;
6578
}
6679

6780
.hidden {
6881
display: none;
6982
}
83+
84+
.markdown-editor {
85+
display: flex;
86+
flex-direction: column;
87+
align-items: flex-start;
88+
padding: 20px;
89+
}
90+
91+
.markdown-editor textarea {
92+
font-family: inherit;
93+
font-size: 1.2rem;
94+
width: 100%;
95+
height: 200px;
96+
padding: 10px;
97+
}
98+
99+
.markdown-editor .toolbar {
100+
margin-top: 10px;
101+
}
102+
103+
.markdown-editor .format {
104+
margin-right: 10px;
105+
background-color: #9ec862;
106+
color: white;
107+
border: none;
108+
border-radius: 3px;
109+
padding: 5px 10px;
110+
cursor: pointer;
111+
}
112+
113+
.reminder-input {
114+
font-size: 1rem;
115+
padding: 5px;
116+
margin-top: 10px;
117+
}

0 commit comments

Comments
 (0)