-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
46 lines (39 loc) · 686 Bytes
/
Copy pathstyle.css
File metadata and controls
46 lines (39 loc) · 686 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
.card {
background: #004e89;
position: relative;
color: #f3f3dc;
top: 10px;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
box-shadow: 0px 20px 30px 3px rgba(0, 0, 0, 0.55);
height: 150px;
width: 250px;
padding: 20px 10px 0px 20px;
}
body {
font-family: 'Aclonica';
font-size: 22px;
}
ul {
list-style-type: none;
}
button {
border: none;
padding: 8px;
color: white;
background-color: #01AB76;
text-align: center;
cursor: pointer;
font-size: 18px;
}
@keyframes cardanim {
to {
transform: rotateX(360deg);
opacity: 0;
margin-left: 500px;
}
}
.fade.ng-leave {
animation: cardanim .5s linear;
}