-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
77 lines (67 loc) · 1.09 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
body {
margin: 0 auto;
width: 600px;
padding: 10px;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
word-wrap: break-word;
border: 10px solid transparent;
border-image: linear-gradient(
45deg,
rgba(253, 213, 54, 0.37),
rgba(232, 58, 56, 0.36)
)
1;
overflow-wrap: break-word;
}
textarea {
width: 100%;
padding: 10px;
box-sizing: border-box;
border: 1px solid #ccc;
margin-bottom: 10px;
min-height: 200px;
}
button {
background: #e83a38;
color: white;
padding: 10px 20px;
border: none;
font-weight: bold;
cursor: pointer;
margin-right: 10px;
}
#delete-btn {
background: white;
color: #e83a38;
}
ul {
margin-top: 20px;
list-style: none;
padding-left: 0;
margin-bottom: 20px;
}
li {
margin-top: 5px;
}
a {
color: #e83a38;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#footer {
margin: -10px;
padding: 10px;
background-color: #e83a38;
text-align: center;
color: #f1f1f1;
}
#footer p {
margin: 0;
}
#footer a {
color: #f1f1f1;
font-weight: bold;
text-decoration: none;
}