-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmainCode.css
42 lines (39 loc) · 859 Bytes
/
mainCode.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
#spinn{
display:none;
}
#notepad-container {
width: 80%;
max-width: 600px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-radius: 8px;
overflow: hidden;
margin-left: auto; /* Add this line */
}
#notepad {
width: 100%;
height: 70vh;
font-size: 16px;
padding: 20px;
border: none;
outline: none;
box-sizing: border-box;
resize: none;
overflow: auto;
}
#notepad-controls {
padding: 10px;
background-color: #f0f0f0;
display: flex;
justify-content: space-between;
align-items: center;
}
#save-button {
padding: 10px;
background-color: #4caf50;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
outline: none;
}