-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.css
More file actions
55 lines (47 loc) · 871 Bytes
/
list.css
File metadata and controls
55 lines (47 loc) · 871 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
47
48
49
50
51
52
53
54
55
.container {
width: 600px;
height: 600px;
overflow: scroll;
background-color: #7986cb;
padding: 20px;
color: #fff;
box-sizing: border-box;
margin: 10px auto;
}
h3,
.user_form,
.btn_group {
text-align: center;
}
.user_form {
margin-bottom: 20px;
}
button {
color: #fff;
background-color: #c2d352;
text-transform: capitalize;
text-decoration: none;
border: none;
padding: 10px 20px;
border-radius: 5px;
margin: 0 20px;
cursor: pointer;
}
button:hover {
background-color: #434343;
transition: all 0.4s ease;
}
ul li {
list-style: none;
counter-increment: item;
margin-bottom: 20px;
}
ul li::before {
content: counter(item);
background-color: #f9dd94;
color: #fff;
font-weight: bold;
padding: 3px 8px;
border-radius: 3px;
margin-right: 20px;
}