-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
59 lines (50 loc) · 810 Bytes
/
index.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
body {
margin: 0;
padding: 10px;
font-family: Arial, Helvetica, sans-serif;
min-width: 400px;
}
input {
width: 100%;
padding: 10px;
box-sizing: border-box;
border: 1px solid #5f9341;
margin-bottom: 4px;
}
h1{
color: #5f9341;
text-align: center;
}
button {
background: #5f9341;
color: white;
padding: 10px 20px;
border: 1px solid #5f9341;
font-weight: bold;
cursor: pointer;
}
#charCount {
display: flex;
justify-content: flex-end;
font-weight: 600;
color: #5f9341;
}
#delete-btn {
background: white;
color: #5f9341;
}
ul {
margin-top: 20px;
list-style: none;
padding-left: 0;
}
.line{
border-top: 1px solid black;
margin: 10px 0;
}
li {
margin-top: 5px;
}
a {
color: #5f9341;
}