-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
55 lines (47 loc) · 836 Bytes
/
style.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 10px;
background: #f9f9f9;
}
h2 {
text-align: center;
}
ul {
list-style: none;
padding: 0;
}
li {
margin: 5px 0;
/* display: flex;
justify-content: space-between;
flex-direction: row;
align-items: center; */
background: #fff;
min-width:200px;
padding: 5px;
border-radius: 5px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
button {
background: #ff4d4d;
border: none;
color: white;
border-radius: 3px;
cursor: pointer;
padding: 5px 10px;
}
button.copyBtn{
background: #29e238;
border: none;
color: white;
border-radius: 3px;
cursor: pointer;
padding: 5px 10px;
}
button.copyBtn:hover{
background: #1aff31;
}
button:hover {
background: #ff1a1a;
}