-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
108 lines (92 loc) · 1.75 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
body {
margin: 0;
padding: 10px;
font-family: 'Cursive', sans-serif;
min-width: 400px;
}
input {
width: 100%;
padding: 10px;
box-sizing: border-box;
border-radius: 5px;
border: 1px solid #006400;
margin-bottom: 4px;
}
button {
background: #006400;
color: white;
padding: 8px 10px;
border-radius: 10px;
border: none;
font-weight: bold;
font-family: cursive;
font-size: 18px;
cursor: pointer;
transition: background 0.3s, color 0.3s;
}
button:hover {
background: #004b23;
color: #fff;
}
#delete-btn {
background: white;
color: #d90429;
border-color: #E74C3C;
}
#delete-btn:hover {
background: #d90429;
color: white;
}
ul {
margin-top: 20px;
list-style: none;
padding-left: 0;
}
li {
margin-top: 5px;
}
a {
color: #0077b6;
text-decoration: none;
font-family: 'Cursive', 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 16px;
}
a:hover {
color: #03045e;
}
span {
font-weight: bold;
font-size: 18px;
font-family: cursive;
margin-right: 5px;
color: #000814;
}
.copy-btn {
background: #3498DB;
color: white;
padding: 5px 10px;
border: 1px solid #3498DB;
cursor: pointer;
transition: background 0.3s, color 0.3s;
font-family: 'Open Sans', sans-serif;
font-size: 16px;
}
.copy-btn:hover {
background: #2980B9;
color: #fff;
}
.delete-btn {
background: #d90429;
color: white;
padding: 5px 10px;
border: 1px solid #E74C3C;
margin-left: 5px;
cursor: pointer;
font-size: 16px;
transition: background 0.3s, color 0.3s;
font-family: 'Open Sans', sans-serif;
}
.delete-btn:hover {
background: #ef233c;
color: #fff;
}