-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
77 lines (65 loc) · 972 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
body {
background: whitesmoke !important;
}
* {
box-sizing: border-box;
}
ul {
padding: 1% 5% !important;
list-style: none;
}
ul li {
border-radius: 10px;
margin: 10px;
cursor: pointer;
position: relative;
padding: 15px 20px;
background: #d6d6d6;
font-size: 18px;
}
.close {
position: absolute;
right: 0;
top: 0;
padding: 18px;
border: none;
background: transparent;
}
.close:hover {
background-color: #f44336;
color: white;
height: 100%;
}
.header {
background-color: rgb(49, 49, 49);
padding: 30px 40px;
color: white;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
h2 {
margin: 5px;
}
.addField {
width: 70%;
}
input {
border: none;
width: 75%;
padding: 10px;
float: left;
font-size: 16px;
}
.addBtn {
padding: 10px;
width: 25%;
float: left;
cursor: pointer;
background: #979797;
color: white;
}
.addBtn:hover {
background-color: #29c6b6;
}