-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnote.css
More file actions
46 lines (38 loc) · 730 Bytes
/
note.css
File metadata and controls
46 lines (38 loc) · 730 Bytes
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
body {
font-family: sans-serif;
padding: 40px;
}
h1 {
text-align: center;
}
form {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 40px;
}
textarea {
width: 100%;
padding: 10px;
font-size: 16px;
}
button[type="submit"] {
padding: 10px 20px;
font-size: 16px;
background-color: lightgray;
border: none;
cursor: pointer;
}
button[type="submit"]:hover {
background-color: gray;
}
li {
list-style: none;
margin-top: 20px;
padding: 20px;
background-color: lightgray;
}
li:hover {
background-color: gray;
cursor: pointer;
}