-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
56 lines (47 loc) · 877 Bytes
/
main.css
File metadata and controls
56 lines (47 loc) · 877 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
56
*{box-sizing: border-box;}
body{
background-color:#28152b;
color:#d43e73;
padding: 10px;
}
ul{
padding: 0px;
}
.container{
text-align: center;
}
.listItem{
position: relative;
left:0px;
opacity:1;
font-size: 1.5em;
cursor: pointer;
line-height: 2em;
list-style: none;
transition: opacity, left;
transition-duration: .5s;
transition-timing-function: ease-in-out;
}
.close{
height: 30px;
width:30px;
background-color:#d43e73;
border-radius: 50%;
line-height: 1em;
margin-left: 25px;
margin-top: 9px;
color: white;
position:absolute;
right:10%;
box-shadow: 0 0 0 0 rgba(232, 76, 61, 0.7);
}
.close:hover{
animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
.move{
color:red;
text-decoration: line-through;
opacity:0;
left:-50px;
}
@keyframes pulse {to {box-shadow: 0 0 0 35px rgba(232, 76, 61, 0);}}